| Index: chrome/browser/resources/settings/internet_page/network_proxy_input.html
|
| diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_input.html b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
|
| index f2688a05ec8ea7a3ee3e131331446b6023eede1d..b6dcdacb3fe5f63570d3ef239cc5c27d20204624 100644
|
| --- a/chrome/browser/resources/settings/internet_page/network_proxy_input.html
|
| +++ b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
|
| @@ -1,30 +1,25 @@
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
|
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input-container.html">
|
| +<link rel="import" href="internet_shared_css.html">
|
|
|
| <dom-module id="network-proxy-input">
|
| <template>
|
| - <style>
|
| + <style include="internet-shared">
|
| #port {
|
| width: 50px;
|
| }
|
| -
|
| - span {
|
| - -webkit-margin-end: 5px;
|
| - }
|
| -
|
| - paper-input {
|
| - margin: -9px 5px 0;
|
| - }
|
| </style>
|
| - <div id="outer" class="layout horizontal">
|
| - <span class="flex">[[label]]</span>
|
| - <paper-input no-label-float id="url" disabled="[[!editable]]"
|
| - value="{{value.Host}}" on-blur="onValueChange_">
|
| - </paper-input>
|
| - <span>Port</span>
|
| - <paper-input no-label-float id="port" disabled="[[!editable]]"
|
| - value="{{value.Port}}" on-blur="onValueChange_">
|
| - </paper-input>
|
| + <div class="layout horizontal center">
|
| + <div class="flex">[[label]]</div>
|
| + <paper-input-container no-label-float>
|
| + <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]"
|
| + on-blur="onValueChange_">
|
| + </paper-input-container>
|
| + <div>Port</div>
|
| + <paper-input-container no-label-float id="port">
|
| + <input is="iron-input" value="{{value.Host}}" disabled="[[!editable]]"
|
| + on-blur="onValueChange_">
|
| + </paper-input-container>
|
| </div>
|
| </template>
|
| <script src="network_proxy_input.js"></script>
|
|
|