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

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

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: move unrelated fix to another CL 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/autofill_section.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
index 5288cc65da8ee39c7eb1eb98025f85691793c21f..6b568c3e75de720627d2977c8c6d4089e7e9b504 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
@@ -6,7 +6,7 @@
<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.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="../i18n_setup.html">
<link rel="import" href="../settings_shared_css.html">
<link rel="import" href="../controls/extension_controlled_indicator.html">
@@ -102,9 +102,10 @@
</span>
</div>
<template is="dom-if" if="[[item.metadata.isLocal]]">
- <paper-icon-button id="addressMenu" icon="cr:more-vert"
- on-tap="onAddressMenuTap_" title="$i18n{moreActions}">
- </paper-icon-button>
+ <button is="paper-icon-button-light" id="addressMenu"
+ class="icon-more-vert" on-tap="onAddressMenuTap_"
+ title="$i18n{moreActions}">
+ </button>
</template>
<template is="dom-if" if="[[!item.metadata.isLocal]]">
<button is="paper-icon-button-light" class="icon-external"
@@ -161,9 +162,10 @@
<div id="creditCardExpiration"
class="expiration-date">[[expiration_(item)]]</div>
<template is="dom-if" if="[[showDots_(item.metadata)]]">
- <paper-icon-button id="creditCardMenu" icon="cr:more-vert"
- on-tap="onCreditCardMenuTap_" title="$i18n{moreActions}">
- </paper-icon-button>
+ <button is="paper-icon-button-light" id="creditCardMenu"
+ class="icon-more-vert" title="$i18n{moreActions}"
+ on-tap="onCreditCardMenuTap_">
+ </button>
</template>
<template is="dom-if" if="[[!showDots_(item.metadata)]]">
<button is="paper-icon-button-light" class="icon-external"

Powered by Google App Engine
This is Rietveld 408576698