summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stylesheets/Paper Dark by 6788-00.qss49
-rw-r--r--src/stylesheets/Paper Light by 6788-00.qss40
2 files changed, 83 insertions, 6 deletions
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