Qt: fix game grid font for unfocused tiles

This commit is contained in:
Megamouse
2018-12-28 11:59:25 +01:00
parent aa306dd356
commit cfe0709867
5 changed files with 26 additions and 0 deletions
+7
View File
@@ -343,6 +343,13 @@ QTableWidget#game_grid {
font-weight: 600;
color: #4d4940;
text-transform: uppercase;
selection-color: #aea993;
}
QTableWidget#game_grid::item:selected:active {
selection-background-color: #4d4940;
}
QTableWidget#game_grid::item:selected:!active {
selection-background-color: #615c51;
}