| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * Common styles for Settings pages. | 7 * Common styles for Settings pages. |
| 8 */ | 8 */ |
| 9 :host { | 9 :host { |
| 10 display: block; | 10 display: block; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 paper-material { | 25 paper-material { |
| 26 background-color: white; | 26 background-color: white; |
| 27 box-sizing: border-box; | 27 box-sizing: border-box; |
| 28 overflow: hidden; | 28 overflow: hidden; |
| 29 } | 29 } |
| 30 | 30 |
| 31 paper-material, | 31 paper-material, |
| 32 #placeholder { | 32 #placeholder { |
| 33 margin-bottom: 16px; | 33 margin-bottom: 16px; |
| 34 width: 605px; | |
| 35 } | 34 } |
| 36 | 35 |
| 37 :host(.neon-animating) paper-material { | 36 :host(.neon-animating) paper-material { |
| 38 position: fixed; | 37 position: fixed; |
| 39 z-index: 1; | 38 z-index: 1; |
| 40 } | 39 } |
| 41 | 40 |
| 42 :host(.expanded) paper-material { | 41 :host(.expanded) paper-material { |
| 43 margin-bottom: 0; | 42 margin-bottom: 0; |
| 44 min-height: 100%; | 43 min-height: 100%; |
| 45 } | 44 } |
| 46 | 45 |
| 47 #placeholder { | 46 #placeholder { |
| 48 visibility: hidden; | 47 visibility: hidden; |
| 49 } | 48 } |
| 50 | 49 |
| 51 :host(:not(.neon-animating)) #placeholder { | 50 :host(:not(.neon-animating)) #placeholder { |
| 52 position: absolute; | 51 position: absolute; |
| 53 } | 52 } |
| OLD | NEW |