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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_proxy_exclusions.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/hidden_style_css.html">
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="internet_shared_css.html"> 4 <link rel="import" href="internet_shared_css.html">
4 5
5 <dom-module id="network-proxy-exclusions"> 6 <dom-module id="network-proxy-exclusions">
6 <template> 7 <template>
7 <style include="internet-shared"> 8 <style include="internet-shared cr-hidden-style">
8 iron-icon { 9 iron-icon {
9 @apply(--settings-actionable); 10 @apply(--settings-actionable);
10 margin: 5px; 11 margin: 5px;
11 } 12 }
12 13
13 #container { 14 #container {
14 align-self: stretch; 15 align-self: stretch;
15 border: 1px solid lightgrey; 16 border: 1px solid lightgrey;
16 height: 100px; 17 height: 100px;
17 margin-top: 10px; 18 margin-top: 10px;
18 overflow-y: auto; 19 overflow-y: auto;
19 padding: 5px; 20 padding: 5px;
20 } 21 }
21 </style> 22 </style>
22 <div id="container"> 23 <div id="container">
23 <template is="dom-repeat" items="[[exclusions]]"> 24 <template is="dom-repeat" items="[[exclusions]]">
24 <div class="layout horizontal center" tabindex="0" > 25 <div class="layout horizontal center" tabindex="0" >
25 <div class="flex">[[item]]</div> 26 <div class="flex">[[item]]</div>
26 <iron-icon class="favicon-image" icon="cr:clear" 27 <iron-icon class="favicon-image" icon="cr:clear"
27 on-tap="onRemoveTap_" tabindex="0" hidden="[[!editable]]"> 28 on-tap="onRemoveTap_" tabindex="0" hidden="[[!editable]]">
28 </iron-icon> 29 </iron-icon>
29 </div> 30 </div>
30 </template> 31 </template>
31 </div> 32 </div>
32 </template> 33 </template>
33 <script src="network_proxy_exclusions.js"></script> 34 <script src="network_proxy_exclusions.js"></script>
34 </dom-module> 35 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698