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

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

Issue 2303093003: MD Settings: Internet: Enable SIM unlock with no cellular network (Closed)
Patch Set: No settings_vars_css cleanup Created 4 years, 3 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.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy.html b/chrome/browser/resources/settings/internet_page/network_proxy.html
index 1cf3c5e61579c192963cb60f0ed37ee4ffef7f25..8a3e58d72633fab3f6a167046212d962273f75c4 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy.html
@@ -23,6 +23,11 @@
margin-bottom: 10px;
}
+ /* Use .middle spacing but no flex. */
+ .settings-box .middle {
+ flex: none;
+ }
+
#exceptionsDiv {
padding: 10px 0;
}
@@ -63,10 +68,10 @@
</div>
<!-- Autoconfiguration (PAC) -->
- <div class="settings-box continuation indented"
+ <div class="settings-box continuation"
hidden$="[[!matches_(proxy.Type, ProxySettingsType_.PAC)]]">
- <div class="start">$i18n{networkProxyAutoConfig}</div>
- <paper-input no-label-float class="flex" value="{{proxy.PAC}}"
+ <div>$i18n{networkProxyAutoConfig}</div>
+ <paper-input no-label-float class="middle" value="{{proxy.PAC}}"
disabled="[[isNetworkPolicyEnforced(
networkProperties.ProxySettings.PAC)]]"
on-blur="onProxyInputChange_">
@@ -74,14 +79,14 @@
</div>
<!-- Web Proxy Auto Discovery (WPAD) -->
- <div class="settings-box continuation indented"
+ <div class="settings-box continuation"
hidden$="[[!matches_(proxy.Type, ProxySettingsType_.WPAD)]]">
- <div class="start">$i18n{networkSectionWpad}</div>
- <div>[[WPAD]]</div>
+ <div>$i18n{networkSectionWpad}</div>
+ <div class="middle">[[WPAD]]</div>
</div>
<!-- Manual -->
- <div id="proxyDiv" class="settings-box continuation single-column indented"
+ <div id="proxyDiv" class="settings-box continuation single-column"
hidden$="[[!matches_(proxy.Type, ProxySettingsType_.MANUAL)]]">
<paper-checkbox checked="{{useSameProxy_}}">
$i18n{networkProxyUseSame}

Powered by Google App Engine
This is Rietveld 408576698