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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.html

Issue 2856933004: ChromeOS OOBE: Fix language and keyboard md-select look. (Closed)
Patch Set: Nits. Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/md_select_css.html"> 1 <link rel="import" href="chrome://resources/html/md_select_css.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
4 3
5 <dom-module id="oobe-i18n-dropdown"> 4 <dom-module id="oobe-i18n-dropdown">
6 <template> 5 <template>
7 <link rel="stylesheet" href="oobe_i18n_dropdown.css"> 6 <link rel="stylesheet" href="oobe_i18n_dropdown.css">
8 <style include="md-select"></style> 7 <style include="md-select"></style>
9 <div id="container" 8 <div id="container" class="md-select-wrapper">
10 class="flex vertical layout center center-justified md-select-wrapper">
11 <select id="select" aria-label$="[[labelForAria]]" class="md-select" > 9 <select id="select" aria-label$="[[labelForAria]]" class="md-select" >
12 </select> 10 </select>
13 <span class="md-select-underline"></span> 11 <span class="md-select-underline"></span>
14 </div> 12 </div>
15 </template> 13 </template>
16 </dom-module> 14 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698