1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
menu {
display: none;
position: absolute;
border: 1px solid rgba(0, 0, 0, .50);
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, .50);
color: black;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#eee));
left: 0;
white-space: nowrap;
z-index: 2;
padding: 8px 0;
margin: 0;
cursor: default;
border-radius: 3px;
}
menu > * {
-webkit-box-sizing: border-box;
display: block;
margin: 0;
width: 100%;
text-align: start;
}
menu > :not(hr) {
-webkit-appearance: none;
background: transparent;
font: inherit;
border: 0;
line-height: 18px;
padding: 0 19px;
overflow: hidden;
text-overflow: ellipsis;
}
menu > hr {
background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)),
to(rgba(0, 0, 0, .02)));
border: 0;
height: 1px;
margin: 8px 0;
}
menu > [disabled] {
color: rgba(0, 0, 0, .3);
}
menu > [hidden] {
display: none;
}
menu > [selected] {
background-color: #dce5fa;
}
menu > [selected]:active {
background-color: #426dc9;
color: #fff;
}
|