| 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 45c69f23c67c27cfbe702c8a133878401a5d95bc..f8e61803a3b1083ddf2d812e588006bdbdd1d614 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
|
| @@ -3,7 +3,7 @@
|
| <link rel="import" href="chrome://resources/html/action_link_css.html">
|
| <link rel="import" href="chrome://resources/html/i18n_behavior.html">
|
| <link rel="import" href="chrome://resources/html/polymer.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">
|
| @@ -99,9 +99,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"
|
| @@ -158,9 +159,10 @@
|
| <div id="creditCardExpiration"
|
| class="expiration-date">[[expiration_(item)]]</div>
|
| <template is="dom-if" if="[[item.metadata.isLocal]]">
|
| - <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="[[!item.metadata.isLocal]]">
|
| <button is="paper-icon-button-light" class="icon-external"
|
|
|