Chromium Code Reviews| Index: chrome/browser/resources/settings/settings_root_css.html |
| diff --git a/chrome/browser/resources/settings/settings_root_css.html b/chrome/browser/resources/settings/settings_root_css.html |
| index 533ce3fe08d76d9c7bc116269bd48de7fda4fff0..b405b2166e360685fff2a53103978dd789d03f9b 100644 |
| --- a/chrome/browser/resources/settings/settings_root_css.html |
| +++ b/chrome/browser/resources/settings/settings_root_css.html |
| @@ -1,7 +1,8 @@ |
| +<link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html"> |
| <!-- Common css variables for Material Design settings. --> |
| -<style is="custom-style"> |
| +<style is="custom-style" include="cr-shared-style"> |
|
dschuyler
2016/07/21 00:04:48
Can this include be done elsewhere?
I see now tha
stevenjb
2016/07/21 15:46:31
So just to be clear, you would advocate for creati
|
| :root { |
| --checkbox-margin-start: 2px; |
| --checkbox-size: 16px; |
| @@ -23,6 +24,8 @@ |
| --paper-radio-button-label-color: inherit; |
| --paper-radio-group-item-padding: 0; |
| + --settings-actionable: var(--cr-actionable); |
| + |
| /* Custom grey for Alan (bettes@). */ |
| --settings-background-color: rgb(241, 241, 241); |
| --settings-secondary: { |
| @@ -31,7 +34,6 @@ |
| margin-top: 4px; |
| }; |
| --settings-error-color: var(--paper-red-700); |
| - --settings-hover-color: var(--google-grey-300); |
| /* Some colors use non-MD colors. These custom colors are specified by |
| * UX design (bettes@). */ |
| @@ -40,14 +42,10 @@ |
| --settings-page-vertical-margin: 21px; |
| --settings-row-min-height: 44px; |
| - --settings-separator-line: 1px solid rgba(0, 0, 0, 0.06); |
| + --settings-separator-line: var(--cr-separator-line); |
| --settings-title-bar-background-color: var(--google-blue-700); |
| --settings-title-bar-color: rgb(255, 255, 255); |
| --settings-title-search-color: rgb(192, 199, 205); |
| - |
| - --settings-actionable: { |
| - cursor: pointer; |
| - }; |
| } |
| </style> |