OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.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="internet_shared_css.html"> |
4 <link rel="import" href="network_property_list.html"> | 5 <link rel="import" href="network_property_list.html"> |
5 | 6 |
6 <dom-module id="network-ip-config"> | 7 <dom-module id="network-ip-config"> |
7 <template> | 8 <template> |
8 <style> | 9 <style include="internet-shared"> |
9 paper-checkbox { | |
10 margin-bottom: 10px; | |
11 } | |
12 | |
13 network-property-list { | |
14 -webkit-margin-start: 28px; | |
15 } | |
16 </style> | 10 </style> |
17 <div id="outer" class="layout vertical"> | 11 <div class="settings-box"> |
18 <paper-checkbox checked="{{automatic}}" disabled="[[!editable]]"> | 12 <paper-checkbox checked="{{automatic}}" disabled="[[!editable]]"> |
19 Configure IP Address Automatically | 13 Configure IP Address Automatically |
20 </paper-checkbox> | 14 </paper-checkbox> |
| 15 </div> |
| 16 <div class="settings-box continuation" |
| 17 hidden$="[[!showIPEditFields_(editable, automatic)]]"> |
21 <network-property-list | 18 <network-property-list |
22 fields="[[ipConfigFields_]]" property-dict="[[ipConfig]]" | 19 fields="[[ipConfigFields_]]" property-dict="[[ipConfig]]" |
23 edit-field-types="[[getIPEditFields_(ipConfig, editable, automatic)]]" | 20 edit-field-types="[[getIPEditFields_(ipConfig, editable, automatic)]]" |
24 on-property-change="onIPChange_"> | 21 on-property-change="onIPChange_"> |
25 </network-property-list> | 22 </network-property-list> |
26 </div> | 23 </div> |
27 </template> | 24 </template> |
28 <script src="network_ip_config.js"></script> | 25 <script src="network_ip_config.js"></script> |
29 </dom-module> | 26 </dom-module> |
OLD | NEW |