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/network/cr_network_icon.
html"> | 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> |
5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
7 <link rel="import" href="chrome://resources/html/polymer.html"> | 7 <link rel="import" href="chrome://resources/html/polymer.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
12 <link rel="import" href="/prefs/prefs.html"> | 12 <link rel="import" href="/prefs/prefs.html"> |
13 <link rel="import" href="/route.html"> | 13 <link rel="import" href="/route.html"> |
14 <link rel="import" href="internet_shared_css.html"> | 14 <link rel="import" href="internet_shared_css.html"> |
15 <link rel="import" href="network_apnlist.html"> | 15 <link rel="import" href="network_apnlist.html"> |
16 <link rel="import" href="network_ip_config.html"> | 16 <link rel="import" href="network_ip_config.html"> |
17 <link rel="import" href="network_nameservers.html"> | 17 <link rel="import" href="network_nameservers.html"> |
18 <link rel="import" href="network_property_list.html"> | 18 <link rel="import" href="network_property_list.html"> |
19 <link rel="import" href="network_proxy.html"> | 19 <link rel="import" href="network_proxy.html"> |
20 <link rel="import" href="network_siminfo.html"> | 20 <link rel="import" href="network_siminfo.html"> |
21 | 21 |
22 <dom-module id="settings-internet-detail-page"> | 22 <dom-module id="settings-internet-detail-page"> |
23 <template> | 23 <template> |
24 <style include="internet-shared"> | 24 <style include="internet-shared"> |
25 :host { | 25 :host { |
26 padding-bottom: 40px; | 26 padding-bottom: 40px; |
27 } | 27 } |
28 | 28 |
29 cr-network-icon { | 29 cr-network-icon { |
30 -webkit-margin-end: 15px; | 30 -webkit-padding-end: 8px; |
31 height: 32px; | |
32 margin-top: -4px; /* Align better with text */ | |
33 width: 32px; | |
34 } | 31 } |
35 | 32 |
36 cr-policy-network-indicator { | 33 cr-policy-network-indicator { |
37 -webkit-margin-start: 10px; | 34 -webkit-margin-start: 10px; |
38 } | 35 } |
39 | 36 |
40 iron-collapse { | 37 iron-collapse { |
41 margin: 10px 0; | 38 margin: 10px 0; |
42 } | 39 } |
43 | 40 |
(...skipping 25 matching lines...) Expand all Loading... |
69 } | 66 } |
70 | 67 |
71 #buttonDiv paper-button { | 68 #buttonDiv paper-button { |
72 margin: 10px 0; | 69 margin: 10px 0; |
73 } | 70 } |
74 | 71 |
75 #networkState { | 72 #networkState { |
76 /* TODO(stevenjb): Finalize font-size / style for this. */ | 73 /* TODO(stevenjb): Finalize font-size / style for this. */ |
77 font-size: 125%; | 74 font-size: 125%; |
78 font-weight: 500; | 75 font-weight: 500; |
| 76 padding-left: 8px; |
79 } | 77 } |
80 | 78 |
81 #networkState[connected] { | 79 #networkState[connected] { |
82 color: var(--google-green-500); | 80 color: var(--google-green-500); |
83 } | 81 } |
84 | 82 |
85 #proxyDiv { | 83 #proxyDiv { |
86 max-width: 500px; | 84 max-width: 500px; |
87 } | 85 } |
88 </style> | 86 </style> |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 on-proxy-change="onProxyChange_" | 262 on-proxy-change="onProxyChange_" |
265 network-properties="[[networkProperties]]"> | 263 network-properties="[[networkProperties]]"> |
266 </network-proxy> | 264 </network-proxy> |
267 </template> | 265 </template> |
268 </div> | 266 </div> |
269 </iron-collapse> | 267 </iron-collapse> |
270 </template> | 268 </template> |
271 </template> | 269 </template> |
272 <script src="internet_detail_page.js"></script> | 270 <script src="internet_detail_page.js"></script> |
273 </dom-module> | 271 </dom-module> |
OLD | NEW |