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

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

Issue 2848443002: MD Settings: Remove usage of deprecated iron-flex-layout.html, for CrOS. (Closed)
Patch Set: Address more 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/classe s/iron-flex-layout.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">
11 11
12 <dom-module id="cr-network-list-item"> 12 <dom-module id="cr-network-list-item">
13 <template> 13 <template>
14 <style include="cr-shared-style"> 14 <style include="cr-shared-style iron-flex">
15 :host { 15 :host {
16 display: inline-flex; 16 display: inline-flex;
17 outline: none; 17 outline: none;
18 } 18 }
19 19
20 #divOuter { 20 #divOuter {
21 -webkit-padding-end: var(--cr-icon-ripple-padding); 21 -webkit-padding-end: var(--cr-icon-ripple-padding);
22 } 22 }
23 23
24 #divDetail { 24 #divDetail {
(...skipping 69 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