Files
gcs-nf/App/ToolsUI/PowerSystem/PowerSystem.qss
T
2020-10-09 13:30:11 +08:00

68 lines
1.0 KiB
Plaintext

.QFrame {
background-color: #FFFFFF;
}
.QPushButton {
background-color: #FFFFFF /*palegoldenrod*/;
border-width: 2px;
border-color: darkkhaki;
border-style: solid;
border-radius: 5;
padding: 3px;
font: 20px "Arial";
}
.QPushButton:pressed {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #dadbde, stop: 1 #f6f7fa);
}
.QLabel {
font: 20px "Arial";
}
.QLabel[state="0"] {
image:url(:/img/normal.png);
}
.QLabel[state="1"] {
image:url(:/img/fail.png);
}
.QLabel[state="2"] {
image:url(:/img/warning.png);
}
.QComboBox {
background-color: #FFFFFF;
font: 20px "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);
}
.QCheckBox::indicator[state="2"] {
image:url(:/img/warning.png);
}