-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery-multiselect.css
More file actions
47 lines (46 loc) · 3.01 KB
/
jquery-multiselect.css
File metadata and controls
47 lines (46 loc) · 3.01 KB
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
div.multiselect {
overflow: auto;
width: 100%;
height: 238px;
background: -moz-linear-gradient(top, rgba(234,234,234,0) 0%, rgba(210,210,210,0.65) 17%, rgba(201,201,201,0.6) 23%, rgba(176,237,175,0.28) 64%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(234,234,234,0)), color-stop(17%,rgba(210,210,210,0.65)), color-stop(23%,rgba(201,201,201,0.6)), color-stop(64%,rgba(176,237,175,0.28)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(234,234,234,0) 0%,rgba(210,210,210,0.65) 17%,rgba(201,201,201,0.6) 23%,rgba(176,237,175,0.28) 64%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(234,234,234,0) 0%,rgba(210,210,210,0.65) 17%,rgba(201,201,201,0.6) 23%,rgba(176,237,175,0.28) 64%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(234,234,234,0) 0%,rgba(210,210,210,0.65) 17%,rgba(201,201,201,0.6) 23%,rgba(176,237,175,0.28) 64%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(top, rgba(234,234,234,0) 0%,rgba(210,210,210,0.65) 17%,rgba(201,201,201,0.6) 23%,rgba(176,237,175,0.28) 64%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00eaeaea', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
div.multiselect div.multiselect_container {
float: left;
width: 85px;
margin: 0;
background: -moz-linear-gradient(top, rgba(176,237,175,0.65) 0%, rgba(234,234,234,0.4) 38%, rgba(0,0,0,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(176,237,175,0.65)), color-stop(38%,rgba(234,234,234,0.4)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(176,237,175,0.65) 0%,rgba(234,234,234,0.4) 38%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(176,237,175,0.65) 0%,rgba(234,234,234,0.4) 38%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(176,237,175,0.65) 0%,rgba(234,234,234,0.4) 38%,rgba(0,0,0,0) 100%); /* IE10+ */
background: linear-gradient(top, rgba(176,237,175,0.65) 0%,rgba(234,234,234,0.4) 38%,rgba(0,0,0,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6b0edaf', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
div.multiselect div.multiselect_container div {
word-wrap: break-word;
border: 1px solid #efefef;
padding: 1px;
}
div.multiselect div.multiselect_container div:hover {
background: #ccc;
cursor: pointer;
}
div.multiselect div.multiselect_container div.sub {
border-top: 0;
}
div.multiselect div.multiselect_container div.on {
font-weight: bold;
}
div.multiselect div.multiselect_container div.off {
font-weight: normal;
}
div.multiselect div.multiselect_container div:first-child {
}
div.multiselect div.multiselect_container input {
}