基本框架完成,完善一下细节,最好能完成批量上传

This commit is contained in:
2025-03-24 18:43:22 +08:00
parent d20d1907ca
commit cc7c995549
13 changed files with 798 additions and 99 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -36,7 +36,7 @@ QPushButton#btnMin:pressed {
QFrame#frame > QPushButton {
font-family: 'Microsoft YaHei UI';
font-size: 20px;
font-size: 15px;
color: white;
}
@@ -189,4 +189,55 @@ QWidget#ServerSetting > QLineEdit {
border: 2px solid #DCDFE6;
background-color: white;
color: black;
}
}
QWidget#FrmUpload > QPushButton {
font-family: 'Microsoft YaHei UI';
border: 1px solid 5E6B71;
color: #5E6B71;
background-color: white;
}
QWidget#FrmUpload > QLabel#labFastUpload {
color: white;
font-size: 15px;
}
QWidget#FrmUpload > QLabel#labLinkType {
color: white;
font-size: 15px;
}
QWidget#FrmUpload > QPushButton#btnMarkdown {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
QWidget#FrmUpload > QPushButton#btnUBB {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
QWidget#FrmUpload > QPushButton#btnFastUpload {
border-radius: 10px;
border: 1px solid #409EFF;
background-color: #409EFF;
font-family: 'Microsoft YaHei UI';
font-size: 15px;
color: white;
}
QWidget#FrmUpload > QPushButton#btnFastUpload:hover {
background-color: #79BBFF;
}
QWidget#FrmUpload > QPushButton#btnFastUpload:pressed {
border: none;
background-color: #337ECC;
}
QWidget#FrmUpload > QLabel#labTitle {
color: white;
font-size: 30px;
}