From 5762799d18de7e2e2063a4a649ce855ab89b8b5e Mon Sep 17 00:00:00 2001 From: Joelute Date: Thu, 2 Mar 2023 22:52:36 -0500 Subject: [PATCH] popovers: Remove background when hovering Github username. When someone hovers over the Github username in the popover with dark theme, a background will appear. These changes ensures that the `background-color` isn't overwritten by other CSS. --- web/styles/popovers.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index 7591b15a17..c6d25c3743 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -84,11 +84,11 @@ padding-bottom: 0; &:hover { - background-color: transparent; + background-color: transparent !important; } &:focus { - background-color: transparent; + background-color: transparent !important; } } }