mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 14:12:39 +00:00
Qt: Try to fix classic stylesheet after Qt 6.7.3 update
This commit is contained in:
parent
f0c60b42c2
commit
0ba0f11c4a
@ -20,6 +20,9 @@ QToolBar#mw_toolbar::separator {
|
|||||||
margin-top:2px;
|
margin-top:2px;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
|
QToolButton:disabled {
|
||||||
|
color: #787878;
|
||||||
|
}
|
||||||
QSlider#sizeSlider::groove:horizontal {
|
QSlider#sizeSlider::groove:horizontal {
|
||||||
border: 0em solid transparent;
|
border: 0em solid transparent;
|
||||||
height: .3em;
|
height: .3em;
|
||||||
@ -147,3 +150,16 @@ QLabel#l_controller {
|
|||||||
#game_list_grid_item[focus="true"] #game_list_grid_item_title_label {
|
#game_list_grid_item[focus="true"] #game_list_grid_item_title_label {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Top menu bar (Workaround for transparent menus in Qt 6.7.3) */
|
||||||
|
QMenu {
|
||||||
|
color: #000;
|
||||||
|
background-color: #F0F0F0;
|
||||||
|
alternate-background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
QMenu::item:selected {
|
||||||
|
background: #90C8F6;
|
||||||
|
}
|
||||||
|
QMenu::item:disabled {
|
||||||
|
color: #787878;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user