More consistent coloring for autocomplete

This commit is contained in:
JC Brand 2018-08-15 10:06:57 +02:00
parent 324ffd5e40
commit f3d14a00c2
2 changed files with 6 additions and 6 deletions

View File

@ -9149,15 +9149,15 @@ body.reset {
color: white; }
#conversejs .suggestion-box > ul > li[aria-selected="true"],
#conversejs div.awesomplete > ul > li[aria-selected="true"] {
background: #3d6d8f;
background: #A53214;
color: white; }
#conversejs .suggestion-box li:hover mark,
#conversejs div.awesomplete li:hover mark {
background: #A53214;
background: #D24E2B;
color: white; }
#conversejs .suggestion-box li[aria-selected="true"] mark,
#conversejs div.awesomplete li[aria-selected="true"] mark {
background: #3d6b00;
background: #E77051;
color: inherit; }
#conversejs.converse-fullscreen .suggestion-box__results--above {

View File

@ -122,19 +122,19 @@
.suggestion-box > ul > li[aria-selected="true"],
div.awesomplete > ul > li[aria-selected="true"] {
background: hsl(205, 40%, 40%);
background: $darkest-red;
color: white;
}
.suggestion-box li:hover mark,
div.awesomplete li:hover mark {
background: $darkest-red;
background: $dark-red;
color: $inverse-link-color;
}
.suggestion-box li[aria-selected="true"] mark,
div.awesomplete li[aria-selected="true"] mark {
background: hsl(86, 100%, 21%);
background: $red;
color: inherit;
}
}