Merge pull request #13923 from AdmiralCurtiss/dark-progress-bar

DolphinQt/Styles/Dark: Adjust progress bar
This commit is contained in:
Admiral H. Curtiss
2025-09-07 15:38:24 +02:00
committed by GitHub

View File

@ -496,17 +496,22 @@ QTabBar QToolButton::left-arrow {
QTabBar QToolButton::right-arrow { QTabBar QToolButton::right-arrow {
image: url(:/dolphin_dark_win/right-triangle-tabbar.svg); image: url(:/dolphin_dark_win/right-triangle-tabbar.svg);
} }
QTableCornerButton::section { QTableCornerButton::section {
background-color: #202020; background-color: #202020;
border: 1px solid #7e7e7e; border: 1px solid #7e7e7e;
border-top: 0px; border-top: 0px;
border-left: 0px; border-left: 0px;
border-bottom: 0px; border-bottom: 0px;
} }
QProgressBar { QProgressBar {
border: 2px solid grey; background-color: #202020;
border-radius: 5px; border: 1px solid #7e7e7e;
background-color: #202020; color: #dcdcdc;
} text-align: center;
}
QProgressBar::chunk {
background-color: #24a806;
width: 1px;
}