OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> | 1 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> |
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
8 <link rel="import" href="../settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
9 | 9 |
10 <dom-module id="settings-internet-subpage"> | 10 <dom-module id="settings-internet-subpage"> |
11 <template> | 11 <template> |
12 <style include="settings-shared iron-flex"> | 12 <style include="settings-shared iron-flex"> |
13 #networkListDiv { | 13 #networkListDiv { |
14 /* cr-network-list is padded to the right to allow space for a ripple */ | 14 /* cr-network-list is padded to the right to allow space for a ripple */ |
15 -webkit-padding-end: calc(var(--settings-box-row-padding) - | 15 -webkit-padding-end: calc(var(--settings-box-row-padding) - |
16 var(--cr-icon-ripple-padding)); | 16 var(--cr-icon-ripple-padding)); |
17 -webkit-padding-start: var(--settings-box-row-padding); | 17 -webkit-padding-start: var(--settings-box-row-padding); |
18 margin-top: var(--settings-page-vertical-margin); | 18 margin-top: var(--settings-page-vertical-margin); |
19 min-height: var(--settings-box-min-height); | 19 min-height: var(--settings-box-min-height); |
20 } | 20 } |
21 | 21 |
22 #addButton { | 22 #addButton { |
23 -webkit-margin-end: var(--settings-control-spacing); | 23 -webkit-margin-end: var(--settings-control-label-spacing); |
24 } | 24 } |
25 | 25 |
26 #onOff { | 26 #onOff { |
27 font-weight: 500; | 27 font-weight: 500; |
28 } | 28 } |
29 | 29 |
30 #onOff[on] { | 30 #onOff[on] { |
31 color: var(--settings-toggle-color); | 31 color: var(--settings-toggle-color); |
32 } | 32 } |
33 | 33 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 </div> | 121 </div> |
122 </template> | 122 </template> |
123 </template> | 123 </template> |
124 </div> | 124 </div> |
125 | 125 |
126 </template> | 126 </template> |
127 | 127 |
128 </template> | 128 </template> |
129 <script src="internet_subpage.js"></script> | 129 <script src="internet_subpage.js"></script> |
130 </dom-module> | 130 </dom-module> |
OLD | NEW |