From 71988e386c63e1eeaae25474a9c472e9f4755616 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Mon, 6 Aug 2018 21:40:59 -0500 Subject: Modify dark and dracula stylesheets to allow text colors on download widgets --- src/stylesheets/dracula.qss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/stylesheets/dracula.qss') diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 9d0b4861..91d2e784 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -2,7 +2,7 @@ * Drop background color of most widgets */ -QWidget, QStackedWidget, +QWidget, QStackedWidget, QScrollArea, QAbstractScrollArea { background-color: transparent; color: #bbbbbb; @@ -383,3 +383,11 @@ QToolTip, QTipLabel { SaveGameInfoWidget { background-color: qlineargradient(x1: 0, y1: 0.6, x2: 0, y2: 1, stop: 0 rgba(52,74,100,100%), stop: 1.0 rgba(38,53,73,10%)); } + +/* + * Downloads + */ + + DownloadListWidget QLabel#installLabel { + color: none; +} \ No newline at end of file -- cgit v1.3.1 From 74202cc743f4a8d1ab7b73fbe6ade1e223791ba3 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Thu, 16 Aug 2018 01:27:59 -0500 Subject: Dracula theme: Make disabled widgets darker than enabled widgets Fix by Kob, author of the Paper themes. --- src/stylesheets/dracula.qss | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/stylesheets/dracula.qss') diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 91d2e784..99cf918d 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -8,6 +8,10 @@ QScrollArea, QAbstractScrollArea { color: #bbbbbb; } +QWidget:disabled { + color: #808080; +} + QApplication, QMainWindow, QFrame, QDockWidget, QDialog, QFileDialog, QMessageBox, QRadioButton, -- cgit v1.3.1