-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathselectField.css
70 lines (61 loc) · 1.33 KB
/
selectField.css
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
60
61
62
63
64
65
66
67
68
69
70
.select {
display: block;
border: 1px solid #e1e1e1;
color: #6a6a6a;
font-weight: bold;
border-radius: 2px;
cursor: pointer;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
}
.select:hover { border-color: #bbbbbb; }
.select:hover .right { color: #000; }
.select .right {
float: right;
padding: 8px;
}
.select .option {
padding: 8px;
display: none;
}
.select .option.selected {
display: block;
}
.select-dropdown {
border: 1px solid #bbbbbb;
position: absolute;
background-color: #fff;
box-shadow: 0px 5px 15px #ccc;
-moz-box-shadow: 0px 5px 15px #ccc;
-ms-box-shadow: 0px 5px 15px #ccc;
-webkit-box-shadow: 0px 5px 15px #ccc;
-o-box-shadow: 0px 5px 15px #ccc;
border-radius: 2px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
margin-top: -2px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: auto;
max-height: 200px;
}
.select-dropdown.hidden { display: none; }
.select-dropdown a {
color: #000;
display: block;
padding: 8px;
border-bottom: 1px solid #e1e1e1;
color: #333;
text-decoration: none;
}
.select-dropdown a:hover {
background-color: #eee;
color: #000;
}
.select-dropdown a:last-child { border-bottom: none; }