Files
gcs-nf/App/ToolsUI/ToolsUI.qss
T

68 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-08-19 22:21:48 +08:00
2020-05-28 18:11:23 +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 "Arial";
}
.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 */
}
.QLineEdit {
background-color: #FFFFFF;
font: 30px "Arial";
}
.QLabel {
background-color: #FFFFFF;
font: 30px "Arial";
}
.QComboBox {
background-color: #FFFFFF;
font: 30px "Arial";
}
.QTreeWidget {
background-color: #FFFFFF;
font: 30px "Arial";
}
2020-08-19 22:21:48 +08:00
QProgressBar {
border: 2px solid grey;
border-radius: 5px;
background-color: #FFFFFF;
}
QProgressBar::chunk {
background-color: #05B8CC;
width: 20px;
}
QProgressBar {
text-align: center;
color: #0A0A0A;
}