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

Side by Side Diff: third_party/polymer/components-chromium/core-dropdown/core-dropdown.css

Issue 592593002: Inline scripts were extracted from Polymer elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/echo ""/echo/ Created 6 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 :host {
2 position: relative;
3 display: inline-block;
4 background-color: #fff;
5 }
6
7 #control core-item {
8 margin-left: 12px;
9 max-width: inherit;
10 }
11
12 #control core-item::shadow #label {
13 overflow: hidden;
14 /* FIXME not working for some reason */
15 white-space: nowrap;
16 text-overflow: ellipsis;
17 }
18
19 #arrow {
20 margin: 0 12px;
21 }
22
23 #menu {
24 position: absolute;
25 left: 0;
26 margin: 0;
27 padding: 0 12px;
28 overflow: scroll;
29 -webkit-overflow-scrolling: touch;
30 background-color: #fff;
31 }
32
33 :host([halign="right"]) #menu {
34 left: auto;
35 right: 0;
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698