| 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 paper-input-container { | 7 paper-input-container { |
| 8 --paper-input-container-input: { | 8 --paper-input-container-input: { |
| 9 color: var(--paper-grey-600); | 9 color: var(--paper-grey-600); |
| 10 font-size: inherit; | 10 font-size: inherit; |
| 11 font-weight: 400; | 11 font-weight: 400; |
| 12 }; | 12 }; |
| 13 margin-bottom: 0; | 13 margin-bottom: 0; |
| 14 margin-top: -9px; | 14 margin-top: -9px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .indented { | 17 .indented { |
| 18 -webkit-margin-start: 20px; | 18 -webkit-margin-start: 20px; |
| 19 } | 19 } |
| 20 | |
| 21 .settings-box.embedded { | |
| 22 align-self: stretch; | |
| 23 border-top: none; | |
| 24 padding: 0; | |
| 25 } | |
| 26 </style> | 20 </style> |
| 27 </template> | 21 </template> |
| 28 </dom-module> | 22 </dom-module> |
| OLD | NEW |