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