| 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; |
| 11 margin: 0 auto; | 11 margin: 0 auto; |
| 12 max-width: calc(var(--settings-card-max-width) + 3 * 2px); | 12 max-width: calc(var(--settings-card-max-width) + 3 * 2px); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 .expanding, | 39 .expanding, |
| 40 .collapsing { | 40 .collapsing { |
| 41 /* Must be lower than the cr-toolbar's z-index. | 41 /* Must be lower than the cr-toolbar's z-index. |
| 42 * See settings_ui.html. */ | 42 * See settings_ui.html. */ |
| 43 z-index: 1; | 43 z-index: 1; |
| 44 } | 44 } |
| 45 </style> | 45 </style> |
| 46 </template> | 46 </template> |
| 47 </dom-module> | 47 </dom-module> |
| OLD | NEW |