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 Internet 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 cr-network-icon { |
| 8 -webkit-padding-end: var(--settings-box-row-padding); |
| 9 } |
| 10 |
7 iron-icon.policy { | 11 iron-icon.policy { |
8 -webkit-margin-end: 12px; | 12 -webkit-margin-end: 12px; |
9 } | 13 } |
10 | 14 |
11 paper-input-container { | 15 paper-input-container { |
12 --paper-input-container-input: { | 16 --paper-input-container-input: { |
13 color: var(--paper-grey-600); | 17 color: var(--paper-grey-600); |
14 font-size: inherit; | 18 font-size: inherit; |
15 font-weight: 400; | 19 font-weight: 400; |
16 }; | 20 }; |
17 margin-bottom: 0; | 21 margin-bottom: 0; |
18 margin-top: -9px; | 22 margin-top: -9px; |
19 } | 23 } |
20 | 24 |
21 .settings-box.indent { | 25 .button-container { |
22 @apply(--settings-list-frame-padding); | 26 align-items: center; |
| 27 display: flex; |
| 28 } |
| 29 |
| 30 .button-container paper-button { |
| 31 /* Align text edge with trailing margin (12px button padding) */ |
| 32 -webkit-margin-end: -12px; |
| 33 /* 8px spacing between highlight edges. */ |
| 34 -webkit-margin-start: calc(12px + 8px); |
23 } | 35 } |
24 </style> | 36 </style> |
25 </template> | 37 </template> |
26 </dom-module> | 38 </dom-module> |
OLD | NEW |