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

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

Issue 2009783003: [MD settings] move root css vars; increase checkbox and h2 row-height (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge with master Created 4 years, 6 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
(Empty)
1 <!-- Common css variables for Material Design settings. -->
2 <style is="custom-style">
3 :root {
4 --checkbox-margin-start: 2px;
5 --checkbox-size: 16px;
6 --checkbox-spacing: 18px;
7 --iron-icon-fill-color: var(--paper-grey-600);
8 --iron-icon-height: 20px;
9 --iron-icon-spacing: 16px;
10 --iron-icon-width: 20px;
11 --paper-checkbox-label-color: inherit;
12 --paper-dialog-color: inherit;
13 --paper-icon-button: {
14 width: 36px;
15 height: 36px;
16 };
17 --paper-input-max-width: 264px;
18 --paper-item: {
19 font-size: inherit;
20 };
21 --paper-radio-button-label-color: inherit;
22 --paper-radio-group-item-padding: 0;
23
24 /* Custom grey for Alan (bettes@). */
25 --settings-background-color: rgb(241, 241, 241);
26 --settings-secondary: {
27 color: var(--paper-grey-600);
28 font-weight: 400;
29 margin-top: 4px;
30 };
31 --settings-error-color: var(--paper-red-700);
32 --settings-hover-color: var(--google-grey-300);
33
34 /* Some colors use non-MD colors. These custom colors are specified by
35 * UX design (bettes@). */
36 --settings-nav-grey: rgb(90, 90, 90);
37
38 --settings-row-min-height: 44px;
39 --settings-separator-line: 1px solid rgba(0, 0, 0, 0.06);
40
41 --settings-title-bar-background-color: var(--google-blue-700);
42 --settings-title-bar-color: rgb(255, 255, 255);
43 --settings-title-search-color: rgb(192, 199, 205);
44 }
45 </style>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/settings_resources.grd ('k') | chrome/browser/resources/settings/settings_shared_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698