This commit is contained in:
2025-05-03 17:28:33 +08:00
parent b24587bdaa
commit 0f7c891fb8
4 changed files with 131 additions and 42 deletions

View File

@@ -52,6 +52,39 @@ QToolBar::separator {
height: 20px;
}
/* 工具栏图标按钮样式 */
QPushButton#ToolbarIconButton {
background-color: #333333;
border: none;
padding: 1px;
min-width: 24px;
max-width: 24px;
min-height: 24px;
max-height: 24px;
}
QPushButton#ToolbarIconButton:hover {
background-color: #444444;
}
QPushButton#ToolbarIconButton:pressed {
background-color: #555555;
}
/* 工具栏分隔符样式 */
QFrame#ToolbarSeparator {
background-color: #555555;
max-width: 1px;
min-width: 1px;
}
/* 工具栏状态标签样式 */
QLabel#StatusLabel {
color: #CCCCCC;
padding-right: 5px;
font-size: 9pt;
}
/* 标签页样式 */
QTabWidget::pane {
border: 1px solid #3F3F46;