You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
657 B
SCSS

#autoComplete {
position: relative;
width: 10rem;
}
#autoComplete_list {
position: absolute;
z-index: 100;
padding: 0;
top: $navbar-height;
right: 0;
width: 18rem;
}
.autoComplete_result {
margin: 0 auto;
padding: 0.6rem;
max-width: 280px;
list-style: none;
background-color: darken($background-base-color, 6);
border-bottom: solid 1px $background-base-color;
}
.autoComplete_result:hover,
.autoComplete_result:focus,
.autoComplete_selected {
background-color: $background-base-color;
}
.autoComplete_highlighted {
color: $primary;
font-weight: 700;
}