| OLD | NEW |
| 1 <!-- Common styles for Material Design settings. --> | 1 <!-- Common styles for Material Design settings. --> |
| 2 <dom-module id="settings-shared"> | 2 <dom-module id="settings-shared"> |
| 3 <template> | 3 <template> |
| 4 <style> | 4 <style> |
| 5 :root { | 5 :root { |
| 6 --checkbox-margin-start: 2px; | 6 --checkbox-margin-start: 2px; |
| 7 --checkbox-size: 16px; | 7 --checkbox-size: 16px; |
| 8 --checkbox-spacing: 18px; | 8 --checkbox-spacing: 18px; |
| 9 --iron-icon-fill-color: var(--paper-grey-600); | 9 --iron-icon-fill-color: var(--paper-grey-600); |
| 10 --iron-icon-height: 20px; | 10 --iron-icon-height: 20px; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 } | 137 } |
| 138 | 138 |
| 139 .action-button, | 139 .action-button, |
| 140 .cancel-button { | 140 .cancel-button { |
| 141 font-weight: 500; | 141 font-weight: 500; |
| 142 } | 142 } |
| 143 | 143 |
| 144 .list-frame { | 144 .list-frame { |
| 145 @apply(--layout-center); | 145 @apply(--layout-center); |
| 146 -webkit-padding-end: 20px; | 146 -webkit-padding-end: 20px; |
| 147 -webkit-padding-start: 48px; | 147 -webkit-padding-start: 56px; |
| 148 display: block; | 148 display: block; |
| 149 padding-bottom: 0; | 149 padding-bottom: 0; |
| 150 padding-top: 0; | 150 padding-top: 0; |
| 151 } | 151 } |
| 152 | 152 |
| 153 .list-frame .secondary, | 153 .list-frame .secondary, |
| 154 .list-item .secondary { | 154 .list-item .secondary { |
| 155 @apply(--settings-secondary); | 155 @apply(--settings-secondary); |
| 156 } | 156 } |
| 157 | 157 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 | 274 |
| 275 .favicon-image { | 275 .favicon-image { |
| 276 background-repeat: no-repeat; | 276 background-repeat: no-repeat; |
| 277 background-size: contain; | 277 background-size: contain; |
| 278 height: 16px; | 278 height: 16px; |
| 279 width: 16px; | 279 width: 16px; |
| 280 } | 280 } |
| 281 </style> | 281 </style> |
| 282 </template> | 282 </template> |
| 283 </dom-module> | 283 </dom-module> |
| OLD | NEW |