-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.multiSelect.css
85 lines (71 loc) · 1.48 KB
/
jquery.multiSelect.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
a.multiSelect {
background: #FFF url(images/dropdown.blue.png) right center no-repeat;
border: solid 1px #BBB;
padding-right: 20px;
position: relative;
cursor: default;
text-decoration: none;
color: black;
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
}
a.multiSelect:link, a.multiSelect:visited, a.multiSelect:hover, a.multiSelect:active {
color: black;
text-decoration: none;
}
a.multiSelect span
{
margin: 1px 0px 1px 3px;
overflow: hidden;
display: -moz-inline-stack;
display: inline-block;
white-space: nowrap;
}
a.multiSelect.hover {
background-image: url(images/dropdown.blue.hover.png);
}
a.multiSelect.active,
a.multiSelect.focus {
border: inset 1px #000;
}
a.multiSelect.active {
background-image: url(images/dropdown.blue.active.png);
}
.multiSelectOptions {
margin-top: -1px;
overflow-y: auto;
overflow-x: hidden;
border: solid 1px #B2B2B2;
background: #FFF;
}
.multiSelectOptions LABEL {
padding: 0px 2px;
display: block;
white-space: nowrap;
}
.multiSelectOptions LABEL.optGroup
{
font-weight: bold;
}
.multiSelectOptions .optGroupContainer LABEL
{
padding-left: 10px;
}
.multiSelectOptions.optGroupHasCheckboxes .optGroupContainer LABEL
{
padding-left: 18px;
}
.multiSelectOptions input{
vertical-align: middle;
}
.multiSelectOptions LABEL.checked {
background-color: #dce5f8;
}
.multiSelectOptions LABEL.selectAll {
border-bottom: dotted 1px #CCC;
}
.multiSelectOptions LABEL.hover {
background-color: #3399ff;
color: white;
}