1
0
Fork 0
mirror of https://github.com/citra-emu/citra-nightly.git synced 2025-03-30 23:16:59 +00:00

qt: Fix dark themes not showing alternating row icons with Qt 6.5.2 ()

This commit is contained in:
Steveice10 2023-08-06 12:24:03 -07:00 committed by GitHub
parent 0048e61fc7
commit 20f4677f80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions
dist/qt_themes
qdarkstyle
qdarkstyle_midnight_blue

View file

@ -298,6 +298,11 @@ QAbstractItemView:read-only {
alternate-background-color: #232629; alternate-background-color: #232629;
} }
/* Workaround for https://bugreports.qt.io/browse/QTBUG-115529 */
QAbstractItemView:item {
border: 0px;
}
QWidget:focus { QWidget:focus {
border: 1px solid #3daee9; border: 1px solid #3daee9;
} }

View file

@ -481,6 +481,11 @@ QAbstractItemView QLineEdit {
padding: 2px; padding: 2px;
} }
/* Workaround for https://bugreports.qt.io/browse/QTBUG-115529 */
QAbstractItemView:item {
border: 0px;
}
/* QAbstractScrollArea ---------------------------------------------------- /* QAbstractScrollArea ----------------------------------------------------
https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qabstractscrollarea https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qabstractscrollarea