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

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

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: format Created 3 years, 8 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/passwords_section.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
index ac37e5665c70b7992f7a6f812f26dc60ae00c22d..622a6c751e49fcdf227211b43ab63a47c345780e 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
@@ -4,7 +4,7 @@
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.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="../controls/settings_toggle_button.html">
<link rel="import" href="../controls/extension_controlled_indicator.html">
<link rel="import" href="../controls/settings_toggle_button.html">
@@ -131,10 +131,10 @@
</span>
</template>
</div>
- <paper-icon-button id="passwordMenu" icon="cr:more-vert"
- on-tap="onPasswordMenuTap_" title="$i18n{moreActions}"
- tabindex$="[[tabIndex]]">
- </paper-icon-button>
+ <button is="paper-icon-button-light" id="passwordMenu"
+ class="icon-more-vert" on-tap="onPasswordMenuTap_"
+ title="$i18n{moreActions}" tabindex$="[[tabIndex]]">
+ </button>
</div>
</template>
</iron-list>
@@ -165,11 +165,11 @@
<a id="exception" href="[[item.urls.link]]" target="_blank"
class="selectable">[[item.urls.shown]]</a>
</div>
- <paper-icon-button id="removeExceptionButton"
- icon="cr:close" on-tap="onRemoveExceptionButtonTap_"
+ <button is="paper-icon-button-light" id="removeExceptionButton"
+ class="icon-clear" on-tap="onRemoveExceptionButtonTap_"
tabindex$="[[tabIndex]]"
title="$i18n{deletePasswordException}">
- </paper-icon-button>
+ </button>
</div>
</template>
<div id="noExceptionsLabel" class="list-item"

Powered by Google App Engine
This is Rietveld 408576698