添加kb3

This commit is contained in:
hm
2020-10-07 12:24:23 +08:00
parent 6da5821dcb
commit 8e1807c8f2
14 changed files with 341 additions and 104 deletions
+66
View File
@@ -0,0 +1,66 @@
.QFrame {
background-color: #FFFFFF;
}
.QPushButton {
background-color: #FFFFFF /*palegoldenrod*/;
border-width: 2px;
border-color: darkkhaki;
border-style: solid;
border-radius: 5;
padding: 3px;
font: 30px "Arial";
}
.QPushButton:pressed {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #dadbde, stop: 1 #f6f7fa);
}
.QLineEdit {
background-color: #FFFFFF;
font: 30px "Arial";
}
.QLabel {
font: 30px "Arial";
}
.QLabel[state="0"] {
image:url(:/img/normal.png);
}
.QLabel[state="1"] {
image:url(:/img/fail.png);
}
.QComboBox {
background-color: #FFFFFF;
font: 30px "Arial";
}
.QCheckBox{
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);
}