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 | 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 button[is='paper-icon-button-light'].subpage-arrow { | |
| 10 background-image: url(../images/arrow_right.svg); | |
| 11 } | |
| 12 | |
| 13 button[is='paper-icon-button-light'].icon-external { | |
| 14 background-image: url(../images/open_in_new.svg); | |
| 15 } | |
|
dschuyler
2016/12/10 01:09:18
Without [actionable], I believe the arrows will ap
dschuyler
2016/12/10 01:14:01
In case I'm giving the wrong impression when I sai
| |
| 16 | |
| 9 /* Chrome spinners should be blue. */ | 17 /* Chrome spinners should be blue. */ |
| 10 paper-spinner { | 18 paper-spinner { |
| 11 --paper-spinner-layer-1-color: var(--google-blue-500); | 19 --paper-spinner-layer-1-color: var(--google-blue-500); |
| 12 --paper-spinner-layer-2-color: var(--google-blue-500); | 20 --paper-spinner-layer-2-color: var(--google-blue-500); |
| 13 --paper-spinner-layer-3-color: var(--google-blue-500); | 21 --paper-spinner-layer-3-color: var(--google-blue-500); |
| 14 --paper-spinner-layer-4-color: var(--google-blue-500); | 22 --paper-spinner-layer-4-color: var(--google-blue-500); |
| 15 } | 23 } |
| 16 | 24 |
| 17 .action-button { | 25 .action-button { |
| 18 background: var(--google-blue-500); | 26 background: var(--google-blue-500); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 [selectable]:focus, | 78 [selectable]:focus, |
| 71 [selectable] > :focus { | 79 [selectable] > :focus { |
| 72 @apply(--cr-selectable-focus); | 80 @apply(--cr-selectable-focus); |
| 73 } | 81 } |
| 74 [selectable] > * { | 82 [selectable] > * { |
| 75 @apply(--cr-actionable); | 83 @apply(--cr-actionable); |
| 76 } | 84 } |
| 77 </style> | 85 </style> |
| 78 </template> | 86 </template> |
| 79 </dom-module> | 87 </dom-module> |
| OLD | NEW |