Chromium Code Reviews| Index: chrome/browser/resources/settings/settings_shared_css.html |
| diff --git a/chrome/browser/resources/settings/settings_shared_css.html b/chrome/browser/resources/settings/settings_shared_css.html |
| index 0fe267a7f6ff00408cc2c10fca280fb0d7b5490e..652bc58c48d30ac1eb6b3de535f4484ed53f3c1f 100644 |
| --- a/chrome/browser/resources/settings/settings_shared_css.html |
| +++ b/chrome/browser/resources/settings/settings_shared_css.html |
| @@ -31,24 +31,26 @@ |
| @apply(--settings-actionable); |
| } |
| - paper-dropdown-menu { |
| + paper-dropdown-menu-light { |
| --iron-icon-fill-color: var(--paper-grey-600); |
| --paper-font-subhead: { |
| font-size: inherit; |
| }; |
| - --paper-input-container-underline: { |
| - background: var(--paper-grey-300); |
| + --paper-dropdown-menu-input: { |
| + border-bottom-color: var(--paper-grey-300); |
| }; |
| + /** Offsets the input's border-bottom. */ |
|
dschuyler
2016/08/11 23:35:26
Should this be a /* comment rather than a /** comm
michaelpg
2016/08/16 23:50:43
Ugh, I do that all the time, too used to closure.
|
| + top: 1px; |
| } |
| iron-dropdown .dropdown-content, |
| - paper-dropdown-menu paper-listbox { |
| + paper-dropdown-menu-light paper-listbox { |
| min-width: 128px; |
| padding: 8px 0; |
| } |
| iron-dropdown .dropdown-item, |
| - paper-dropdown-menu .dropdown-item { |
| + paper-dropdown-menu-light .dropdown-item { |
| align-items: center; |
| background: none; |
| border: none; |
| @@ -61,12 +63,12 @@ |
| width: 100%; |
| } |
| - paper-dropdown-menu .dropdown-item.iron-selected { |
| + paper-dropdown-menu-light .dropdown-item.iron-selected { |
| font-weight: bold; |
| } |
| iron-dropdown .dropdown-item:focus, |
| - paper-dropdown-menu .dropdown-item:focus { |
| + paper-dropdown-menu-light .dropdown-item:focus { |
| background-color: var(--cr-focused-item-color); |
| outline: none; |
| } |