-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (45 loc) · 842 Bytes
/
style.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
.acResults {
/*
This is the autocomplete window's maximum height.
Viewing results past this height will require scrolling.
To disable scrolling inside the autocomplete window, either remove the
following line or override it with something else.
*/
max-height: 200px;
z-index: 1;
word-wrap: break-word;
white-space: normal;
color: black;
text-align: left;
overflow-y: auto;
}
.acResults > ul {
display: table;
border-collapse: collapse;
width: 100%;
}
.acResults > ul > li {
display: table-row;
vertical-align: middle;
}
.acResults > ul > li > * {
display: table-cell;
padding: 2px;
}
.acTagName {
width: 100%;
word-break: break-all;
}
.acTagCount {
vertical-align: middle;
text-align: center;
}
.acResults li:not(.acSelect) .acTagCount {
color: gray;
}
.acSelect {
color: white;
}
.acLoading {
background: none;
}