34 lines
463 B
Plaintext
34 lines
463 B
Plaintext
|
|
.QLabel {
|
|
font: 20px "黑体";
|
|
}
|
|
|
|
.QCheckBox{
|
|
font: 20px "黑体";
|
|
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);
|
|
}
|
|
|
|
.QCheckBox::indicator[state="2"] {
|
|
image:url(:/img/warning.png);
|
|
}
|
|
|
|
.QCheckBox::indicator[state="3"] {
|
|
image:url(:/img/inital.png);
|
|
}
|
|
|
|
|