| OLD | NEW |
| 1 <link rel="import" href="/settings_shared_css.html"> | 1 <link rel="import" href="/settings_shared_css.html"> |
| 2 | 2 |
| 3 <!-- Common styles for Material Design settings. --> | 3 <!-- Common styles for Material Design settings. --> |
| 4 <dom-module id="internet-shared"> | 4 <dom-module id="internet-shared"> |
| 5 <template> | 5 <template> |
| 6 <style include="settings-shared"> | 6 <style include="settings-shared"> |
| 7 iron-icon.policy { |
| 8 -webkit-margin-end: 12px; |
| 9 } |
| 10 |
| 7 paper-input-container { | 11 paper-input-container { |
| 8 --paper-input-container-input: { | 12 --paper-input-container-input: { |
| 9 color: var(--paper-grey-600); | 13 color: var(--paper-grey-600); |
| 10 font-size: inherit; | 14 font-size: inherit; |
| 11 font-weight: 400; | 15 font-weight: 400; |
| 12 }; | 16 }; |
| 13 margin-bottom: 0; | 17 margin-bottom: 0; |
| 14 margin-top: -9px; | 18 margin-top: -9px; |
| 15 } | 19 } |
| 16 | 20 |
| 17 .settings-box.indent { | 21 .settings-box.indent { |
| 18 @apply(--settings-list-frame-padding); | 22 @apply(--settings-list-frame-padding); |
| 19 } | 23 } |
| 20 </style> | 24 </style> |
| 21 </template> | 25 </template> |
| 22 </dom-module> | 26 </dom-module> |
| OLD | NEW |