GUI qss file: force text color to black to avoid white on white text problem with some KDE themes

This commit is contained in:
Jean-Francois Dockes 2017-07-17 09:27:30 +02:00
parent f6641d5788
commit 640147a063

View File

@ -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;
}