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 cr-network-icon { | |
8 -webkit-padding-end: 8px; | |
9 } | |
stevenjb
2017/05/02 00:17:45
dont share? (audit)
| |
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 .settings-box.indent { |
22 @apply(--settings-list-frame-padding); | 26 @apply(--settings-list-frame-padding); |
23 } | 27 } |
28 | |
29 .button-row { | |
stevenjb
2017/05/02 00:17:45
#buttonDiv
| |
30 align-items: center; | |
31 display: flex; | |
32 } | |
33 | |
34 #buttonDiv paper-button { | |
35 /* Align text edge with trailing margin (12px button padding) */ | |
36 -webkit-margin-end: -12px; | |
37 /* 8px spacing between highlight edges. */ | |
38 -webkit-margin-start: calc(12px + 8px); | |
39 margin-bottom: 10px; | |
40 margin-top: 10px; | |
41 } | |
42 | |
24 </style> | 43 </style> |
25 </template> | 44 </template> |
26 </dom-module> | 45 </dom-module> |
OLD | NEW |