OLD | NEW |
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 Loading... |
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> |
OLD | NEW |