| OLD | NEW |
| 1 <link rel="import" href="/settings_root_css.html"> | 1 <link rel="import" href="/settings_root_css.html"> |
| 2 | 2 |
| 3 <!-- Common styles for Material Design settings. --> | 3 <!-- Common styles for Material Design settings. --> |
| 4 <dom-module id="settings-shared"> | 4 <dom-module id="settings-shared"> |
| 5 <template> | 5 <template> |
| 6 <style> | 6 <style> |
| 7 h2 { | 7 h2 { |
| 8 @apply(--layout-center); | 8 @apply(--layout-center); |
| 9 display: flex; | 9 display: flex; |
| 10 font-size: 100%; | 10 font-size: 100%; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 } | 259 } |
| 260 | 260 |
| 261 .settings-checkbox-spacer { | 261 .settings-checkbox-spacer { |
| 262 -webkit-margin-start: calc( | 262 -webkit-margin-start: calc( |
| 263 var(--checkbox-margin-start) + | 263 var(--checkbox-margin-start) + |
| 264 var(--checkbox-size) + | 264 var(--checkbox-size) + |
| 265 var(--checkbox-spacing)); | 265 var(--checkbox-spacing)); |
| 266 } | 266 } |
| 267 | 267 |
| 268 /* Keep the slider color consistent throughout the range. */ | 268 /* Keep the slider color consistent throughout the range. */ |
| 269 paper-slider.always-on { | 269 cr-slider.always-on { |
| 270 --paper-slider-knob-start-border-color: var(--google-blue-700); | 270 --paper-slider-knob-start-border-color: var(--google-blue-700); |
| 271 --paper-slider-knob-start-color: var(--google-blue-700); | 271 --paper-slider-knob-start-color: var(--google-blue-700); |
| 272 --paper-slider-pin-start-color: var(--google-blue-700); | 272 --paper-slider-pin-start-color: var(--google-blue-700); |
| 273 } | 273 } |
| 274 | 274 |
| 275 .favicon-image { | 275 .favicon-image { |
| 276 background-repeat: no-repeat; | 276 background-repeat: no-repeat; |
| 277 background-size: contain; | 277 background-size: contain; |
| 278 height: 16px; | 278 height: 16px; |
| 279 width: 16px; | 279 width: 16px; |
| 280 } | 280 } |
| 281 </style> | 281 </style> |
| 282 </template> | 282 </template> |
| 283 </dom-module> | 283 </dom-module> |
| OLD | NEW |