From 844a81055ed2ed47bac60534de4458e3b70f37e4 Mon Sep 17 00:00:00 2001 From: Gusted Date: Fri, 12 Feb 2021 16:39:21 +0100 Subject: [PATCH] Fix dark control arrows - Fixes the behavior in the dark mode where revert control arrows aren't visible. - Invert the arrows when in dark mode with `filter: invert(100%)` - Resolves #2738 --- src/skin/popup.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/skin/popup.css b/src/skin/popup.css index 2c45cd3352..cd54094b83 100644 --- a/src/skin/popup.css +++ b/src/skin/popup.css @@ -548,4 +548,7 @@ div.overlay.active { background-color: #333; border: solid 2px #ddd; } + .userset .honeybadgerPowered { + filter: invert(100%); + } }