summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-07-28 03:29:06 +0200
committerGitHub <noreply@github.com>2020-07-28 03:29:06 +0200
commit312c3788df6274d5bc39d7d0606fd0d90e65d698 (patch)
tree6520a8e1754c74ce3f402bf4976a6d25dd49baef
parentMerge pull request #4419 from lioncash/initializer (diff)
parentqt_themes: Set background color to transparent for Dark and Midnight Blue themes (diff)
downloadyuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar.gz
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar.bz2
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar.lz
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar.xz
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.tar.zst
yuzu-312c3788df6274d5bc39d7d0606fd0d90e65d698.zip
-rw-r--r--dist/qt_themes/qdarkstyle/style.qss8
-rw-r--r--dist/qt_themes/qdarkstyle_midnight_blue/style.qss3
2 files changed, 7 insertions, 4 deletions
diff --git a/dist/qt_themes/qdarkstyle/style.qss b/dist/qt_themes/qdarkstyle/style.qss
index 2d5c9761f..2926a05fa 100644
--- a/dist/qt_themes/qdarkstyle/style.qss
+++ b/dist/qt_themes/qdarkstyle/style.qss
@@ -654,7 +654,11 @@ QAbstractSpinBox::down-arrow:hover {
image: url(:/qss_icons/rc/down_arrow.png);
}
-QLabel,
+QLabel {
+ border: 0;
+ background: transparent;
+}
+
QTabWidget {
border: 0;
}
@@ -1269,4 +1273,4 @@ QPushButton#RendererStatusBarButton:checked {
QPushButton#RendererStatusBarButton:!checked{
color: #00ccdd;
-} \ No newline at end of file
+}
diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss
index be645c907..9c24b0d07 100644
--- a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss
+++ b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss
@@ -875,7 +875,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qframe
--------------------------------------------------------------------------- */
QLabel {
- background-color: #19232D;
+ background: transparent;
border: 0px solid #32414B;
padding: 2px;
margin: 0px;
@@ -883,7 +883,6 @@ QLabel {
}
QLabel:disabled {
- background-color: #19232D;
border: 0px solid #32414B;
color: #787878;
}