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

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

Issue 2161743002: MD Settings: Fix paper/iron dropdown alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 83e68f8af4c594fda833807c7ed9ce4457f53ac2..e941ace32d9d3868e283365df0a3a35234c171f5 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
@@ -43,7 +43,7 @@
value="{{item.cardNumber}}" always-float-label></paper-input>
<label>$i18n{creditCardExpiration}</label>
<paper-dropdown-menu class="month-dropdown" no-label-float
- label="$i18n{creditCardExpirationMonth}">
+ vertical-align="auto" label="$i18n{creditCardExpirationMonth}">
<paper-listbox class="dropdown-content months"
selected="{{item.expirationMonth}}" attr-for-selected="name">
<template is="dom-repeat" items="[[monthList_]]">
@@ -54,7 +54,7 @@
</paper-listbox>
</paper-dropdown-menu>
<paper-dropdown-menu class="year-dropdown" no-label-float
- label="$i18n{creditCardExpirationYear}">
+ vertical-align="auto" label="$i18n{creditCardExpirationYear}">
<paper-listbox id="yearList" class="dropdown-content years"
selected="{{item.expirationYear}}" attr-for-selected="name">
<template is="dom-repeat" items="[[yearList_]]">

Powered by Google App Engine
This is Rietveld 408576698