| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 6 Code distributed by Google as part of the polymer project is also | 6 Code distributed by Google as part of the polymer project is also |
| 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 8 --> | 8 --> |
| 9 <style shim-shadowdom> | 9 <style shim-shadowdom> |
| 10 /******************************* | 10 /******************************* |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 /******************************* | 230 /******************************* |
| 231 Other Layout | 231 Other Layout |
| 232 *******************************/ | 232 *******************************/ |
| 233 | 233 |
| 234 html /deep/ [block] { | 234 html /deep/ [block] { |
| 235 display: block; | 235 display: block; |
| 236 } | 236 } |
| 237 | 237 |
| 238 /* ie support for hidden */ | 238 /* ie support for hidden */ |
| 239 html /deep/ [hidden] { | 239 html /deep/ [hidden] { |
| 240 display: none; | 240 display: none !important; |
| 241 } | 241 } |
| 242 | 242 |
| 243 html /deep/ [relative] { | 243 html /deep/ [relative] { |
| 244 position: relative; | 244 position: relative; |
| 245 } | 245 } |
| 246 | 246 |
| 247 html /deep/ [fit] { | 247 html /deep/ [fit] { |
| 248 position: absolute; | 248 position: absolute; |
| 249 top: 0; | 249 top: 0; |
| 250 right: 0; | 250 right: 0; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 269 box-sizing: border-box; | 269 box-sizing: border-box; |
| 270 margin: 1em 0.5em; | 270 margin: 1em 0.5em; |
| 271 padding: 1em; | 271 padding: 1em; |
| 272 background-color: white; | 272 background-color: white; |
| 273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); | 273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); |
| 274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); | 274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); |
| 275 border-radius: 5px 5px 5px 5px; | 275 border-radius: 5px 5px 5px 5px; |
| 276 } | 276 } |
| 277 | 277 |
| 278 </style> | 278 </style> |
| OLD | NEW |