typeahead: Prevent blue styling from mouse hover on typeahead item.

This commit is contained in:
evykassirer 2024-09-30 17:54:48 -07:00 committed by Tim Abbott
parent f325e15439
commit 83dc7fc4d9
2 changed files with 3 additions and 2 deletions

View File

@ -195,7 +195,7 @@ const HEADER_ELEMENT_HTML =
'<p class="typeahead-header"><span id="typeahead-header-text"></span></p>';
const CONTAINER_HTML = '<div class="typeahead dropdown-menu"></div>';
const MENU_HTML = '<ul class="typeahead-menu" data-simplebar></ul>';
const ITEM_HTML = "<li><a></a></li>";
const ITEM_HTML = '<li class="typeahead-item"><a class="typeahead-item-link"></a></li>';
const MIN_LENGTH = 1;
export type TypeaheadInputElement =

View File

@ -18,7 +18,8 @@
.button,
.compose_control_button,
.conversation-partners,
.user-presence-link
.user-presence-link,
.typeahead-item-link
):hover {
color: hsl(200deg 79% 66%);
text-decoration: none;