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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html

Issue 2094813002: MD Settings: make custom UIs look "actionable" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dpapad@ review Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
index 31e2d56e0154a82e82e9957300fb8e534001eb0d..30cb333b3ce9f3e2a94c82fe4ffd08c3f6446d30 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
@@ -1,5 +1,6 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="/settings_root_css.html">
<dom-module id="network-proxy-exclusions">
<template>
@@ -9,6 +10,7 @@
}
iron-icon {
+ @apply(--settings-actionable);
margin: 5px;
}
@@ -23,8 +25,7 @@
<template is="dom-repeat" items="[[exclusions]]">
<div class="layout horizontal">
<span class="flex">[[item]]</span>
- <iron-icon icon="cr:clear" on-tap="onRemoveTap_">
- </iron-icon>
+ <iron-icon icon="cr:clear" on-tap="onRemoveTap_"></iron-icon>
</div>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698