-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauto.complete.css
More file actions
46 lines (46 loc) · 826 Bytes
/
auto.complete.css
File metadata and controls
46 lines (46 loc) · 826 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
.ac_input {
width: 500px;
}
.ac_results {
width: 200px;
background: #eee;
cursor: pointer;
position: absolute;
left: 0;
font-size: 90%;
z-index: 101;
text-align:left;
}
.ac_results ul {
width: 200px;
list-style-position: outside;
list-style: none;
padding: 0;
margin: 0;
border: 1px solid #000;
}
.ac_results iframe
{
display:none;/*sorry for IE5*/
display/**/:block;/*sorry for IE5*/
position:absolute;
top:0;
left:0;
z-index:-1;
filter:mask();
width:3000px;
height:3000px;
}
.ac_results li {
width: 190px;
padding: 2px 5px;
}
.ac_results a {
width: 100%;
}
.ac_loading {
background : url('indicator.gif') right center no-repeat;
}
.over {
background: #739FDF;
}