qsswraper/css/QssTitleBar.css

65 lines
1.6 KiB
CSS
Raw Normal View History

2020-12-14 15:48:37 +00:00
QWidget#qssTitleBar{
color: white;
2021-04-30 08:56:46 +00:00
background: rgb(51,101,177);
2020-12-14 15:48:37 +00:00
border: 0px;
margin: 0px;
}
QWidget#qssTitleBar > QPushButton#titlebaricon{
2021-04-30 08:56:46 +00:00
background: rgb(51,101,177);
width: 25px;
height:25px;
2020-12-14 15:48:37 +00:00
}
2020-12-14 16:11:15 +00:00
2021-04-30 08:56:46 +00:00
QWidget#qssTitleBar > QPushButton#titlebarclosebtn{
2020-12-14 15:48:37 +00:00
image: url(":/qss/icon/btn_close_down.svg");
2021-04-30 08:56:46 +00:00
background: rgb(51,101,177);
width: 25px;
height:25px;
2020-12-14 15:48:37 +00:00
margin-left: 1px;
}
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn{
2021-04-30 08:56:46 +00:00
background: rgb(51,101,177);
width: 25px;
height:25px;
2020-12-14 15:48:37 +00:00
margin-left: 1px;
image: url(":/qss/icon/btn_max_normal.svg");
}
QWidget#qssTitleBar >QPushButton#titlebarclosebtn:enabled:hover{
background: red;
}
QWidget#qssTitleBar >QPushButton#titlebarminbtn{
image: url(":/qss/icon/btn_mini_down.svg");
2021-04-30 08:56:46 +00:00
background: rgb(51,101,177);
width: 25px;
height:25px;
2020-12-14 15:48:37 +00:00
margin-left: 1px;
}
QWidget#qssTitleBar >QPushButton#titlebarminbtn:enabled:hover{
background: rgb(187, 212, 238);
}
QWidget#qssTitleBar >QPushButton#titlebarrestorebtn{
image: url(":/qss/icon/btn_max_normal.svg");
background: rgb(187, 212, 238);
2021-04-30 08:56:46 +00:00
width: 25px;
height:25px;
2020-12-14 15:48:37 +00:00
margin-left: 1px;
2021-04-01 16:46:23 +00:00
margin-right: 2px;
2020-12-14 15:48:37 +00:00
}
QWidget#qssTitleBar >QPushButton#titlebarrestorebtn:enabled:hover{
background: rgb(187, 212, 238);
}
QWidget#qssTitleBar >QPushButton#btn_serial:!enabled {
background: rgb(180, 180, 180);
color: white;
}
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn:enabled:hover{
background: rgb(100, 160, 220);
}
2020-12-14 16:11:15 +00:00
QWidget#qssTitleBar > QLabel#title{
color: white;
2021-05-11 07:26:40 +00:00
font-size: 17px;
2021-04-30 08:56:46 +00:00
font-family:'黑体', Courier, monospace;
2020-12-14 16:11:15 +00:00
}