Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: chrome/browser/resources/settings/internet_page/internet_subpage.html

Issue 2754753002: MD Settings: Fix network list styling (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_vars_css.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 */
15 -webkit-padding-end: calc(var(--settings-box-row-padding) -
16 var(--cr-icon-ripple-padding));
14 -webkit-padding-start: var(--settings-box-row-padding); 17 -webkit-padding-start: var(--settings-box-row-padding);
15 margin-top: var(--settings-page-vertical-margin); 18 margin-top: var(--settings-page-vertical-margin);
16 min-height: var(--settings-box-min-height); 19 min-height: var(--settings-box-min-height);
17 } 20 }
18 21
19 #addButton { 22 #addButton {
20 -webkit-margin-end: var(--cr-icon-padding); 23 -webkit-margin-end: var(--settings-control-spacing);
21 } 24 }
22 25
23 #onoff[on] { 26 #onoff[on] {
24 color: var(--settings-toggle-color); 27 color: var(--settings-toggle-color);
25 } 28 }
26 29
27 .vpn-header { 30 .vpn-header {
28 -webkit-margin-end: 12px; 31 -webkit-margin-end: 12px;
29 -webkit-margin-start: 4px; 32 -webkit-margin-start: 4px;
30 margin-bottom: 8px; 33 margin-bottom: 8px;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 </div> 114 </div>
112 </template> 115 </template>
113 </template> 116 </template>
114 </div> 117 </div>
115 118
116 </template> 119 </template>
117 120
118 </template> 121 </template>
119 <script src="internet_subpage.js"></script> 122 <script src="internet_subpage.js"></script>
120 </dom-module> 123 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_vars_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698