windows dark mode styling, this reads the registry, some scrollbar styles. and a new and improved logo
All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 2m4s

This commit is contained in:
2025-10-31 22:58:08 +01:00
parent 9d1ac9c3dd
commit 6354bd01e2
3 changed files with 141 additions and 18 deletions

View File

@@ -92,4 +92,67 @@ QDockWidget::title {
QToolButton {
background-color: transparent;
border: none;
}
}
QScrollBar:vertical {
background: #1E1E1E; /* Scrollbar background */
width: 10px;
margin: 0px;
border-radius: 5px;
}
QScrollBar::handle:vertical {
background: #3A3A3A; /* Scroll handle */
min-height: 20px;
border-radius: 5px;
}
QScrollBar::handle:vertical:hover {
background: #555555; /* Hover color */
}
QScrollBar::handle:vertical:pressed {
background: #6A6A6A; /* Active color */
}
QScrollBar::add-line:vertical,
QScrollBar::sub-line:vertical {
height: 0px; /* Hide arrows */
}
QScrollBar::add-page:vertical,
QScrollBar::sub-page:vertical {
background: none; /* No gap color */
}
/* ===== Horizontal Scrollbar ===== */
QScrollBar:horizontal {
background: #1E1E1E;
height: 10px;
margin: 0px;
border-radius: 5px;
}
QScrollBar::handle:horizontal {
background: #3A3A3A;
min-width: 20px;
border-radius: 5px;
}
QScrollBar::handle:horizontal:hover {
background: #555555;
}
QScrollBar::handle:horizontal:pressed {
background: #6A6A6A;
}
QScrollBar::add-line:horizontal,
QScrollBar::sub-line:horizontal {
width: 0px;
}
QScrollBar::add-page:horizontal,
QScrollBar::sub-page:horizontal {
background: none;
}