From 1e59dcdb6cbf75d3a8f4f666a6fdec178ac1c197 Mon Sep 17 00:00:00 2001 From: Nick Korotysh Date: Tue, 11 Feb 2020 22:40:07 +0300 Subject: [PATCH] Inherit text color for filter list elements Filter list (left side panel) in WebUI is implemented using tags, CSS defines default style for all elements, and specific style for filter list elements. Default style for elements sets color, and this color also used in list. This is looks not so well. So lets just inherit text color from parent element, and as so as it is not set, so default text color will be used. This makes filter list looks like other UI elemets, making all UI more consistent (like in desktop app). --- src/webui/www/private/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webui/www/private/css/style.css b/src/webui/www/private/css/style.css index ee027d3d1..b426aca8b 100644 --- a/src/webui/www/private/css/style.css +++ b/src/webui/www/private/css/style.css @@ -457,6 +457,7 @@ ul.filterList a { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + color: inherit; } ul.filterList li:hover {