Fix pointer glitch on Firefox 67.0.4

Using :hover to set cursor to pointer is redundant as using without has the same function. Using :hover also causes problems on Firefox 67.0.4 where the cursor will have artifacts around it.
This commit is contained in:
Slash 2019-07-02 09:46:40 -04:00 committed by GitHub
parent 13685fd297
commit ad298bea20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -916,6 +916,11 @@ p.mentioned span.chatmessage {
.wdt-emoji-picker { .wdt-emoji-picker {
bottom: 16px; bottom: 16px;
right: 42px; right: 42px;
cursor: pointer;
}
.wdt-emoji-picker:hover {
cursor: initial;
} }
.wdt-emoji-picker span.emoji-outer.emoji-sizer { .wdt-emoji-picker span.emoji-outer.emoji-sizer {