| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 paper-radio-button { | 135 paper-radio-button { |
| 136 --paper-radio-button-checked-color: var(--google-blue-500); | 136 --paper-radio-button-checked-color: var(--google-blue-500); |
| 137 --paper-radio-button-label-spacing: 22px; | 137 --paper-radio-button-label-spacing: 22px; |
| 138 --paper-radio-button-radio-container: { |
| 139 flex-shrink: 0; |
| 140 }; |
| 138 --paper-radio-button-unchecked-color: var(--paper-grey-600); | 141 --paper-radio-button-unchecked-color: var(--paper-grey-600); |
| 139 -webkit-margin-start: 2px; | 142 -webkit-margin-start: 2px; |
| 140 align-items: center; | 143 align-items: center; |
| 141 display: flex; | 144 display: flex; |
| 142 min-height: var(--settings-row-min-height); | 145 min-height: var(--settings-row-min-height); |
| 143 } | 146 } |
| 144 | 147 |
| 145 paper-radio-group { | 148 paper-radio-group { |
| 146 width: 100%; | 149 width: 100%; |
| 147 } | 150 } |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 transform: rotate(-135deg); | 391 transform: rotate(-135deg); |
| 389 } | 392 } |
| 390 | 393 |
| 391 .column-header { | 394 .column-header { |
| 392 color: var(--paper-grey-600); | 395 color: var(--paper-grey-600); |
| 393 font-weight: 500; | 396 font-weight: 500; |
| 394 } | 397 } |
| 395 </style> | 398 </style> |
| 396 </template> | 399 </template> |
| 397 </dom-module> | 400 </dom-module> |
| OLD | NEW |