| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="/settings_page/main_page_behavior.html"> | 2 <link rel="import" href="/settings_page/main_page_behavior.html"> |
| 3 | 3 |
| 4 <dom-module id="settings-page-styles"> | 4 <dom-module id="settings-page-styles"> |
| 5 <template> | 5 <template> |
| 6 <style> | 6 <style> |
| 7 :host { | 7 :host { |
| 8 box-sizing: border-box; | 8 box-sizing: border-box; |
| 9 display: block; | 9 display: block; |
| 10 height: inherit; | 10 height: inherit; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * by Alan (bettes@). */ | 26 * by Alan (bettes@). */ |
| 27 margin-bottom: 3px; | 27 margin-bottom: 3px; |
| 28 } | 28 } |
| 29 | 29 |
| 30 .expanded { | 30 .expanded { |
| 31 min-height: 100%; | 31 min-height: 100%; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .expanding, | 34 .expanding, |
| 35 .collapsing { | 35 .collapsing { |
| 36 /* Must be lower than the paper-header-panel's z-index. | 36 /* Must be lower than the cr-toolbar's z-index. |
| 37 * See settings_ui.html. */ | 37 * See settings_ui.html. */ |
| 38 z-index: 1; | 38 z-index: 1; |
| 39 } | 39 } |
| 40 </style> | 40 </style> |
| 41 </template> | 41 </template> |
| 42 </dom-module> | 42 </dom-module> |
| OLD | NEW |