forked from vizlabs/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathac.css
More file actions
45 lines (37 loc) · 645 Bytes
/
ac.css
File metadata and controls
45 lines (37 loc) · 645 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
.ac-wrap {
position: absolute;
}
.ac-rwrap {
background-color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border: 1px solid #e6e6e9;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.ac-row {
padding: 7px 10px 5px 10px;;
border-bottom: 1px solid #e6e6e9;
}
.ac-row:hover {
background-color: #f2f2f4;
cursor: pointer;
}
.ac-row.selected {
background-color: #f9f9f9;
}
.ac-row:last-child {
border-bottom: none;
}
.ac-pr, .ac-sc {
vertical-align: baseline;
display: block;
}
.ac-pr {
font-size: 14px;
color: #3a3a48;
}
.ac-sc {
font-size: 12px;
padding-top: 5px;
color: #9d9da3;
}