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

75 lines
1.2 KiB
Text
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
.autocomplete {
position: absolute;
width: @search-width;
max-height: 0;
overflow-y: hidden;
.ltr-text-align-left();
.rounded-corners;
&:active,
&:focus,
&:hover {
background-color: var(--color-autocomplete-background);
}
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: 0.5rem 1rem;
2017-02-12 14:06:01 +00:00
&.active,
&:active,
&:focus,
&:hover {
background-color: var(--color-autocomplete-background-hover);
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: var(--color-autocomplete-background);
color: var(--color-autocomplete-font);
border: 1px solid var(--color-autocomplete-border);
max-height: 32rem;
overflow-y: auto;
z-index: 100;
margin-top: 3.2rem;
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: @phone) {
2017-02-12 14:06:01 +00:00
.autocomplete {
width: 100%;
2017-02-12 14:06:01 +00:00
> ul > li {
padding: 1rem;
}
2017-02-12 14:06:01 +00:00
}
}