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

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

Issue 2103233002: Visual polishing of the MD Clear Browsing Data dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Visual polishing done. Created 4 years, 5 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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 1 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
2 2
3 <!-- Common css variables for Material Design settings. --> 3 <!-- Common css variables for Material Design settings. -->
4 <style is="custom-style"> 4 <style is="custom-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 12 matching lines...) Expand all
23 --paper-radio-button-label-color: inherit; 23 --paper-radio-button-label-color: inherit;
24 --paper-radio-group-item-padding: 0; 24 --paper-radio-group-item-padding: 0;
25 25
26 /* Custom grey for Alan (bettes@). */ 26 /* Custom grey for Alan (bettes@). */
27 --settings-background-color: rgb(241, 241, 241); 27 --settings-background-color: rgb(241, 241, 241);
28 --settings-secondary: { 28 --settings-secondary: {
29 color: var(--paper-grey-600); 29 color: var(--paper-grey-600);
30 font-weight: 400; 30 font-weight: 400;
31 margin-top: 4px; 31 margin-top: 4px;
32 }; 32 };
33
34 --settings-dialog-title-border: 1px solid rgba(0, 0, 0, 0.14);
35
33 --settings-error-color: var(--paper-red-700); 36 --settings-error-color: var(--paper-red-700);
34 --settings-hover-color: var(--google-grey-300); 37 --settings-hover-color: var(--google-grey-300);
35 38
36 /* Some colors use non-MD colors. These custom colors are specified by 39 /* Some colors use non-MD colors. These custom colors are specified by
37 * UX design (bettes@). */ 40 * UX design (bettes@). */
38 --settings-nav-grey: rgb(90, 90, 90); 41 --settings-nav-grey: rgb(90, 90, 90);
39 42
40 --settings-page-vertical-margin: 21px; 43 --settings-page-vertical-margin: 21px;
41 44
42 --settings-row-min-height: 44px; 45 --settings-row-min-height: 44px;
43 --settings-separator-line: 1px solid rgba(0, 0, 0, 0.06); 46 --settings-separator-line: 1px solid rgba(0, 0, 0, 0.06);
44 47
45 --settings-title-bar-background-color: var(--google-blue-700); 48 --settings-title-bar-background-color: var(--google-blue-700);
46 --settings-title-bar-color: rgb(255, 255, 255); 49 --settings-title-bar-color: rgb(255, 255, 255);
47 --settings-title-search-color: rgb(192, 199, 205); 50 --settings-title-search-color: rgb(192, 199, 205);
48 51
49 --settings-actionable: { 52 --settings-actionable: {
50 cursor: pointer; 53 cursor: pointer;
51 }; 54 };
52 } 55 }
53 </style> 56 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698