| 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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 | 37 |
| 38 iron-collapse { | 38 iron-collapse { |
| 39 margin: 10px 0; | 39 margin: 10px 0; |
| 40 } | 40 } |
| 41 | 41 |
| 42 iron-icon { | 42 iron-icon { |
| 43 -webkit-margin-end: 10px; | 43 -webkit-margin-end: 10px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 paper-toggle-button, | 46 paper-toggle-button { |
| 47 -webkit-margin-start: var(--settings-control-label-spacing); |
| 48 } |
| 49 |
| 47 cr-policy-network-indicator, | 50 cr-policy-network-indicator, |
| 48 cr-policy-indicator { | 51 cr-policy-indicator { |
| 49 -webkit-margin-start: var(--settings-control-spacing); | 52 -webkit-margin-start: var(--settings-controlled-by-spacing); |
| 50 } | 53 } |
| 51 | 54 |
| 52 .indented { | 55 .indented { |
| 53 -webkit-margin-start: var(--settings-box-row-padding); | 56 -webkit-margin-start: var(--settings-box-row-padding); |
| 54 } | 57 } |
| 55 | 58 |
| 56 .settings-box.stretch { | 59 .settings-box.stretch { |
| 57 align-items: stretch; | 60 align-items: stretch; |
| 58 } | 61 } |
| 59 | 62 |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 </template> | 307 </template> |
| 305 | 308 |
| 306 <tether-connection-dialog id="tetherDialog" | 309 <tether-connection-dialog id="tetherDialog" |
| 307 network-properties="[[networkProperties]]" | 310 network-properties="[[networkProperties]]" |
| 308 on-tether-connect="onTetherConnect_" | 311 on-tether-connect="onTetherConnect_" |
| 309 on-close="onTetherDialogClose_"> | 312 on-close="onTetherDialogClose_"> |
| 310 </tether-connection-dialog> | 313 </tether-connection-dialog> |
| 311 </template> | 314 </template> |
| 312 <script src="internet_detail_page.js"></script> | 315 <script src="internet_detail_page.js"></script> |
| 313 </dom-module> | 316 </dom-module> |
| OLD | NEW |