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

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

Issue 1959163002: MD Settings: use custom iconset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SettingsIcons
Patch Set: rebase 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 @apply(--layout-center); 44 @apply(--layout-center);
45 color: var(--paper-grey-500); 45 color: var(--paper-grey-500);
46 display: flex; 46 display: flex;
47 font-size: 100%; 47 font-size: 100%;
48 font-weight: 500; 48 font-weight: 500;
49 margin: 0; 49 margin: 0;
50 min-height: var(--settings-row-min-height); 50 min-height: var(--settings-row-min-height);
51 } 51 }
52 52
53 iron-icon[icon='cr:check'], 53 iron-icon[icon='cr:check'],
54 iron-icon[icon=done] { 54 iron-icon[icon='settings:done'] {
55 --iron-icon-fill-color: var(--google-green-500); 55 --iron-icon-fill-color: var(--google-green-500);
56 } 56 }
57 57
58 paper-button { 58 paper-button {
59 margin: 0; 59 margin: 0;
60 } 60 }
61 61
62 paper-button[toggles][active] { 62 paper-button[toggles][active] {
63 background-color: var(--paper-grey-300); 63 background-color: var(--paper-grey-300);
64 } 64 }
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 </style> 274 </style>
275 </template> 275 </template>
276 </dom-module> 276 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698