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.
This commit is contained in:
parent
d046e9b458
commit
5f075bb490
2 changed files with 7 additions and 4 deletions
6
dist/qt_themes/qdarkstyle/style.qss
vendored
6
dist/qt_themes/qdarkstyle/style.qss
vendored
|
@ -654,7 +654,11 @@ QAbstractSpinBox::down-arrow:hover {
|
||||||
image: url(:/qss_icons/rc/down_arrow.png);
|
image: url(:/qss_icons/rc/down_arrow.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
QLabel,
|
QLabel {
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
QTabWidget {
|
QTabWidget {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -875,7 +875,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qframe
|
||||||
|
|
||||||
--------------------------------------------------------------------------- */
|
--------------------------------------------------------------------------- */
|
||||||
QLabel {
|
QLabel {
|
||||||
background-color: #19232D;
|
background: transparent;
|
||||||
border: 0px solid #32414B;
|
border: 0px solid #32414B;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -883,7 +883,6 @@ QLabel {
|
||||||
}
|
}
|
||||||
|
|
||||||
QLabel:disabled {
|
QLabel:disabled {
|
||||||
background-color: #19232D;
|
|
||||||
border: 0px solid #32414B;
|
border: 0px solid #32414B;
|
||||||
color: #787878;
|
color: #787878;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue