From 5e7c0fddf016e853e7cf8699ebab965a6641315e Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Mon, 6 Aug 2018 21:37:05 -0500 Subject: Update Paper themes by 6788-00 to version 3.0.1 --- src/stylesheets/Paper Dark by 6788-00.qss | 49 ++++++++++++++++++++++++++++-- src/stylesheets/Paper Light by 6788-00.qss | 40 ++++++++++++++++++++++-- 2 files changed, 83 insertions(+), 6 deletions(-) (limited to 'src/stylesheets') diff --git a/src/stylesheets/Paper Dark by 6788-00.qss b/src/stylesheets/Paper Dark by 6788-00.qss index ea36e675..3f61bcd6 100644 --- a/src/stylesheets/Paper Dark by 6788-00.qss +++ b/src/stylesheets/Paper Dark by 6788-00.qss @@ -1,4 +1,4 @@ -/* v3.0 Paper Dark by 6788-00 */ +/* v3.0.1 Paper Dark by 6788-00 */ /* https://6788-00.tumblr.com/ */ /* Main Window */ @@ -54,7 +54,6 @@ QToolBar::separator { } QToolButton { - background: #1A1A1A; padding: 4px 6px; border-radius: 6px; margin: 4px 4px 0px 4px; @@ -413,6 +412,8 @@ QProgressBar { QProgressBar::chunk { background: #007E7E; + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; } /* Right Pane and Tab Bars */ @@ -448,7 +449,8 @@ QTabBar::tab:disabled { } QTabBar::tab:selected { - color: #007272; + background: #007272; + color: #FFFFFF; } @@ -504,4 +506,45 @@ QSlider::handle:horizontal:hover { QTableView { gridline-color: #222222; border: 0px; +} + +QListWidget::item#executablesListBox { + /* fixes the black text problem on the Modify Executables window */ + color: #D3D3D3; +} + +/* downloads tab */ + +QWidget#downloadTab QAbstractScrollArea { + /* background of the entire downloads tab */ + background: #242424; +} + +DownloadListWidget QFrame, +DownloadListWidgetCompact, +DownloadListWidgetCompact QLabel { + /* an entry on the Downloads tab */ + background: #141414; +} + +DownloadListWidget QFrame#frame { + /* outer box of an entry on the Downloads tab */ + border: 2px solid #141414; +} + +DownloadListWidget QLabel#installLabel { + color: none; +} + +DownloadListWidget QFrame:clicked { + background: #007E7E; +} + +/* compact downloads view */ + +DownloadListWidgetCompact, +DownloadListWidgetCompact QLabel { + /* an entry on the Downloads tab */ + background: #141414; + padding: 4px; } \ No newline at end of file diff --git a/src/stylesheets/Paper Light by 6788-00.qss b/src/stylesheets/Paper Light by 6788-00.qss index a75831f8..5f6e2867 100644 --- a/src/stylesheets/Paper Light by 6788-00.qss +++ b/src/stylesheets/Paper Light by 6788-00.qss @@ -1,4 +1,4 @@ -/* v3.0 Paper Light by 6788-00 */ +/* v3.0.1 Paper Light by 6788-00 */ /* https://6788-00.tumblr.com/ */ /* Main Window */ @@ -54,7 +54,6 @@ QToolBar::separator { } QToolButton { - background: #FFFFFF; padding: 4px 6px; border-radius: 6px; margin: 4px 4px 0px 4px; @@ -413,6 +412,8 @@ QProgressBar { QProgressBar::chunk { background: #008F8F; + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; } /* Right Pane and Tab Bars */ @@ -448,7 +449,8 @@ QTabBar::tab:disabled { } QTabBar::tab:selected { - color: #008484; + background: #008484; + color: #FFFFFF; } @@ -504,4 +506,36 @@ QSlider::handle:horizontal:hover { QTableView { gridline-color: #EFEFEF; border: 0px; +} + +/* downloads tab */ + +QWidget#downloadTab QAbstractScrollArea { + /* background of the entire downloads tab */ + background: #EFEFEF; +} + +DownloadListWidget QFrame, +DownloadListWidgetCompact, +DownloadListWidgetCompact QLabel { + /* an entry on the Downloads tab */ + background: #FFFFFF; +} + +DownloadListWidget QFrame#frame { + /* outer box of an entry on the Downloads tab */ + border: 2px solid #FFFFFF; +} + +DownloadListWidget QLabel#installLabel { + color: none; +} + +/* compact downloads view */ + +DownloadListWidgetCompact, +DownloadListWidgetCompact QLabel { + /* an entry on the Downloads tab */ + background: #FFFFFF; + padding: 4px; } \ No newline at end of file -- cgit v1.3.1 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/dark.qss | 4 ++++ src/stylesheets/dracula.qss | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) (limited to 'src/stylesheets') 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 -- 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') 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 From ef771fd8ca262a136c95c5141bb0de95712d14c2 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Mon, 20 Aug 2018 00:55:18 -0500 Subject: Fix disabled menu item styling in Paper Dark theme --- src/stylesheets/Paper Dark by 6788-00.qss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stylesheets') diff --git a/src/stylesheets/Paper Dark by 6788-00.qss b/src/stylesheets/Paper Dark by 6788-00.qss index 3f61bcd6..11f5b922 100644 --- a/src/stylesheets/Paper Dark by 6788-00.qss +++ b/src/stylesheets/Paper Dark by 6788-00.qss @@ -380,8 +380,8 @@ QMenu::item:selected { } QMenu::item:disabled { - background: #FFFFFF; - color: #6C6C6C; + background: #242424; + color: #808080; } QMenu::separator { -- cgit v1.3.1