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

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

Issue 2221073004: Replace deprecated iron-flex-layout/classes with iron-flex-layout-class in MD Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo ^ Created 4 years, 4 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-flex-layout/iron-f lex-layout-classes.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="iron-flex internet-shared">
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 display: flex; 17 display: flex;
17 flex-direction: column; 18 flex-direction: column;
18 height: 100px; 19 height: 100px;
19 margin-top: 10px; 20 margin-top: 10px;
20 overflow-y: auto; 21 overflow-y: auto;
21 padding: 5px; 22 padding: 5px;
22 } 23 }
23 </style> 24 </style>
24 <div id="container"> 25 <div id="container">
25 <template is="dom-repeat" items="[[exclusions]]"> 26 <template is="dom-repeat" items="[[exclusions]]">
26 <div class="layout horizontal center"> 27 <div class="layout horizontal center">
27 <div class="flex">[[item]]</div> 28 <div class="flex">[[item]]</div>
28 <iron-icon class="favicon-image" icon="cr:clear" 29 <iron-icon class="favicon-image" icon="cr:clear"
29 on-tap="onRemoveTap_"></iron-icon> 30 on-tap="onRemoveTap_"></iron-icon>
30 </div> 31 </div>
31 </template> 32 </template>
32 </div> 33 </div>
33 </template> 34 </template>
34 <script src="network_proxy_exclusions.js"></script> 35 <script src="network_proxy_exclusions.js"></script>
35 </dom-module> 36 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698