| 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="/settings_root_css.html"> |
| 3 | 4 |
| 4 <dom-module id="network-proxy-exclusions"> | 5 <dom-module id="network-proxy-exclusions"> |
| 5 <template> | 6 <template> |
| 6 <style> | 7 <style> |
| 7 span { | 8 span { |
| 8 margin: 5px; | 9 margin: 5px; |
| 9 } | 10 } |
| 10 | 11 |
| 11 iron-icon { | 12 iron-icon { |
| 13 @apply(--settings-actionable); |
| 12 margin: 5px; | 14 margin: 5px; |
| 13 } | 15 } |
| 14 | 16 |
| 15 div#container { | 17 div#container { |
| 16 border: 1px solid lightgrey; | 18 border: 1px solid lightgrey; |
| 17 height: 100px; | 19 height: 100px; |
| 18 margin: 5px; | 20 margin: 5px; |
| 19 overflow-y: auto; | 21 overflow-y: auto; |
| 20 } | 22 } |
| 21 </style> | 23 </style> |
| 22 <div id="container" class="layout vertical"> | 24 <div id="container" class="layout vertical"> |
| 23 <template is="dom-repeat" items="[[exclusions]]"> | 25 <template is="dom-repeat" items="[[exclusions]]"> |
| 24 <div class="layout horizontal"> | 26 <div class="layout horizontal"> |
| 25 <span class="flex">[[item]]</span> | 27 <span class="flex">[[item]]</span> |
| 26 <iron-icon icon="cr:clear" on-tap="onRemoveTap_"> | 28 <iron-icon icon="cr:clear" on-tap="onRemoveTap_"></iron-icon> |
| 27 </iron-icon> | |
| 28 </div> | 29 </div> |
| 29 </template> | 30 </template> |
| 30 </div> | 31 </div> |
| 31 </template> | 32 </template> |
| 32 <script src="network_proxy_exclusions.js"></script> | 33 <script src="network_proxy_exclusions.js"></script> |
| 33 </dom-module> | 34 </dom-module> |
| OLD | NEW |