| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 } | 240 } |
| 241 | 241 |
| 242 .settings-checkbox-spacer { | 242 .settings-checkbox-spacer { |
| 243 -webkit-margin-start: calc( | 243 -webkit-margin-start: calc( |
| 244 var(--checkbox-margin-start) + | 244 var(--checkbox-margin-start) + |
| 245 var(--checkbox-size) + | 245 var(--checkbox-size) + |
| 246 var(--checkbox-spacing)); | 246 var(--checkbox-spacing)); |
| 247 } | 247 } |
| 248 | 248 |
| 249 /* Keep the slider color consistent throughout the range. */ | 249 /* Keep the slider color consistent throughout the range. */ |
| 250 paper-slider.always-on { | 250 cr-slider.always-on { |
| 251 --paper-slider-knob-start-border-color: var(--google-blue-700); | 251 --paper-slider-knob-start-border-color: var(--google-blue-700); |
| 252 --paper-slider-knob-start-color: var(--google-blue-700); | 252 --paper-slider-knob-start-color: var(--google-blue-700); |
| 253 --paper-slider-pin-start-color: var(--google-blue-700); | 253 --paper-slider-pin-start-color: var(--google-blue-700); |
| 254 } | 254 } |
| 255 | 255 |
| 256 .favicon-image { | 256 .favicon-image { |
| 257 background-repeat: no-repeat; | 257 background-repeat: no-repeat; |
| 258 background-size: contain; | 258 background-size: contain; |
| 259 height: 16px; | 259 height: 16px; |
| 260 width: 16px; | 260 width: 16px; |
| 261 } | 261 } |
| 262 </style> | 262 </style> |
| 263 </template> | 263 </template> |
| 264 </dom-module> | 264 </dom-module> |
| OLD | NEW |