From ad298bea20a26cf1617b930afb358d5496597c43 Mon Sep 17 00:00:00 2001 From: Slash <25337749+slashpowered@users.noreply.github.com> Date: Tue, 2 Jul 2019 09:46:40 -0400 Subject: [PATCH] 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. --- webapp/titanembeds/static/css/embed.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webapp/titanembeds/static/css/embed.css b/webapp/titanembeds/static/css/embed.css index 2c86bb7..573e1c3 100644 --- a/webapp/titanembeds/static/css/embed.css +++ b/webapp/titanembeds/static/css/embed.css @@ -916,6 +916,11 @@ p.mentioned span.chatmessage { .wdt-emoji-picker { bottom: 16px; right: 42px; + cursor: pointer; +} + +.wdt-emoji-picker:hover { + cursor: initial; } .wdt-emoji-picker span.emoji-outer.emoji-sizer {