| OLD | NEW |
| 1 <!-- Common styles for Material Design settings. --> | 1 <!-- Common styles for Material Design settings. --> |
| 2 <dom-module id="settings-shared"> | 2 <dom-module id="settings-shared"> |
| 3 <template> | 3 <template> |
| 4 <style> | 4 <style> |
| 5 :root { | 5 :root { |
| 6 --checkbox-margin-start: 2px; | 6 --checkbox-margin-start: 2px; |
| 7 --checkbox-size: 16px; | 7 --checkbox-size: 16px; |
| 8 --checkbox-spacing: 18px; | 8 --checkbox-spacing: 18px; |
| 9 --iron-icon-fill-color: var(--paper-grey-600); | 9 --iron-icon-fill-color: var(--paper-grey-600); |
| 10 --iron-icon-height: 20px; | 10 --iron-icon-height: 20px; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 .list-item.selected { | 169 .list-item.selected { |
| 170 font-weight: 500; | 170 font-weight: 500; |
| 171 } | 171 } |
| 172 | 172 |
| 173 .list-item select { | 173 .list-item select { |
| 174 -webkit-margin-start: 4px; | 174 -webkit-margin-start: 4px; |
| 175 } | 175 } |
| 176 | 176 |
| 177 .list-item > .middle { | 177 .list-item > .middle { |
| 178 flex: 1; | 178 flex: 1; |
| 179 margin: 8px 12px; | 179 margin: 8px 16px; |
| 180 overflow: hidden; | 180 overflow: hidden; |
| 181 white-space: nowrap; | 181 white-space: nowrap; |
| 182 } | 182 } |
| 183 | 183 |
| 184 .list-item > .start { | 184 .list-item > .start { |
| 185 flex: 1; | 185 flex: 1; |
| 186 overflow: hidden; | 186 overflow: hidden; |
| 187 white-space: nowrap; | 187 white-space: nowrap; |
| 188 } | 188 } |
| 189 | 189 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 paper-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 |
| 275 .favicon-image { |
| 276 background-repeat: no-repeat; |
| 277 background-size: contain; |
| 278 height: 16px; |
| 279 width: 16px; |
| 280 } |
| 274 </style> | 281 </style> |
| 275 </template> | 282 </template> |
| 276 </dom-module> | 283 </dom-module> |
| OLD | NEW |