diff options
author | lat9nq <[email protected]> | 2020-07-25 04:20:55 -0400 |
---|---|---|
committer | lat9nq <[email protected]> | 2020-07-25 04:23:48 -0400 |
commit | 5f075bb49009d96cca00cb26ab1c60f92e4cf99d (patch) | |
tree | b09cc3f23c12e9d5425942544a2a813daf21cfed /dist | |
parent | d046e9b458d10cfb8471f56b67d4f517baefd0bd (diff) | |
download | yuzu-android-5f075bb49009d96cca00cb26ab1c60f92e4cf99d.tar.gz yuzu-android-5f075bb49009d96cca00cb26ab1c60f92e4cf99d.zip |
qt_themes: Set background color to transparent for Dark and Midnight Blue themes
Fixes the override highlights in per-game settings from looking weird when viewed on the Dark or Midnight Blue themes by setting QLabels to have transparent backgrounds by default.
Also apparently adds a newline to the end of the Dark theme's qss file.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/qt_themes/qdarkstyle/style.qss | 8 | ||||
-rw-r--r-- | dist/qt_themes/qdarkstyle_midnight_blue/style.qss | 3 |
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; } |