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

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

Issue 2224613003: Switch MD Settings to paper-dropdown-menu-light (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@RollPaperDropdown
Patch Set: rebase Created 4 years, 4 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/credit_card_edit_dialog.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
index eef8e16014dde2f9097875298d0edce996e2c899..6fac49eaa04ce136746d8e4512f7a7476c76bbac 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
@@ -2,7 +2,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/paper-button/paper-button.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/paper-dropdown-menu.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/paper-dropdown-menu-light.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-listbox/paper-listbox.html">
<link rel="import" href="/settings_shared_css.html">
@@ -43,7 +43,7 @@
value="{{creditCard.cardNumber}}" always-float-label>
</paper-input>
<label>$i18n{creditCardExpiration}</label>
- <paper-dropdown-menu class="month-dropdown" no-label-float
+ <paper-dropdown-menu-light class="month-dropdown" no-label-float
vertical-align="auto" label="$i18n{creditCardExpirationMonth}">
<paper-listbox class="dropdown-content months"
selected="{{expirationMonth}}" attr-for-selected="name">
@@ -53,8 +53,8 @@
</button>
</template>
</paper-listbox>
- </paper-dropdown-menu>
- <paper-dropdown-menu class="year-dropdown" no-label-float
+ </paper-dropdown-menu-light>
+ <paper-dropdown-menu-light class="year-dropdown" no-label-float
vertical-align="auto" label="$i18n{creditCardExpirationYear}">
<paper-listbox id="yearList" class="dropdown-content years"
selected="{{expirationYear}}" attr-for-selected="name">
@@ -64,7 +64,7 @@
</button>
</template>
</paper-listbox>
- </paper-dropdown-menu>
+ </paper-dropdown-menu-light>
</div>
<div class="button-container">
<paper-button id="cancelButton" class="cancel-button"

Powered by Google App Engine
This is Rietveld 408576698