PDF拆分、合并

This commit is contained in:
2025-06-08 23:55:24 +08:00
parent 0323e92151
commit 7d72f1f0e9
10 changed files with 250 additions and 56 deletions

View File

@@ -8,6 +8,18 @@ QWidget {
border: none;
}
/* 最小化、最大化按钮悬停状态 */
QPushButton#minimizeBtn:hover,
QPushButton#maximizeBtn:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* 关闭按钮悬停状态 */
QPushButton#closeBtn:hover {
background-color: #E85050;
color: white; /* 使图标变为白色 */
}
/* 输入框 */
QLineEdit {
background-color: #2d3748;