summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2025-09-07 15:38:24 +0200
committerGitHub <noreply@github.com>2025-09-07 15:38:24 +0200
commite0332f3749dacd7a852ae4180b580ed1171545c9 (patch)
tree673864396179e45f00d7ac0a78a36c86a3367115
parent489952cf89241dd1d4c619b7066a91194eea6420 (diff)
parentc7ff0bf4754b642f0af62ad2f55b903e1a80d8cf (diff)
Merge pull request #13923 from AdmiralCurtiss/dark-progress-bar
DolphinQt/Styles/Dark: Adjust progress bar
-rw-r--r--Source/Core/DolphinQt/Styles/Dark/dark.qss25
1 files changed, 15 insertions, 10 deletions
diff --git a/Source/Core/DolphinQt/Styles/Dark/dark.qss b/Source/Core/DolphinQt/Styles/Dark/dark.qss
index 028df3b142..3e01577ec2 100644
--- a/Source/Core/DolphinQt/Styles/Dark/dark.qss
+++ b/Source/Core/DolphinQt/Styles/Dark/dark.qss
@@ -496,17 +496,22 @@ QTabBar QToolButton::left-arrow {
QTabBar QToolButton::right-arrow {
image: url(:/dolphin_dark_win/right-triangle-tabbar.svg);
}
+
QTableCornerButton::section {
- background-color: #202020;
- border: 1px solid #7e7e7e;
- border-top: 0px;
- border-left: 0px;
- border-bottom: 0px;
+ background-color: #202020;
+ border: 1px solid #7e7e7e;
+ border-top: 0px;
+ border-left: 0px;
+ border-bottom: 0px;
}
QProgressBar {
- border: 2px solid grey;
- border-radius: 5px;
- background-color: #202020;
- }
- \ No newline at end of file
+ background-color: #202020;
+ border: 1px solid #7e7e7e;
+ color: #dcdcdc;
+ text-align: center;
+}
+QProgressBar::chunk {
+ background-color: #24a806;
+ width: 1px;
+}