From 5a09c25647634af8eaf931d786421302d6da1c57 Mon Sep 17 00:00:00 2001 From: Tomas Dittmann Date: Tue, 5 Apr 2022 13:46:53 +0200 Subject: [PATCH] use inverse background color for result_title In dark theme, the black color was not easily readable. With additional high contrast mode, the title could not be read at all. This change uses the inverse background color and should be readable in both cases. As long as there's only these two themes available, this solution should suffice Signed-off-by: Tomas Dittmann --- css/fulltextsearch.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/fulltextsearch.css b/css/fulltextsearch.css index 17062423..7a0c0089 100644 --- a/css/fulltextsearch.css +++ b/css/fulltextsearch.css @@ -183,7 +183,7 @@ input.options_small { } .result_title { - color: #000; + color: -1 * var(--color-main-background); } .result_extract {