UI: Update Acri theme styling

Adds new styling for checked buttons when
they are pressed or hovered

Adds a hover styling for dropdown boxes
master
Warchamp7 2021-09-11 16:31:28 -04:00 committed by Matt Gajownik
parent 3909c311f1
commit 1588357583
1 changed files with 15 additions and 0 deletions

View File

@ -428,6 +428,11 @@ QComboBox {
padding-left: 10px;
}
QDateTimeEdit:hover,
QComboBox:hover {
background-color: rgb(61,61,63);
}
QDateTimeEdit::drop-down,
QComboBox::drop-down {
border:none;
@ -563,10 +568,20 @@ QPushButton:hover {
border: 1px solid rgb(54,70,131);
}
QPushButton:checked:hover {
background-color: rgb(116,32,49);
border-color: rgb(176,12,47);
}
QPushButton:pressed {
background-color: rgb(22,31,65);
}
QPushButton:checked:pressed {
background-color: rgb(63,21,30);
border-color: rgb(132,22,45);
}
QPushButton:disabled {
border: 1px solid rgb(35,36,38);
background-color: rgb(26,26,27);