Browse Source
Merge pull request #4420 from lat9nq/fix-themed-label-bg
qt_themes: Set QLabel background color to transparent for Dark and Midnight Blue themes
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
4 deletions
-
dist/qt_themes/qdarkstyle/style.qss
-
dist/qt_themes/qdarkstyle_midnight_blue/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; |
|
|
|
} |
|
|
|
|
|
|
|
@ -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; |
|
|
|
} |
|
|
|
|