diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2018-08-06 21:40:59 -0500 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2018-08-06 21:40:59 -0500 |
| commit | 71988e386c63e1eeaae25474a9c472e9f4755616 (patch) | |
| tree | 4797c18bdebaba55d129a4e9e5de085b734c36ae /src/stylesheets | |
| parent | 5e7c0fddf016e853e7cf8699ebab965a6641315e (diff) | |
Modify dark and dracula stylesheets to allow text colors on download widgets
Diffstat (limited to 'src/stylesheets')
| -rw-r--r-- | src/stylesheets/dark.qss | 4 | ||||
| -rw-r--r-- | src/stylesheets/dracula.qss | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/stylesheets/dark.qss b/src/stylesheets/dark.qss index bcf445a2..d5a7aedf 100644 --- a/src/stylesheets/dark.qss +++ b/src/stylesheets/dark.qss @@ -363,3 +363,7 @@ QTreeView::branch:open:has-children:has-siblings border-image: none;
image: url(:/stylesheet/branch-open.png);
}
+
+DownloadListWidget QLabel#installLabel {
+ color: none;
+}
\ No newline at end of file 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 |
