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" |