Files
gcs-nf/App/ComponentUI/CharInputter/CharInputter.qss
T

57 lines
842 B
Plaintext
Raw Normal View History

2020-05-19 19:02:32 +08:00
.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 "黑体";
2020-05-19 19:02:32 +08:00
}
.QPushButton:pressed {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #dadbde, stop: 1 #f6f7fa);
}
.QPushButton:flat {
border: none; /* no border for a flat push button */
}
.QPushButton:default {
border-color: navy; /* make the default button prominent */
}
2020-06-16 20:54:51 +08:00
.QPushButton#pushButton_Caps[CapsSelect="true"] {
background-color: #55FF55
}
.QPushButton#pushButton_Caps[CapsSelect="false"] {
background-color: #FFFFFF
}
2020-05-19 19:02:32 +08:00
.QLineEdit {
background-color: #FFFFFF
font: 30px "Arial";
}