forked from issa-tseng/awesomecomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathawesomecomplete.css
64 lines (53 loc) · 875 Bytes
/
awesomecomplete.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
/**
* Sample stylesheet for L'Autocomplete
* Clint Tseng — 2009-08-20
*/
/* Core styles */
ul.autocomplete
{
background-color: #fff;
border: 1px solid #777;
display: block;
list-style-type: none;
margin: 0;
min-height: 100px;
padding: 2px;
position: absolute;
}
ul.autocomplete li
{
border-top: 1px solid #aaa;
cursor: pointer;
padding: 4px;
}
ul.autocomplete li:first-child
{
border-top: none;
}
ul.autocomplete li.active
{
background-color: #eef;
}
/* Default render function styles */
ul.autocomplete li p
{
margin: 1px 4px;
}
ul.autocomplete li p.title
{
font-weight: bold;
}
ul.autocomplete li p.matchRow
{
color: #666;
}
ul.autocomplete li span.matchedField
{
color: #999;
font-style: italic;
}
ul.autocomplete span.match
{
font-weight: bold;
text-decoration: underline;
}