ct_autocompleter.css
830 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
.ct_auto_wrap{
position: relative;
}
.ct_autocompleter{
width: 230px;
border: 1px solid #cbcbcb;
position: absolute;
z-index: 99;
top: 46px;
background: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,.1);
display: none;
padding: 15px 0;
margin-bottom: 10px;
}
.ct_autocompleter>ul.item-list{
list-style: none;
padding-left: 0;
margin-bottom: 0;
}
.ct_autocompleter>ul.item-list>li.item{
padding: 5px 15px;
cursor: pointer;
}
.ct_autocompleter>ul.item-list>li.item.active{
background: #5bd460;
color: #fff;
outline: 0;
box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}
.ct_autocompleter>ul.item-list>li.item:first-child{
margin-top: 0;
}
.ct_autocompleter>ul.item-list>li.item:last-child{
margin-bottom: 0;
}