-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjquery.lwMultiSelect.css
69 lines (56 loc) · 1.57 KB
/
jquery.lwMultiSelect.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
/* multi select */
.lwms-main{font-family: Arial,Helvetica,sans-serif; background: url('doublearrow.png') no-repeat 204px 110px; width:435px;}
.lwms-main .lwms-left, .lwms-main .lwms-right{width: 200px; color: #555; float: left;}
.lwms-main .lwms-list{
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
border: 1px solid #ccc;
}
.lwms-selected{display:none;}
.lwms-main .lwms-left{margin-right: 35px;}
.lwms-main ul{margin: 0; list-style-type: none;}
.lwms-main ul.lwms-list{
height: 200px;
padding: 0px 0px;
overflow-y: auto;
background:#fff;
}
.lwms-main .lwms-left li.lwms-selectli,
.lwms-main .lwms-right li.lwms-selectli{
padding: 4px 10px;
color: #555;
font-size: 12px;
line-height:16px;
border-bottom:1px solid #D4D4D4;
}
.lwms-filterhead {
color: #4A4A4A;
font-size: 12px;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-top: 5px;
vertical-align: middle;
}
.lwms-filterhead a {
color: #4A4A4A;
text-decoration: none;
}
.lwms-filcount {
color: #078697;
font-size: 14px;
}
.lwms-filterhead a:hover { text-decoration: underline; }
.lwms-main li.lwms-selectli:hover,
.lwms-main .lwms-right li:hover{
cursor: pointer;
text-decoration: none;
color:#fff;
background-color: #1a849b;
}
/* clear fix */
.lwms-cf:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.lwms-cf { display: inline-block;}
html[xmlns] .lwms-cf {display: block;}
* html .lwms-cf { height: 1%;}