Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / polymer / components / core-dropdown / core-dropdown.css
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 }