summaryrefslogtreecommitdiff
path: root/src/stylesheets
diff options
context:
space:
mode:
authorBrian Munro <brian.alexander.munro@gmail.com>2018-08-21 12:23:47 +0200
committerGitHub <noreply@github.com>2018-08-21 12:23:47 +0200
commit364289db72ca452e7af56dbf6ff43d0573656e57 (patch)
tree176e8c349fffe87996fbe4708937bc4bd587c86b /src/stylesheets
parent7b1821a5189f0187ea776c150f29e3bd7446724a (diff)
parentef771fd8ca262a136c95c5141bb0de95712d14c2 (diff)
Merge pull request #495 from Modorganizer2/Develop
Release 2.1.5
Diffstat (limited to 'src/stylesheets')
-rw-r--r--src/stylesheets/Paper Dark by 6788-00.qss53
-rw-r--r--src/stylesheets/Paper Light by 6788-00.qss40
-rw-r--r--src/stylesheets/dark.qss4
-rw-r--r--src/stylesheets/dracula.qss14
4 files changed, 102 insertions, 9 deletions
diff --git a/src/stylesheets/Paper Dark by 6788-00.qss b/src/stylesheets/Paper Dark by 6788-00.qss
index ea36e675..11f5b922 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;
@@ -381,8 +380,8 @@ QMenu::item:selected {
}
QMenu::item:disabled {
- background: #FFFFFF;
- color: #6C6C6C;
+ background: #242424;
+ color: #808080;
}
QMenu::separator {
@@ -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
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..99cf918d 100644
--- a/src/stylesheets/dracula.qss
+++ b/src/stylesheets/dracula.qss
@@ -2,12 +2,16 @@
* Drop background color of most widgets
*/
-QWidget, QStackedWidget,
+QWidget, QStackedWidget,
QScrollArea, QAbstractScrollArea {
background-color: transparent;
color: #bbbbbb;
}
+QWidget:disabled {
+ color: #808080;
+}
+
QApplication,
QMainWindow, QFrame, QDockWidget, QDialog, QFileDialog, QMessageBox,
QRadioButton,
@@ -383,3 +387,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