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

52 lines
696 B
Plaintext
Raw Normal View History

2020-09-25 18:37:30 +08:00
2020-05-13 16:54:54 +08:00
2020-09-17 20:24:04 +08:00
.QWidget {
background-color: #FFFFFF;
}
2020-05-13 16:54:54 +08:00
2020-09-17 20:24:04 +08:00
.QFrame {
background-color: #FFFFFF;
}
2020-09-07 18:19:10 +08:00
2020-05-13 16:54:54 +08:00
2020-09-17 20:24:04 +08:00
.QLabel {
2020-05-13 16:54:54 +08:00
background-color: white;
background-attachment: scroll;
border-width: 2px;
border-color: darkkhaki;
border-style: solid;
border-radius: 5;
padding: 3px;
2020-06-10 20:04:56 +08:00
font :20px;
font-weight:bold;
2020-05-13 16:54:54 +08:00
2020-09-17 20:24:04 +08:00
text-align:AlignLeft,AlignVCenter;
2020-09-07 18:19:10 +08:00
}
2020-09-25 18:37:30 +08:00
.QPushButton[state="0"]{
font :15px;
2020-09-07 18:19:10 +08:00
2020-09-25 18:37:30 +08:00
border-image:url(:/img/border_unSelected.png);
2020-09-07 18:19:10 +08:00
}
2020-09-25 18:37:30 +08:00
.QPushButton:hover{
font :30px;
font-weight:bold;
border-image:url(:/img/border_Selected.png);
2020-09-07 18:19:10 +08:00
}
2020-09-25 18:37:30 +08:00
.QPushButton[state="2"]{
font :30px;
font-weight:bold;
border-image:url(:/img/border_Selected.png);
2020-09-07 18:19:10 +08:00
}
2020-09-08 16:56:59 +08:00