From 8110d8a4ecda48c34d31676598de04c7805e4a1f Mon Sep 17 00:00:00 2001 From: jensfr1 Date: Mon, 29 Jun 2026 18:30:50 +0200 Subject: [PATCH] Improve poll meter bar contrast in dark mode The dark mode override used a faint translucent white (34% opacity) that was barely distinguishable from the track. Use the accent color (--wcfContentLink) so the filled portion is clearly visible, matching the visibility of the light mode bar. Resolves #5925 --- wcfsetup/install/files/style/ui/poll.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/style/ui/poll.scss b/wcfsetup/install/files/style/ui/poll.scss index 1ed26e09858..3fdbd4e5c2c 100644 --- a/wcfsetup/install/files/style/ui/poll.scss +++ b/wcfsetup/install/files/style/ui/poll.scss @@ -97,5 +97,5 @@ } html[data-color-scheme="dark"] .pollMeterValue { - background-color: rgb(255 255 255 / 34%); + background-color: var(--wcfContentLink); }