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

Unified Diff: chrome/browser/resources/settings/internet_page/network_ip_config.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_ip_config.html
diff --git a/chrome/browser/resources/settings/internet_page/network_ip_config.html b/chrome/browser/resources/settings/internet_page/network_ip_config.html
index 64602835833f3f3c7f690f49cb2285a42d48b287..a620ac47cbe6d3cce9f70396748bb87a9b502809 100644
--- a/chrome/browser/resources/settings/internet_page/network_ip_config.html
+++ b/chrome/browser/resources/settings/internet_page/network_ip_config.html
@@ -1,23 +1,20 @@
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-checkbox.html">
<link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.html">
+<link rel="import" href="internet_shared_css.html">
<link rel="import" href="network_property_list.html">
<dom-module id="network-ip-config">
<template>
- <style>
- paper-checkbox {
- margin-bottom: 10px;
- }
-
- network-property-list {
- -webkit-margin-start: 28px;
- }
+ <style include="internet-shared">
</style>
- <div id="outer" class="layout vertical">
+ <div class="settings-box">
<paper-checkbox checked="{{automatic}}" disabled="[[!editable]]">
- Configure IP Address Automatically
+ Configure IP Address Automatically
</paper-checkbox>
+ </div>
+ <div class="settings-box continuation"
+ hidden$="[[!showIPEditFields_(editable, automatic)]]">
<network-property-list
fields="[[ipConfigFields_]]" property-dict="[[ipConfig]]"
edit-field-types="[[getIPEditFields_(ipConfig, editable, automatic)]]"

Powered by Google App Engine
This is Rietveld 408576698