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/settings/select_css.html

Issue 2393463002: MD Settings: Rename select_css.html to md_select_css.html. (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="/settings_vars_css.html">
2
3 <dom-module id="select">
4 <template>
5 <style>
6 select {
7 background-color: transparent;
8 border-bottom: 1px solid var(--paper-grey-300);
9 border-left: none;
10 border-right: none;
11 border-top: none;
12 color: var(--primary-text-color);
13 cursor: pointer;
14 font-family: inherit;
15 font-size: inherit;
16 outline: none;
17 padding: 3px 0;
18 width: 200px;
19 }
20
21 .select-underline {
22 border-top: 2px solid var(--paper-indigo-500);
23 display: block;
24 position: relative;
25 top: -1px;
26 transform: scale3d(0, 1, 1);
27 transition: transform 200ms ease-in;
28 width: 100%;
29 }
30
31 select:focus + .select-underline {
32 transform: scale3d(1, 1, 1);
33 transition: transform 200ms ease-out;
34 }
35
36 .select-wrapper {
37 display: inline-block;
38 }
39 </style>
40 </template>
41 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698