Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 1963013002: [MD settings] layout of site settings sub-pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698