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 /* 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 [actionable] button[is='paper-icon-button-light'].subpage-arrow { | |
| 45 background-image: url(../images/arrow_right.svg); | |
| 46 } | |
| 47 | |
| 48 [actionable] button[is='paper-icon-button-light'].icon-external { | |
| 49 background-image: url(../images/open_in_new.svg); | |
| 50 } | |
|
Dan Beam
2016/12/09 00:11:38
sorry, but you're propagating this.
this implemen
stevenjb
2016/12/09 00:57:52
The [actionable] seems unnecessary/unwanted. Dave,
dschuyler
2016/12/09 01:15:52
The reason it was initially done is that the issue
stevenjb
2016/12/09 01:29:30
I think we should address 655292 separately, and e
| |
| 51 | |
| 44 [scrollable] { | 52 [scrollable] { |
| 45 border-color: transparent; | 53 border-color: transparent; |
| 46 border-style: solid; | 54 border-style: solid; |
| 47 border-width: 1px 0; | 55 border-width: 1px 0; |
| 48 overflow-y: auto; | 56 overflow-y: auto; |
| 49 } | 57 } |
| 50 [scrollable].is-scrolled { | 58 [scrollable].is-scrolled { |
| 51 border-top-color: var(--google-grey-300); | 59 border-top-color: var(--google-grey-300); |
| 52 } | 60 } |
| 53 [scrollable].can-scroll:not(.scrolled-to-bottom) { | 61 [scrollable].can-scroll:not(.scrolled-to-bottom) { |
| (...skipping 16 matching lines...) Expand all 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 |