| Index: chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
|
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
|
| index 073876295756e95ba8ed78404d8b8eb82d800c2a..f50715e8a66c8d13eb3635bc5c7b0e7c390b3ba5 100644
|
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
|
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
|
| @@ -1,7 +1,8 @@
|
| <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html">
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
| +<link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
|
| <link rel="import" href="../icons.html">
|
| <link rel="import" href="../settings_shared_css.html">
|
| @@ -54,12 +55,13 @@
|
| value="[[getPassword_(item, password)]]" readonly
|
| on-tap="onReadonlyInputTap_">
|
| </paper-input>
|
| - <paper-icon-button id="showPasswordButton"
|
| + <button is="paper-icon-button-light" id="showPasswordButton"
|
| hidden$="[[item.federationText]]"
|
| - icon="settings:visibility" on-tap="onShowPasswordButtonTap_"
|
| + on-tap="onShowPasswordButtonTap_"
|
| title="[[showPasswordTitle_(password,
|
| '$i18nPolymer{hidePassword}','$i18nPolymer{showPassword}')]]">
|
| - </paper-icon-button>
|
| + <iron-icon icon="settings:visibility"></iron-icon>
|
| + </button>
|
| </div>
|
| </div>
|
| <div class="button-container">
|
|
|