Adjust the dark qss sample, and have it installed in the distributed examples directory

This commit is contained in:
Jean-Francois Dockes 2020-08-06 10:14:24 +02:00
parent 19fe03af62
commit a5c0179992
2 changed files with 21 additions and 3 deletions

View File

@ -556,7 +556,7 @@ python/samples/recollqsd.py \
\
sampleconf/fields sampleconf/fragbuts.xml sampleconf/mimeconf \
sampleconf/mimemap sampleconf/mimeview sampleconf/mimeview.mac \
sampleconf/recoll.conf sampleconf/recoll.qss \
sampleconf/recoll.conf sampleconf/recoll.qss sampleconf/recoll-dark.qss \
\
testmains/Makefile.am \
\

View File

@ -27,14 +27,32 @@
*/
/* Light on dark text everywhere*/
* {
background-color: #3c3c3c;
color: #D8D8D8;
color: #d8d8d8;
selection-background-color: #424e72;
}
QToolTip {
background-color: yellow;
color: black;
}
QMenuBar::item:selected {
background: #424e72;
}
QTabWidget QTabBar::tab {
background: #2f4f4f;
color: #FFF8DC;
}
QTabWidget QTabBar::tab:selected {
background: #5f5f5f;
color: #FFF8DC;
}
/* Slightly lighter background for text entry areas*/
QComboBox[editable="true"], QTextEdit, QLineEdit, QTextBrowser, QTableView,
QWebView, QPlainTextEdit {