| 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 /* Chrome spinners should be blue. */ | 10 /* Chrome spinners should be blue. */ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 background-size: var(--cr-icon-size); | 51 background-size: var(--cr-icon-size); |
| 52 flex-shrink: 0; | 52 flex-shrink: 0; |
| 53 height: var(--cr-icon-ripple-size); | 53 height: var(--cr-icon-ripple-size); |
| 54 width: var(--cr-icon-ripple-size); | 54 width: var(--cr-icon-ripple-size); |
| 55 } | 55 } |
| 56 | 56 |
| 57 button[is='paper-icon-button-light'].subpage-arrow { | 57 button[is='paper-icon-button-light'].subpage-arrow { |
| 58 background-image: url(chrome://resources/images/arrow_right.svg); | 58 background-image: url(chrome://resources/images/arrow_right.svg); |
| 59 } | 59 } |
| 60 | 60 |
| 61 button[is='paper-icon-button-light'].icon-cancel { |
| 62 background-image: url(chrome://resources/images/icon_cancel.svg); |
| 63 } |
| 64 |
| 65 button[is='paper-icon-button-light'].icon-clear { |
| 66 background-image: url(chrome://resources/images/icon_clear.svg); |
| 67 } |
| 68 |
| 69 button[is='paper-icon-button-light'].icon-delete { |
| 70 background-image: url(chrome://resources/images/icon_delete.svg); |
| 71 } |
| 72 |
| 61 button[is='paper-icon-button-light'].icon-external { | 73 button[is='paper-icon-button-light'].icon-external { |
| 62 background-image: url(chrome://resources/images/open_in_new.svg); | 74 background-image: url(chrome://resources/images/open_in_new.svg); |
| 63 } | 75 } |
| 64 | 76 |
| 77 button[is='paper-icon-button-light'].icon-more-vert { |
| 78 background-image: url(chrome://resources/images/icon_more_vert.svg); |
| 79 } |
| 80 |
| 81 button[is='paper-icon-button-light'].icon-settings { |
| 82 background-image: url(chrome://resources/images/icon_settings.svg); |
| 83 } |
| 84 |
| 65 .subpage-arrow, | 85 .subpage-arrow, |
| 66 .icon-external { | 86 .icon-external { |
| 67 display: none; | 87 display: none; |
| 68 } | 88 } |
| 69 | 89 |
| 70 paper-icon-button.subpage-arrow { | 90 paper-icon-button.subpage-arrow { |
| 71 background-image: url(../images/arrow_right.svg); | 91 background-image: url(../images/arrow_right.svg); |
| 72 } | 92 } |
| 73 | 93 |
| 74 [actionable] :-webkit-any(.subpage-arrow, .icon-external), | 94 [actionable] :-webkit-any(.subpage-arrow, .icon-external), |
| (...skipping 30 matching lines...) Expand all Loading... |
| 105 [selectable]:focus, | 125 [selectable]:focus, |
| 106 [selectable] > :focus { | 126 [selectable] > :focus { |
| 107 @apply(--cr-selectable-focus); | 127 @apply(--cr-selectable-focus); |
| 108 } | 128 } |
| 109 [selectable] > * { | 129 [selectable] > * { |
| 110 @apply(--cr-actionable); | 130 @apply(--cr-actionable); |
| 111 } | 131 } |
| 112 </style> | 132 </style> |
| 113 </template> | 133 </template> |
| 114 </dom-module> | 134 </dom-module> |
| OLD | NEW |