OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> |
3 | 3 |
4 <!-- Common styles for Material Design WebUI. Included directly in | 4 <!-- Common styles for Material Design WebUI. Included directly in |
5 settings_shared_css.html. --> | 5 settings_shared_css.html. --> |
6 <dom-module id="cr-shared-style"> | 6 <dom-module id="cr-shared-style"> |
7 <template> | 7 <template> |
8 <style> | 8 <style> |
9 /* Chrome spinners should be blue. */ | 9 /* Chrome spinners should be blue. */ |
10 paper-spinner { | 10 paper-spinner { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 border-bottom-color: var(--google-grey-300); | 54 border-bottom-color: var(--google-grey-300); |
55 } | 55 } |
56 [scrollable] :focus { | 56 [scrollable] :focus { |
57 @apply(--cr-list-item-focus); | 57 @apply(--cr-list-item-focus); |
58 @apply(--cr-selectable-focus); | 58 @apply(--cr-selectable-focus); |
59 } | 59 } |
60 [scrollable] iron-list > * { | 60 [scrollable] iron-list > * { |
61 @apply(--cr-actionable); | 61 @apply(--cr-actionable); |
62 } | 62 } |
63 | 63 |
64 [selectable] :focus { | 64 [selectable]:focus, |
| 65 [selectable] > :focus { |
65 @apply(--cr-selectable-focus); | 66 @apply(--cr-selectable-focus); |
66 } | 67 } |
67 [selectable] > * { | 68 [selectable] > * { |
68 @apply(--cr-actionable); | 69 @apply(--cr-actionable); |
69 } | 70 } |
70 </style> | 71 </style> |
71 </template> | 72 </template> |
72 </dom-module> | 73 </dom-module> |
OLD | NEW |