autocompleter.css
1015 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
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
/**
* Simplecomplete
*/
.autocompleter {
width: 20%;
background: #ffffff;
position: relative;
z-index: 100;
}
.autocompleter,
.autocompleter-hint {
position: absolute;
}
.autocompleter-list {
box-shadow: inset 0px 0px 6px rgba(0,0,0,0.1);
list-style: none;
margin: 0;
padding: 0;
text-align: left;
}
.autocompleter-item-selected {
background: #ffffff;
}
.autocompleter-item {
padding: 6px 12px;
color: #444444;
font-size: 14px;
cursor: pointer;
}
.autocompleter-item:hover {
background: #ddd;
}
.autocompleter-item strong {
background: #f9de8f;
text-shadow: 0 1px 0 #ffffff;
}
.autocompleter-item span {
color: #bbbbbb;
}
.autocompleter-hint {
color: #ccc;
text-align: left;
top: -56px;
font-weight: 400;
left: 0;
width: 100%;
padding: 12px 12px 12px 13px;
font-size: 24px;
display: none;
}
.autocompleter-hint span {
color: transparent;
}
.autocompleter-closed {
display: none;
}