| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 2 <link rel="import" href="/settings_vars_css.html"> | 2 <link rel="import" href="/settings_vars_css.html"> |
| 3 | 3 |
| 4 <!-- Common styles for Material Design settings. --> | 4 <!-- Common styles for Material Design settings. --> |
| 5 <dom-module id="settings-shared"> | 5 <dom-module id="settings-shared"> |
| 6 <template> | 6 <template> |
| 7 <style include="cr-shared-style"> | 7 <style include="cr-shared-style"> |
| 8 h2 { | 8 h2 { |
| 9 align-items: center; | 9 align-items: center; |
| 10 display: flex; | 10 display: flex; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 border-top: none; | 261 border-top: none; |
| 262 } | 262 } |
| 263 | 263 |
| 264 .settings-box.block { | 264 .settings-box.block { |
| 265 display: block; | 265 display: block; |
| 266 } | 266 } |
| 267 | 267 |
| 268 /* A row with two lines of text. Often the lower line will be .secondary. | 268 /* A row with two lines of text. Often the lower line will be .secondary. |
| 269 */ | 269 */ |
| 270 .settings-box.two-line { | 270 .settings-box.two-line { |
| 271 min-height: 56px; | 271 min-height: var(--settings-row-two-line-min-height); |
| 272 } | 272 } |
| 273 | 273 |
| 274 /* | 274 /* |
| 275 * A settings box with a single start-aligned column, generally but not | 275 * A settings box with a single start-aligned column, generally but not |
| 276 * necessarily used in combination with two-line. | 276 * necessarily used in combination with two-line. |
| 277 */ | 277 */ |
| 278 .settings-box.single-column { | 278 .settings-box.single-column { |
| 279 align-items: flex-start; | 279 align-items: flex-start; |
| 280 flex-direction: column; | 280 flex-direction: column; |
| 281 justify-content: center; | 281 justify-content: center; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 top: 10px; | 369 top: 10px; |
| 370 width: 10px; | 370 width: 10px; |
| 371 } | 371 } |
| 372 | 372 |
| 373 .search-highlight-hit { | 373 .search-highlight-hit { |
| 374 background-color: var(--paper-yellow-500); | 374 background-color: var(--paper-yellow-500); |
| 375 } | 375 } |
| 376 </style> | 376 </style> |
| 377 </template> | 377 </template> |
| 378 </dom-module> | 378 </dom-module> |
| OLD | NEW |