| 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/classe
s/iron-flex-layout.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.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"> | 12 <style include="settings-shared"> |
| 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-spacing); |
| 24 } | 24 } |
| 25 | 25 |
| 26 #onoff { |
| 27 font-weight: 600; |
| 28 } |
| 29 |
| 26 #onoff[on] { | 30 #onoff[on] { |
| 27 color: var(--settings-toggle-color); | 31 color: var(--settings-toggle-color); |
| 28 font-weight: 500; | 32 font-weight: 500; |
| 29 } | 33 } |
| 30 | 34 |
| 31 .vpn-header { | 35 .vpn-header { |
| 32 -webkit-margin-end: 12px; | 36 -webkit-margin-end: 12px; |
| 33 -webkit-margin-start: 4px; | 37 -webkit-margin-start: 4px; |
| 34 margin-bottom: 8px; | 38 margin-bottom: 8px; |
| 35 margin-top: 8px; | 39 margin-top: 8px; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 </div> | 118 </div> |
| 115 </template> | 119 </template> |
| 116 </template> | 120 </template> |
| 117 </div> | 121 </div> |
| 118 | 122 |
| 119 </template> | 123 </template> |
| 120 | 124 |
| 121 </template> | 125 </template> |
| 122 <script src="internet_subpage.js"></script> | 126 <script src="internet_subpage.js"></script> |
| 123 </dom-module> | 127 </dom-module> |
| OLD | NEW |