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

Side by Side Diff: ui/webui/resources/cr_elements/network/cr_network_list_item.html

Issue 2893483002: [MD settings] layout vertical separators with paper-icon-button-light (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.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-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon. html"> 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon. html">
7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat or.html"> 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat or.html">
9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html"> 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html">
10 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 10 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
(...skipping 28 matching lines...) Expand all
39 color: var(--paper-grey-600); 39 color: var(--paper-grey-600);
40 font-size: inherit; 40 font-size: inherit;
41 font-weight: 400; 41 font-weight: 400;
42 } 42 }
43 43
44 #networkStateText[connected] { 44 #networkStateText[connected] {
45 color: var(--google-green-500); 45 color: var(--google-green-500);
46 } 46 }
47 47
48 #subpageDiv { 48 #subpageDiv {
49 -webkit-border-start: var(--cr-separator-line); 49 -webkit-border-start: var(--cr-separator-line);
stevenjb 2017/05/17 22:00:49 Do you want to go ahead and just remove this while
dschuyler 2017/05/18 00:17:52 Sure, I'll look at that, but I'd like to do it sep
50 -webkit-padding-start: 4px; 50 -webkit-padding-start: 20px;
stevenjb 2017/05/17 16:39:37 That is a fair bit of padding. I assume you checke
dschuyler 2017/05/17 21:28:14 I did a chromeos build if that's what you mean. (t
stevenjb 2017/05/17 21:36:04 Yes, if the list of wifi networks (click on the wi
51 } 51 }
52 52
53 :host-context([dir=rtl]) #subpageDiv > button { 53 :host-context([dir=rtl]) #subpageDiv > button {
54 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */ 54 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
55 } 55 }
56 56
57 iron-icon { 57 iron-icon {
58 height: 24px; 58 height: 24px;
59 width: 24px; 59 width: 24px;
60 } 60 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <button class="subpage-arrow" is="paper-icon-button-light" 94 <button class="subpage-arrow" is="paper-icon-button-light"
95 on-tap="fireShowDetails_" tabindex$="[[tabindex]]" 95 on-tap="fireShowDetails_" tabindex$="[[tabindex]]"
96 aria-label$="[[ariaLabel]]"> 96 aria-label$="[[ariaLabel]]">
97 </button> 97 </button>
98 </div> 98 </div>
99 </template> 99 </template>
100 </div> 100 </div>
101 </template> 101 </template>
102 <script src="cr_network_list_item.js"></script> 102 <script src="cr_network_list_item.js"></script>
103 </dom-module> 103 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698