From 640147a0632f699fc5094282b31d59ae209e4fb9 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Mon, 17 Jul 2017 09:27:30 +0200 Subject: [PATCH] GUI qss file: force text color to black to avoid white on white text problem with some KDE themes --- src/sampleconf/recoll.qss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sampleconf/recoll.qss b/src/sampleconf/recoll.qss index 31e07bb0..e4381793 100644 --- a/src/sampleconf/recoll.qss +++ b/src/sampleconf/recoll.qss @@ -43,6 +43,7 @@ QComboBox[editable="true"], QTextEdit, QLineEdit, QTextBrowser, QTableView, QWebView, QPlainTextEdit { background: #ffffee; + color: black; } /* Keep a white background for the QTextEdit inside the Preview window @@ -50,6 +51,7 @@ QWebView, QPlainTextEdit { */ Preview QTextEdit { background: white; + color: black; font-family: Serif; font-size: 12pt; }