-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuggest.css
71 lines (61 loc) · 917 Bytes
/
suggest.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
70
71
#search_suggest
{
position:absolute;
background:#ffffff;
text-align:left;
border:1px solid #91A8B4;
width:265px;
top:200px;
left:757px;
z-index:100001;
padding:0;
margin:0;
clear:left;
}
#search_suggest ol{
margin:0;
padding:0;
display:block;
}
#search_suggest ol li{
margin:0;
padding:0;
clear:both;
overflow:hidden;
float:left;
font-size:12px;
line-height:18px;
padding:0 5px;
width:255px;
display:list-item;
}
#search_suggest li.selected {
background-color:#3366CC;
color:white;
cursor:default;
}
#search_suggest li.selected span {
color:white;
cursor:default;
}
#search_suggest li.selected span {
color:white;
cursor:default;
}
#search_suggest li {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
display:list-item;
}
.suggest-key {
float:left;
padding-left:5px;
text-align:left;
}
.suggest-result{
color:green;
float:right;
padding-right:5px;
text-align:right;
}