Change autocomplete colors

pull/2/head
Alexandre Iooss 3 years ago
parent c8496ac6d9
commit 97ef021647

@ -7,28 +7,27 @@
position: absolute;
z-index: 100;
padding: 0;
top: 60px;
top: $navbar-height;
right: 0;
width: 18rem;
}
.autoComplete_result {
margin: 0.15rem auto;
margin: 0 auto;
padding: 0.6rem;
max-width: 280px;
list-style: none;
color: #7b7b7b;
transition: all 0.1s ease-in-out;
background-color: #fff;
background-color: darken($background-base-color, 6);
border-bottom: solid 1px $background-base-color;
}
.autoComplete_result:hover,
.autoComplete_result:focus,
.autoComplete_selected {
background-color: rgba(255, 248, 248, 0.9);
background-color: $background-base-color;
}
.autoComplete_highlighted {
color: rgba(255, 122, 122, 1);
color: $primary;
font-weight: 700;
}

Loading…
Cancel
Save