33 lines
657 B
SCSS
33 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;
|
|
}
|