| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 2 <link rel="import" href="settings_vars_css.html"> | 2 <link rel="import" href="settings_vars_css.html"> |
| 3 | 3 |
| 4 <!-- Common styles for Material Design settings. --> | 4 <!-- Common styles for Material Design settings. --> |
| 5 <dom-module id="settings-shared"> | 5 <dom-module id="settings-shared"> |
| 6 <template> | 6 <template> |
| 7 <style include="cr-shared-style"> | 7 <style include="cr-shared-style"> |
| 8 /* Included here so we don't have to include "iron-positioning" in every | 8 /* Included here so we don't have to include "iron-positioning" in every |
| 9 * stylesheet. See crbug.com/498405. */ | 9 * stylesheet. See crbug.com/498405. */ |
| 10 [hidden] { | 10 [hidden] { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 iron-icon[icon='cr:check'], | 35 iron-icon[icon='cr:check'], |
| 36 iron-icon[icon='settings:done'] { | 36 iron-icon[icon='settings:done'] { |
| 37 --iron-icon-fill-color: var(--google-green-500); | 37 --iron-icon-fill-color: var(--google-green-500); |
| 38 } | 38 } |
| 39 | 39 |
| 40 paper-button { | 40 paper-button { |
| 41 height: 32px; | 41 height: 32px; |
| 42 margin: 0; | 42 margin: 0; |
| 43 border-radius: 2px; | |
| 44 } | 43 } |
| 45 | 44 |
| 46 paper-button[toggles][active] { | 45 paper-button[toggles][active] { |
| 47 background-color: var(--paper-grey-300); | 46 background-color: var(--paper-grey-300); |
| 48 } | 47 } |
| 49 | 48 |
| 50 paper-toggle-button { | 49 paper-toggle-button { |
| 51 @apply(--settings-actionable); | 50 @apply(--settings-actionable); |
| 52 height: var(--settings-row-min-height); | 51 height: var(--settings-row-min-height); |
| 53 width: 31px; | 52 width: 31px; |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 /* Turns the arrow direction downwards, when the bubble is placed above | 368 /* Turns the arrow direction downwards, when the bubble is placed above |
| 370 * the anchor element */ | 369 * the anchor element */ |
| 371 .search-bubble-innards.above::after { | 370 .search-bubble-innards.above::after { |
| 372 bottom: -5px; | 371 bottom: -5px; |
| 373 top: auto; | 372 top: auto; |
| 374 transform: rotate(-135deg); | 373 transform: rotate(-135deg); |
| 375 } | 374 } |
| 376 </style> | 375 </style> |
| 377 </template> | 376 </template> |
| 378 </dom-module> | 377 </dom-module> |
| OLD | NEW |