| 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 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 .action-button, | 35 .action-button, |
| 36 .cancel-button { | 36 .cancel-button { |
| 37 font-weight: 500; | 37 font-weight: 500; |
| 38 } | 38 } |
| 39 | 39 |
| 40 [actionable] { | 40 [actionable] { |
| 41 @apply(--cr-actionable); | 41 @apply(--cr-actionable); |
| 42 } | 42 } |
| 43 |
| 44 [selectable] :focus { |
| 45 @apply(--cr-selectable-focus); |
| 46 } |
| 47 [selectable] > * { |
| 48 @apply(--cr-actionable); |
| 49 } |
| 43 </style> | 50 </style> |
| 44 </template> | 51 </template> |
| 45 </dom-module> | 52 </dom-module> |
| OLD | NEW |