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

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

Issue 2921533005: Settings: Network: Fix some spacing issues (Closed)
Patch Set: Rebase Created 3 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
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_property_list.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/internet_page/network_proxy.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy.html b/chrome/browser/resources/settings/internet_page/network_proxy.html
index 55e202cefbe6b09b7e64525fd045654ae2808abf..f0586e4801219919c5cfe023a034ee7d38a99dd9 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy.html
@@ -52,7 +52,7 @@
<!-- Policy indicator. Only one dom-if below will be shown. -->
<template is="dom-if"
if="[[shouldShowNetworkPolicyIndicator_(networkProperties)]]">
- <div class="list-frame">
+ <div class="settings-box">
<div class="layout horizontal center">
<cr-policy-network-indicator
property="[[networkProperties.ProxySettings.Type]]"
@@ -64,7 +64,7 @@
</template>
<template is="dom-if"
if="[[shouldShowExtensionIndicator_(networkProperties)]]">
- <div class="list-frame">
+ <div class="settings-box">
<extension-controlled-indicator
extension-id="[[prefs.proxy.extensionId]]"
extension-name="[[prefs.proxy.controlledByName]]"
@@ -74,7 +74,7 @@
</template>
<!-- Allow shared proxies -->
- <div class="settings-box continuation indent"
+ <div class="settings-box continuation"
hidden$="[[!shouldShowAllowShared_(
networkProperties.ProxySettings.Type)]]">
<settings-toggle-button id="allowShared" class="start"
@@ -86,7 +86,7 @@
</div>
<!-- Proxy type dropdown -->
- <div class="settings-box continuation indent">
+ <div class="settings-box continuation">
<div class="start">$i18n{networkProxyConnectionType}</div>
<div class="md-select-wrapper">
<select id="proxyType" class="md-select" on-change="onTypeChange_"
@@ -103,7 +103,7 @@
</div>
<!-- Autoconfiguration (PAC) -->
- <div class="settings-box continuation indent"
+ <div class="settings-box continuation"
hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.PAC)]]">
<div>$i18n{networkProxyAutoConfig}</div>
<paper-input no-label-float class="middle" value="{{proxy_.PAC}}"
@@ -114,14 +114,14 @@
</div>
<!-- Web Proxy Auto Discovery (WPAD) -->
- <div class="settings-box continuation indent"
+ <div class="settings-box continuation"
hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.WPAD)]]">
<div>$i18n{networkSectionWpad}</div>
<div class="middle">[[WPAD_]]</div>
</div>
<!-- Manual -->
- <div class="settings-box continuation indent"
+ <div class="settings-box continuation"
hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.MANUAL)]]">
<div id="networkProxyToggleLabel" class="flex">
$i18n{networkProxyUseSame}
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_property_list.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698