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

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

Issue 2179223004: MD Settings: Internet: Clean up network and proxy sections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_609156_internet_cleanup_3
Patch Set: Add MAX_NAMESERVERS 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 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 9fb9bd832f1a7e1c9c26ccd9952c450fc0f4daac..9714fae49a96cb619dbe84f997be088cd75a8def 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
@@ -1,31 +1,32 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="/settings_vars_css.html">
+<link rel="import" href="internet_shared_css.html">
<dom-module id="network-proxy-exclusions">
<template>
- <style>
- span {
- margin: 5px;
- }
-
+ <style include="internet-shared">
iron-icon {
@apply(--settings-actionable);
margin: 5px;
}
- div#container {
+ #container {
+ align-self: stretch;
border: 1px solid lightgrey;
+ display: flex;
+ flex-direction: column;
height: 100px;
- margin: 5px;
+ margin-top: 10px;
overflow-y: auto;
+ padding: 5px;
}
</style>
- <div id="container" class="layout vertical">
+ <div id="container">
<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>
+ <div class="layout horizontal center">
+ <div class="flex">[[item]]</div>
+ <iron-icon class="favicon-image" icon="cr:clear"
+ on-tap="onRemoveTap_"></iron-icon>
</div>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698