| 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_network
_behavior.html"> | 5 <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
_indicator.html"> | 6 <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_pref_in
dicator.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.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 26 matching lines...) Expand all Loading... |
| 37 margin: 10px 0; | 37 margin: 10px 0; |
| 38 } | 38 } |
| 39 | 39 |
| 40 iron-icon { | 40 iron-icon { |
| 41 -webkit-margin-end: 10px; | 41 -webkit-margin-end: 10px; |
| 42 } | 42 } |
| 43 | 43 |
| 44 paper-toggle-button, | 44 paper-toggle-button, |
| 45 cr-policy-network-indicator, | 45 cr-policy-network-indicator, |
| 46 cr-policy-pref-indicator { | 46 cr-policy-pref-indicator { |
| 47 -webkit-margin-start: var(--checkbox-spacing); | 47 -webkit-margin-start: var(--settings-control-spacing); |
| 48 } | 48 } |
| 49 | 49 |
| 50 /* Use <span> for subtitles so as not to interfere with | 50 /* Use <span> for subtitles so as not to interfere with |
| 51 * settings-box:first-of-type. */ | 51 * settings-box:first-of-type. */ |
| 52 span.subtitle { | 52 span.subtitle { |
| 53 font-weight: 700; | 53 font-weight: 700; |
| 54 padding: 20px; | 54 padding: 20px; |
| 55 } | 55 } |
| 56 | 56 |
| 57 .advanced { | 57 .advanced { |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 on-proxy-change="onProxyChange_" | 274 on-proxy-change="onProxyChange_" |
| 275 network-properties="[[networkProperties]]"> | 275 network-properties="[[networkProperties]]"> |
| 276 </network-proxy> | 276 </network-proxy> |
| 277 </template> | 277 </template> |
| 278 </div> | 278 </div> |
| 279 </iron-collapse> | 279 </iron-collapse> |
| 280 </template> | 280 </template> |
| 281 </template> | 281 </template> |
| 282 <script src="internet_detail_page.js"></script> | 282 <script src="internet_detail_page.js"></script> |
| 283 </dom-module> | 283 </dom-module> |
| OLD | NEW |