Add turnoff button to login dialog

This commit is contained in:
kradchen
2023-09-08 10:20:10 +08:00
parent 662c02bdf9
commit 64bac0e960
6 changed files with 43 additions and 10 deletions

View File

@@ -260,6 +260,11 @@ QFrame#loginFrame {
stop: 1.0 darkgray);
}
QFrame#TurnoffFrame {
max-height: 100px;
min-height: 100px;
}
QDialog#loginForm {
background-color: #3c3c3c;
color: white;
@@ -307,6 +312,16 @@ QDialog#loginForm QToolButton#btnlogin {
QDialog#loginForm QToolButton#btnlogin:hover {
background: #505050;
}
QToolButton#TurnoffBtn {
border: 1px solid #0078d8;
min-height:80px;
max-height:80px;
min-width:80px;
max-width:80px;
qproperty-icon:url(":/icons/turnoff.png");
qproperty-iconSize:60px 60px;
qproperty-toolButtonStyle:ToolButtonIconOnly;
}
/*------MainWindow------------------------------------------------------------------*/