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_vars_css.html"> | 2 <link rel="import" href="/settings_vars_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 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */ | 8 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */ |
9 h2 { | 9 h2 { |
10 align-items: center; | 10 align-items: center; |
(...skipping 14 matching lines...) Expand all Loading... |
25 paper-button { | 25 paper-button { |
26 margin: 0; | 26 margin: 0; |
27 } | 27 } |
28 | 28 |
29 paper-button[toggles][active] { | 29 paper-button[toggles][active] { |
30 background-color: var(--paper-grey-300); | 30 background-color: var(--paper-grey-300); |
31 } | 31 } |
32 | 32 |
33 paper-toggle-button { | 33 paper-toggle-button { |
34 @apply(--settings-actionable); | 34 @apply(--settings-actionable); |
| 35 height: 20px; |
| 36 width: 34px; |
35 } | 37 } |
36 | 38 |
37 paper-dropdown-menu { | 39 paper-dropdown-menu { |
38 --iron-icon-fill-color: var(--paper-grey-600); | 40 --iron-icon-fill-color: var(--paper-grey-600); |
39 --paper-font-subhead: { | 41 --paper-font-subhead: { |
40 font-size: inherit; | 42 font-size: inherit; |
41 }; | 43 }; |
42 --paper-input-container-underline: { | 44 --paper-input-container-underline: { |
43 background: var(--paper-grey-300); | 45 background: var(--paper-grey-300); |
44 }; | 46 }; |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 /* Turns the arrow direction downwards, when the bubble is placed above | 380 /* Turns the arrow direction downwards, when the bubble is placed above |
379 * the anchor element */ | 381 * the anchor element */ |
380 .search-bubble-innards.above::after { | 382 .search-bubble-innards.above::after { |
381 -webkit-transform: rotate(-135deg); | 383 -webkit-transform: rotate(-135deg); |
382 bottom: -5px; | 384 bottom: -5px; |
383 top: auto; | 385 top: auto; |
384 } | 386 } |
385 </style> | 387 </style> |
386 </template> | 388 </template> |
387 </dom-module> | 389 </dom-module> |
OLD | NEW |