From 403b7c7c3583cd71b04549df3886010bc0c28b22 Mon Sep 17 00:00:00 2001 From: skomerko <168652295+skomerko@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:13:50 +0200 Subject: [PATCH] WebUI: Use proper text color to highlight items in all filter lists Previously, text color of selected filter items was not applied correctly in all situations, making them difficult to read. This improves existing styles so that text is always correctly distinguished from the background. This fixes issue from second post in https://github.com/qbittorrent/qBittorrent/issues/21426 PR #21507. --- src/webui/www/private/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/css/style.css b/src/webui/www/private/css/style.css index 97e2314a5..c34a3a52e 100644 --- a/src/webui/www/private/css/style.css +++ b/src/webui/www/private/css/style.css @@ -529,7 +529,7 @@ ul.filterList { ul.filterList a, ul.filterList span.link { - color: var(--color-text-default); + color: inherit; cursor: pointer; display: block; overflow: hidden;