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

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: Addressing comments. 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..90ab541483b9e245cb5adac630aaabde81f45430 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
@@ -41,7 +41,7 @@
</paper-input>
<label>$i18n{creditCardExpiration}</label>
<span class="select-wrapper">
- <select id="month" value="[[expirationMonth_]]"
+ <select class="md-select" id="month" value="[[expirationMonth_]]"
on-change="onMonthChange_">
<template is="dom-repeat" items="[[monthList_]]">
<option>[[item]]</option>
@@ -50,7 +50,7 @@
<span class="select-underline"></span>
</span>
<span class="select-wrapper">
- <select id="year" value="[[expirationYear_]]"
+ <select class="md-select" id="year" value="[[expirationYear_]]"
on-change="onYearChange_">
<template is="dom-repeat" items="[[yearList_]]">
<option>[[item]]</option>

Powered by Google App Engine
This is Rietveld 408576698