platypush/platypush/backend/http/webapp/src/style/autocomplete.scss

33 lines
620 B
SCSS

.autocomplete {
/*the container must be positioned relative:*/
position: relative;
display: inline-block;
}
.autocomplete-items {
position: absolute;
border: $default-border-2;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
div {
padding: 1em;
cursor: pointer;
border-bottom: $default-border-2;
background-color: $background-color;
&:hover {
background-color: $hover-bg-2;
}
}
}
.autocomplete-active {
background-color: $hover-bg-2 !important;
}