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

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

Issue 2384273005: MD Settings: Style native <select> down arrow. (Closed)
Patch Set: md-select-underline Created 4 years, 2 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 37dc62f8714a7ea0d79361e447b2ccbe028756f8..a31c7968e4a27abcebd0e1d77aa8ec5afbd91fc6 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
@@ -12,7 +12,7 @@
width: var(--paper-input-max-width);
}
- .select-wrapper + .select-wrapper {
+ .md-select-wrapper + .md-select-wrapper {
-webkit-margin-start: 16px;
}
@@ -40,23 +40,23 @@
value="{{creditCard.cardNumber}}" always-float-label>
</paper-input>
<label>$i18n{creditCardExpiration}</label>
- <span class="select-wrapper">
- <select id="month" value="[[expirationMonth_]]"
+ <span class="md-select-wrapper">
+ <select class="md-select" id="month" value="[[expirationMonth_]]"
on-change="onMonthChange_">
<template is="dom-repeat" items="[[monthList_]]">
<option>[[item]]</option>
</template>
</select>
- <span class="select-underline"></span>
+ <span class="md-select-underline"></span>
</span>
- <span class="select-wrapper">
- <select id="year" value="[[expirationYear_]]"
+ <span class="md-select-wrapper">
+ <select class="md-select" id="year" value="[[expirationYear_]]"
on-change="onYearChange_">
<template is="dom-repeat" items="[[yearList_]]">
<option>[[item]]</option>
</template>
</select>
- <span class="select-underline"></span>
+ <span class="md-select-underline"></span>
</span>
</div>
<div class="button-container">

Powered by Google App Engine
This is Rietveld 408576698