AutoSuggest: improve contrast for highlighted item

This commit is contained in:
Aaron van Geffen 2023-11-11 15:09:25 +01:00
parent 5c5e4fbdd7
commit baf53ed42b
1 changed files with 3 additions and 2 deletions

View File

@ -364,7 +364,7 @@ div.polaroid a {
}
.autosuggest {
background: var(--bs-body-bg);
border: 1px solid #ccc;
border: 1px solid var( --bs-border-color);
color: var(--bs-body-color);
position: absolute;
left: 2px;
@ -377,7 +377,8 @@ div.polaroid a {
padding: 3px 8px;
}
.autosuggest li:hover, .autosuggest li.selected {
background: #CFECF7;
background-color: #990b0b;
color: #eee;
cursor: pointer;
}