| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 125 } |
| 126 | 126 |
| 127 paper-checkbox { | 127 paper-checkbox { |
| 128 --paper-checkbox-checked-color: var(--google-blue-500); | 128 --paper-checkbox-checked-color: var(--google-blue-500); |
| 129 --paper-checkbox-label-spacing: var(--settings-control-spacing); | 129 --paper-checkbox-label-spacing: var(--settings-control-spacing); |
| 130 --paper-checkbox-size: var(--checkbox-size); | 130 --paper-checkbox-size: var(--checkbox-size); |
| 131 --paper-checkbox-unchecked-color: var(--paper-grey-600); | 131 --paper-checkbox-unchecked-color: var(--paper-grey-600); |
| 132 -webkit-margin-start: var(--checkbox-margin-start); | 132 -webkit-margin-start: var(--checkbox-margin-start); |
| 133 } | 133 } |
| 134 | 134 |
| 135 controlled-radio-button, |
| 135 paper-radio-button { | 136 paper-radio-button { |
| 136 --paper-radio-button-checked-color: var(--google-blue-500); | 137 --paper-radio-button-checked-color: var(--google-blue-500); |
| 137 --paper-radio-button-label-spacing: 22px; | 138 --paper-radio-button-label-spacing: 22px; |
| 138 --paper-radio-button-radio-container: { | 139 --paper-radio-button-radio-container: { |
| 139 flex-shrink: 0; | 140 flex-shrink: 0; |
| 140 }; | 141 }; |
| 141 --paper-radio-button-unchecked-color: var(--paper-grey-600); | 142 --paper-radio-button-unchecked-color: var(--paper-grey-600); |
| 142 -webkit-margin-start: 2px; | 143 -webkit-margin-start: 2px; |
| 143 align-items: center; | 144 align-items: center; |
| 144 display: flex; | 145 display: flex; |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 transform: rotate(-135deg); | 392 transform: rotate(-135deg); |
| 392 } | 393 } |
| 393 | 394 |
| 394 .column-header { | 395 .column-header { |
| 395 color: var(--paper-grey-600); | 396 color: var(--paper-grey-600); |
| 396 font-weight: 500; | 397 font-weight: 500; |
| 397 } | 398 } |
| 398 </style> | 399 </style> |
| 399 </template> | 400 </template> |
| 400 </dom-module> | 401 </dom-module> |
| OLD | NEW |