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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_proxy_input.html

Issue 2188163003: MD Settings: Internet: Add 'forget' button, more fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_609156_internet_cleanup_6a
Patch Set: . Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
3 <link rel="import" href="internet_shared_css.html"> 3 <link rel="import" href="internet_shared_css.html">
4 4
5 <dom-module id="network-proxy-input"> 5 <dom-module id="network-proxy-input">
6 <template> 6 <template>
7 <style include="internet-shared"> 7 <style include="internet-shared">
8 paper-input-container {
9 -webkit-margin-start: 10px;
10 margin-bottom: -12px;
11 margin-top: -8px;
dschuyler 2016/07/28 22:03:55 Can you tell me more about what this is doing? Ot
stevenjb 2016/07/28 22:15:50 Yes, it is realigning the paper input container (w
12 }
13
8 #port { 14 #port {
9 width: 50px; 15 width: 50px;
10 } 16 }
11 </style> 17 </style>
12 <div class="layout horizontal center"> 18 <div class="layout horizontal center">
13 <div class="flex">[[label]]</div> 19 <div class="flex">[[label]]</div>
14 <paper-input-container no-label-float> 20 <paper-input-container no-label-float>
15 <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]" 21 <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]"
16 on-blur="onValueChange_"> 22 on-blur="onValueChange_">
17 </paper-input-container> 23 </paper-input-container>
18 <div>Port</div> 24 <div>Port</div>
19 <paper-input-container no-label-float id="port"> 25 <paper-input-container no-label-float id="port">
20 <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]" 26 <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]"
21 on-blur="onValueChange_"> 27 on-blur="onValueChange_">
22 </paper-input-container> 28 </paper-input-container>
23 </div> 29 </div>
24 </template> 30 </template>
25 <script src="network_proxy_input.js"></script> 31 <script src="network_proxy_input.js"></script>
26 </dom-module> 32 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698