forked from fitiskin/jquery-autocompleter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.autocompleter.css
60 lines (48 loc) · 967 Bytes
/
jquery.autocompleter.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
/*
* jquery-autocompleter v0.1.10 - 2015-01-22
* Simple, easy, customisable and with localStorage cache support.
* https://github.com/ArtemFitiskin/jquery-autocompleter
*
* Copyright 2015 Artem Fitiskin; MIT Licensed
*/
.autocompleter {
width: 100%;
display: none;
}
.autocompleter-show {
display: block;
}
.autocompleter,
.autocompleter-hint {
position: absolute;
}
.autocompleter-list {
list-style: none;
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.autocompleter-item {
cursor: pointer;
}
.autocompleter-item:hover {
/* Hover State */
}
.autocompleter-item-selected {
/* Selected State */
}
.autocompleter-item strong {
/* Highlight Matches */
}
.autocompleter-hint {
width: 100%;
display: none;
/** Need absolute position over input text */
}
.autocompleter-hint-show {
display: block;
}
.autocompleter-hint span {
color: transparent;
}