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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: add images in shared location to grd files Created 3 years, 6 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/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">

Powered by Google App Engine
This is Rietveld 408576698