* add "automatic" theme set the theme and icons based on the system theme * update the default icons based on system theme * update pyqt to 6.5.0 to get the colorSchemeChanged callback * rename style to theme * remove unused svg files for default theme * ServerInfoDialog: update feedback colors in dark mode
41 lines
654 B
Plaintext
41 lines
654 B
Plaintext
QPushButton:!default:hover {
|
|
background: #5c24b6;
|
|
}
|
|
|
|
QPushButton:default:hover, QPushButton:checked:hover {
|
|
background: #5c24b6;
|
|
}
|
|
|
|
QPushButton[state="success"] {
|
|
background-color: #6400FF00;
|
|
color: black;
|
|
}
|
|
|
|
QPushButton[state="failed"] {
|
|
background-color: #64FF0000;
|
|
color: black;
|
|
}
|
|
|
|
QLineEdit[state="success"] {}
|
|
|
|
QLineEdit[state="failed"] {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
QToolTip {
|
|
color: #BFBFBF;
|
|
background-color: #5522a8;
|
|
}
|
|
|
|
MessageWidget QPushButton {
|
|
border: 0px;
|
|
}
|
|
|
|
MessageWidget QPushButton:!default:hover {
|
|
background: #9662ea;
|
|
}
|
|
|
|
MessageWidget QPushButton:!default:pressed {
|
|
background: #7a4dc2;
|
|
}
|