| 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 23 matching lines...) Expand all Loading... |
| 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 | 43 |
| 44 button[is='paper-icon-button-light'].subpage-arrow { |
| 45 background-image: url(../images/arrow_right.svg); |
| 46 } |
| 47 |
| 48 button[is='paper-icon-button-light'].icon-external { |
| 49 background-image: url(../images/open_in_new.svg); |
| 50 } |
| 51 |
| 52 .subpage-arrow, |
| 53 .icon-external { |
| 54 display: none; |
| 55 } |
| 56 |
| 57 [actionable] :-webkit-any(.subpage-arrow, .icon-external), |
| 58 [actionable]:-webkit-any(.subpage-arrow, .icon-external) { |
| 59 display: block; |
| 60 } |
| 61 |
| 44 [scrollable] { | 62 [scrollable] { |
| 45 border-color: transparent; | 63 border-color: transparent; |
| 46 border-style: solid; | 64 border-style: solid; |
| 47 border-width: 1px 0; | 65 border-width: 1px 0; |
| 48 overflow-y: auto; | 66 overflow-y: auto; |
| 49 } | 67 } |
| 50 [scrollable].is-scrolled { | 68 [scrollable].is-scrolled { |
| 51 border-top-color: var(--google-grey-300); | 69 border-top-color: var(--google-grey-300); |
| 52 } | 70 } |
| 53 [scrollable].can-scroll:not(.scrolled-to-bottom) { | 71 [scrollable].can-scroll:not(.scrolled-to-bottom) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 70 [selectable]:focus, | 88 [selectable]:focus, |
| 71 [selectable] > :focus { | 89 [selectable] > :focus { |
| 72 @apply(--cr-selectable-focus); | 90 @apply(--cr-selectable-focus); |
| 73 } | 91 } |
| 74 [selectable] > * { | 92 [selectable] > * { |
| 75 @apply(--cr-actionable); | 93 @apply(--cr-actionable); |
| 76 } | 94 } |
| 77 </style> | 95 </style> |
| 78 </template> | 96 </template> |
| 79 </dom-module> | 97 </dom-module> |
| OLD | NEW |