blob: 93f7df1ef0ec2db2d2b40110d41375ee8d3959cc (
plain)
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
|
/*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */
@background_color: white;
.autocomplete {
position: absolute;
max-height: 0;
overflow-y: hidden;
text-align: left;
&:active, &:focus, &:hover {
background-color: @background_color;
}
&:empty {
display: none;
}
> ul {
list-style-type: none;
margin: 0;
padding: 0;
> li {
cursor: pointer;
padding: 5px 0 5px 10px;
&.active, &:active, &:focus {
background-color: @color-base;
a:active, a:focus, a:hover {
text-decoration: none;
}
}
&.locked {
cursor: inherit;
}
}
}
&.open {
display: block;
background-color: @background_color;
border: 1px solid @color-base;
max-height: 500px;
overflow-y: auto;
z-index:100;
&:empty {
display: none;
}
}
}
@media screen and (max-width: @results-width) {
.autocomplete {
bottom: 0;
}
.autocomplete > ul > li {
padding: 7px 0 7px 10px;
border-bottom: 1px solid @color-result-top-border;
text-align: left;
}
}
|