-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathflexselect.css
More file actions
44 lines (40 loc) · 762 Bytes
/
flexselect.css
File metadata and controls
44 lines (40 loc) · 762 Bytes
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
.flexselect_dropdown {
display: none;
position: absolute;
z-index: 999999;
margin: 0;
padding: 0;
border: 1px solid WindowFrame;
max-height: 200px;
overflow-x: hidden;
overflow-y: auto;
background-color: Window;
color: WindowText;
text-align: left;
box-shadow: 0 6px 12px #ccc;
-webkit-box-shadow: 0 6px 12px #ccc;
}
.flexselect_dropdown ul {
width: 100%;
list-style-position: outside;
list-style: none;
padding: 0;
margin: 0;
}
.flexselect_dropdown li {
margin: 0px;
padding: 2px 5px;
cursor: pointer;
display: block;
width: 100%;
font: Menu;
overflow: hidden;
}
.flexselect_dropdown li.disabled {
cursor: not-allowed;
color: GrayText;
}
.flexselect_selected {
background-color: Highlight;
color: HighlightText;
}