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

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

Issue 2169603002: MD WebUI: Move some settings CSS to shared_style_css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_521040_internet_cleanup_1
Patch Set: Rebase with hover removal changes Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="/settings_root_css.html"> 3 <link rel="import" href="/settings_vars_css.html">
4 4
5 <dom-module id="network-proxy-exclusions"> 5 <dom-module id="network-proxy-exclusions">
6 <template> 6 <template>
7 <style> 7 <style>
8 span { 8 span {
9 margin: 5px; 9 margin: 5px;
10 } 10 }
11 11
12 iron-icon { 12 iron-icon {
13 @apply(--settings-actionable); 13 @apply(--settings-actionable);
(...skipping 11 matching lines...) Expand all
25 <template is="dom-repeat" items="[[exclusions]]"> 25 <template is="dom-repeat" items="[[exclusions]]">
26 <div class="layout horizontal"> 26 <div class="layout horizontal">
27 <span class="flex">[[item]]</span> 27 <span class="flex">[[item]]</span>
28 <iron-icon icon="cr:clear" on-tap="onRemoveTap_"></iron-icon> 28 <iron-icon icon="cr:clear" on-tap="onRemoveTap_"></iron-icon>
29 </div> 29 </div>
30 </template> 30 </template>
31 </div> 31 </div>
32 </template> 32 </template>
33 <script src="network_proxy_exclusions.js"></script> 33 <script src="network_proxy_exclusions.js"></script>
34 </dom-module> 34 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698