mirror of https://github.com/zulip/zulip.git
typeahead: Prevent blue styling from mouse hover on typeahead item.
This commit is contained in:
parent
f325e15439
commit
83dc7fc4d9
|
@ -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 =
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue