searxng/searx/static/themes/simple/src/less/autocomplete.less

73 lines
1.2 KiB
Plaintext
Raw Normal View History

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