2022-06-15 18:52:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
.QFrame {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.QProgressBar::chunk[state="0"]{
|
|
|
|
|
background-color: #00FF00;
|
|
|
|
|
width: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QProgressBar::chunk[state="1"]{
|
|
|
|
|
background-color: #FF0000;
|
|
|
|
|
width: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.QPushButton {
|
|
|
|
|
background-color: #FFFFFF /*palegoldenrod*/;
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
border-color: darkkhaki;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-radius: 5;
|
|
|
|
|
padding: 3px;
|
2022-09-09 10:59:44 +08:00
|
|
|
font: 20px "黑体";
|
2022-06-15 18:52:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QPushButton:pressed {
|
|
|
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
|
|
|
|
stop: 0 #dadbde, stop: 1 #f6f7fa);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QLabel {
|
2022-09-09 10:59:44 +08:00
|
|
|
font: 20px "黑体";
|
2022-06-15 18:52:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QLabel[state="0"] {
|
|
|
|
|
border-image:url(:/img/success_rect.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QLabel[state="1"] {
|
|
|
|
|
border-image:url(:/img/fail_rect.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QLabel[state="2"] {
|
|
|
|
|
border-image:url(:/img/warning_rect.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QLabel[state="3"] {
|
|
|
|
|
border-image:url(:/img/rect_gray.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QCheckBox{
|
2022-09-09 10:59:44 +08:00
|
|
|
font: 20px "黑体";
|
2022-06-15 18:52:14 +08:00
|
|
|
width: 25px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QCheckBox::indicator {
|
|
|
|
|
width: 15px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QCheckBox::indicator[state="0"] {
|
|
|
|
|
image:url(:/img/normal.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QCheckBox::indicator[state="1"] {
|
|
|
|
|
image:url(:/img/fail.png);
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-16 16:08:18 +08:00
|
|
|
.QCheckBox::indicator[state="2"] {
|
|
|
|
|
image:url(:/img/warning.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QCheckBox::indicator[state="3"] {
|
|
|
|
|
image:url(:/img/inital.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.QComboBox {
|
|
|
|
|
background-color: #FFFFFF;
|
2022-09-09 10:59:44 +08:00
|
|
|
font: 20px "黑体";
|
2022-06-16 16:08:18 +08:00
|
|
|
}
|
|
|
|
|
|
2022-06-15 18:52:14 +08:00
|
|
|
|