| 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 febfe0a5fc11cb267fdc3e92725839c79bfb2c4f..2003a325fb4762adbcbc945fda17903fa5258938 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
|
| @@ -2,7 +2,7 @@
|
|
|
| <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.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">
|
| @@ -32,10 +32,6 @@
|
| paper-input {
|
| width: var(--paper-input-max-width);
|
| }
|
| -
|
| - paper-icon-button {
|
| - --iron-icon-fill-color: var(--paper-grey-600);
|
| - }
|
| </style>
|
| <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}">
|
| <div class="title">$i18n{passwordDetailsTitle}</div>
|
| @@ -55,12 +51,12 @@
|
| value="[[getPassword_(item, password)]]" readonly
|
| on-tap="onReadonlyInputTap_">
|
| </paper-input>
|
| - <paper-icon-button id="showPasswordButton"
|
| - hidden$="[[item.federationText]]"
|
| - icon="settings:visibility" on-tap="onShowPasswordButtonTap_"
|
| + <button is="paper-icon-button-light" id="showPasswordButton"
|
| + class="icon-visibility" hidden$="[[item.federationText]]"
|
| + on-tap="onShowPasswordButtonTap_"
|
| title="[[showPasswordTitle_(password,
|
| '$i18nPolymer{hidePassword}','$i18nPolymer{showPassword}')]]">
|
| - </paper-icon-button>
|
| + </button>
|
| </div>
|
| </div>
|
| <div class="button-container">
|
|
|