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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 paper-dropdown-menu .dropdown-item { | 44 paper-dropdown-menu .dropdown-item { |
45 align-items: center; | 45 align-items: center; |
46 background: none; | 46 background: none; |
47 border: none; | 47 border: none; |
48 color: var(--paper-grey-800); | 48 color: var(--paper-grey-800); |
49 display: flex; | 49 display: flex; |
50 font: inherit; | 50 font: inherit; |
51 min-height: 48px; | 51 min-height: 48px; |
52 padding: 0 16px; | 52 padding: 0 16px; |
| 53 text-align: start; |
53 width: 100%; | 54 width: 100%; |
54 } | 55 } |
55 | 56 |
56 paper-dropdown-menu .dropdown-item.iron-selected { | 57 paper-dropdown-menu .dropdown-item.iron-selected { |
57 font-weight: bold; | 58 font-weight: bold; |
58 } | 59 } |
59 | 60 |
60 paper-dropdown-menu .dropdown-item:focus { | 61 paper-dropdown-menu .dropdown-item:focus { |
61 background-color: var(--paper-grey-300); | 62 background-color: var(--paper-grey-300); |
62 outline: none; | 63 outline: none; |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 | 342 |
342 .favicon-image { | 343 .favicon-image { |
343 background-repeat: no-repeat; | 344 background-repeat: no-repeat; |
344 background-size: contain; | 345 background-size: contain; |
345 height: 16px; | 346 height: 16px; |
346 width: 16px; | 347 width: 16px; |
347 } | 348 } |
348 </style> | 349 </style> |
349 </template> | 350 </template> |
350 </dom-module> | 351 </dom-module> |
OLD | NEW |