Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 2 <link rel="import" href="/settings_root_css.html"> | 2 <link rel="import" href="/settings_root_css.html"> |
| 3 | 3 |
| 4 <!-- Common styles for Material Design settings. --> | 4 <!-- Common styles for Material Design settings. --> |
| 5 <dom-module id="settings-shared"> | 5 <dom-module id="settings-shared"> |
| 6 <template> | 6 <template> |
| 7 <style include="cr-shared-style"> | 7 <style include="cr-shared-style"> |
| 8 h2 { | 8 h2 { |
| 9 align-items: center; | 9 align-items: center; |
| 10 display: flex; | 10 display: flex; |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 31 --iron-icon-fill-color: var(--paper-grey-600); | 31 --iron-icon-fill-color: var(--paper-grey-600); |
| 32 --paper-font-subhead: { | 32 --paper-font-subhead: { |
| 33 font-size: inherit; | 33 font-size: inherit; |
| 34 }; | 34 }; |
| 35 --paper-input-container-underline: { | 35 --paper-input-container-underline: { |
| 36 background: var(--paper-grey-300); | 36 background: var(--paper-grey-300); |
| 37 }; | 37 }; |
| 38 } | 38 } |
| 39 | 39 |
| 40 paper-dropdown-menu .dropdown-item { | 40 paper-dropdown-menu .dropdown-item { |
| 41 align-items: center; | 41 align-items: center; |
|
michaelpg
2016/07/12 23:44:22
Have you checked if there's anything else in paper
dpapad
2016/07/13 01:01:07
I checked. The only thing that I see missing is th
| |
| 42 background: none; | |
| 43 border: none; | |
| 42 color: var(--paper-grey-800); | 44 color: var(--paper-grey-800); |
| 43 display: flex; | 45 display: flex; |
| 44 font-size: inherit; | 46 font: inherit; |
| 45 min-height: 48px; | 47 min-height: 48px; |
| 46 padding: 0 16px; | 48 padding: 0 16px; |
| 49 width: 100%; | |
| 47 } | 50 } |
| 48 | 51 |
| 49 paper-dropdown-menu .dropdown-item.iron-selected { | 52 paper-dropdown-menu .dropdown-item.iron-selected { |
| 50 font-weight: bold; | 53 font-weight: bold; |
| 51 } | 54 } |
| 52 | 55 |
| 53 paper-dropdown-menu .dropdown-item:focus { | 56 paper-dropdown-menu .dropdown-item:focus { |
| 54 background-color: var(--paper-grey-300); | 57 background-color: var(--paper-grey-300); |
| 55 outline: none; | 58 outline: none; |
| 56 } | 59 } |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 334 | 337 |
| 335 .favicon-image { | 338 .favicon-image { |
| 336 background-repeat: no-repeat; | 339 background-repeat: no-repeat; |
| 337 background-size: contain; | 340 background-size: contain; |
| 338 height: 16px; | 341 height: 16px; |
| 339 width: 16px; | 342 width: 16px; |
| 340 } | 343 } |
| 341 </style> | 344 </style> |
| 342 </template> | 345 </template> |
| 343 </dom-module> | 346 </dom-module> |
| OLD | NEW |