Chromium Code Reviews| 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 <link rel="import" href="hidden_style_css.html"> | 3 <link rel="import" href="hidden_style_css.html"> |
| 4 | 4 |
| 5 <!-- Common styles for Material Design WebUI. Included directly in | 5 <!-- Common styles for Material Design WebUI. Included directly in |
| 6 settings_shared_css.html. --> | 6 settings_shared_css.html. --> |
| 7 <dom-module id="cr-shared-style"> | 7 <dom-module id="cr-shared-style"> |
| 8 <template> | 8 <template> |
| 9 <style include="cr-hidden-style"> | 9 <style include="cr-hidden-style"> |
| 10 :host-context([dir=rtl]) button[is='paper-icon-button-light'] { | |
| 11 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */ | |
| 12 } | |
|
dschuyler
2017/05/23 01:24:55
Moved here from settings_shared_css.html
| |
| 13 | |
| 10 /* Chrome spinners should be blue. */ | 14 /* Chrome spinners should be blue. */ |
| 11 paper-spinner { | 15 paper-spinner { |
| 12 --paper-spinner-layer-1-color: var(--google-blue-500); | 16 --paper-spinner-layer-1-color: var(--google-blue-500); |
| 13 --paper-spinner-layer-2-color: var(--google-blue-500); | 17 --paper-spinner-layer-2-color: var(--google-blue-500); |
| 14 --paper-spinner-layer-3-color: var(--google-blue-500); | 18 --paper-spinner-layer-3-color: var(--google-blue-500); |
| 15 --paper-spinner-layer-4-color: var(--google-blue-500); | 19 --paper-spinner-layer-4-color: var(--google-blue-500); |
| 16 } | 20 } |
| 17 | 21 |
| 18 .action-button { | 22 .action-button { |
| 19 background: var(--google-blue-500); | 23 background: var(--google-blue-500); |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 [selectable]:focus, | 118 [selectable]:focus, |
| 115 [selectable] > :focus { | 119 [selectable] > :focus { |
| 116 @apply(--cr-selectable-focus); | 120 @apply(--cr-selectable-focus); |
| 117 } | 121 } |
| 118 [selectable] > * { | 122 [selectable] > * { |
| 119 @apply(--cr-actionable); | 123 @apply(--cr-actionable); |
| 120 } | 124 } |
| 121 </style> | 125 </style> |
| 122 </template> | 126 </template> |
| 123 </dom-module> | 127 </dom-module> |
| OLD | NEW |