added view hover color

This commit is contained in:
iLLiCiTiT 2021-05-28 20:51:11 +02:00
parent 5ab0452df6
commit 1521503706
2 changed files with 9 additions and 0 deletions

View file

@ -4,6 +4,7 @@
"font-hover": "#eff3f5", "font-hover": "#eff3f5",
"font-disabled": "#737c85", "font-disabled": "#737c85",
"font-view-selection": "black", "font-view-selection": "black",
"font-view-hover": "#ffffff",
"bg": "#282C34", "bg": "#282C34",
"bg-inputs": "#21252B", "bg-inputs": "#21252B",

View file

@ -323,6 +323,14 @@ QAbstractItemView::item:selected:!active {
color: {color:font-view-selection}; color: {color:font-view-selection};
} }
QAbstractItemView::item:!selected:hover {
color: {color:font-view-hover};
}
QAbstractItemView::item:selected:hover {
color: {color:font-view-hover};
}
/* Progress bar */ /* Progress bar */
QProgressBar { QProgressBar {
border: 1px solid {color:border}; border: 1px solid {color:border};