| 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 --settings-secondary: { | 9 --settings-secondary: { |
| 10 color: var(--paper-grey-500); | 10 color: var(--paper-grey-500); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 @apply(--settings-secondary); | 127 @apply(--settings-secondary); |
| 128 } | 128 } |
| 129 | 129 |
| 130 .list-item { | 130 .list-item { |
| 131 @apply(--layout-center); | 131 @apply(--layout-center); |
| 132 display: flex; | 132 display: flex; |
| 133 min-height: 40px; | 133 min-height: 40px; |
| 134 padding: 0; | 134 padding: 0; |
| 135 } | 135 } |
| 136 | 136 |
| 137 .list-item.underbar { |
| 138 border-bottom: 1px solid var(--paper-grey-300); |
| 139 } |
| 140 |
| 137 .list-item iron-icon { | 141 .list-item iron-icon { |
| 138 @apply(--layout-center); | 142 @apply(--layout-center); |
| 139 height: 20px; | 143 height: 20px; |
| 140 width: 20px; | 144 width: 20px; |
| 141 } | 145 } |
| 142 | 146 |
| 143 .list-item select { | 147 .list-item select { |
| 144 -webkit-margin-start: 4px; | 148 -webkit-margin-start: 4px; |
| 145 } | 149 } |
| 146 | 150 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 243 |
| 240 .settings-checkbox-spacer { | 244 .settings-checkbox-spacer { |
| 241 -webkit-margin-start: calc( | 245 -webkit-margin-start: calc( |
| 242 var(--checkbox-margin-start) + | 246 var(--checkbox-margin-start) + |
| 243 var(--checkbox-size) + | 247 var(--checkbox-size) + |
| 244 var(--checkbox-spacing)); | 248 var(--checkbox-spacing)); |
| 245 } | 249 } |
| 246 </style> | 250 </style> |
| 247 </template> | 251 </template> |
| 248 </dom-module> | 252 </dom-module> |
| OLD | NEW |