OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
4 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 4 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> |
6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> |
7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
9 <link rel="import" href="chrome://resources/html/polymer.html"> | 9 <link rel="import" href="chrome://resources/html/polymer.html"> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 .settings-box.stretch { | 55 .settings-box.stretch { |
56 align-items: stretch; | 56 align-items: stretch; |
57 } | 57 } |
58 | 58 |
59 .settings-box:first-of-type { | 59 .settings-box:first-of-type { |
60 border-top: none; | 60 border-top: none; |
61 } | 61 } |
62 | 62 |
63 #buttonDiv paper-button { | 63 #buttonDiv paper-button { |
64 margin: 10px 0; | 64 /* Align text edge with trailing margin (12px button padding) */ |
| 65 -webkit-margin-end: -12px; |
| 66 /* 8px spacing between highlight edges. */ |
| 67 -webkit-margin-start: calc(12px + 8px); |
| 68 margin-bottom: 10px; |
| 69 margin-top: 10px; |
65 } | 70 } |
66 | 71 |
67 #networkState { | 72 #networkState { |
68 -webkit-padding-start: 8px; | 73 -webkit-padding-start: 8px; |
69 font-size: 107.69%; /* 14px / 13px */ | 74 font-size: 107.69%; /* 14px / 13px */ |
70 font-weight: 500; | 75 font-weight: 500; |
71 } | 76 } |
72 | 77 |
73 #networkState[connected] { | 78 #networkState[connected] { |
74 color: var(--google-green-500); | 79 color: var(--google-green-500); |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 <network-proxy editable prefs="{{prefs}}" | 296 <network-proxy editable prefs="{{prefs}}" |
292 on-proxy-change="onProxyChange_" | 297 on-proxy-change="onProxyChange_" |
293 network-properties="[[networkProperties]]"> | 298 network-properties="[[networkProperties]]"> |
294 </network-proxy> | 299 </network-proxy> |
295 </iron-collapse> | 300 </iron-collapse> |
296 </template> | 301 </template> |
297 </template> | 302 </template> |
298 </template> | 303 </template> |
299 <script src="internet_detail_page.js"></script> | 304 <script src="internet_detail_page.js"></script> |
300 </dom-module> | 305 </dom-module> |
OLD | NEW |