1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00

Fixed: Progress bar text colour in Dark theme

This commit is contained in:
Zak Saunders
2022-12-30 01:56:29 +00:00
committed by GitHub
parent 30cbaf06fa
commit ca61efa57f
3 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -20,7 +20,11 @@
.frontTextContainer { .frontTextContainer {
z-index: 1; z-index: 1;
color: var(--white); color: var(--progressBarFrontTextColor);
}
.backTextContainer {
color: var(--progressBarBackTextColor);
} }
.backTextContainer, .backTextContainer,
+2
View File
@@ -235,6 +235,8 @@ module.exports = {
// //
// misc // misc
progressBarFrontTextColor: white,
progressBarBackTextColor: white,
progressBarBackgroundColor: '#727070', progressBarBackgroundColor: '#727070',
logEventsBackgroundColor: '#2a2a2a' logEventsBackgroundColor: '#2a2a2a'
}; };
+4 -2
View File
@@ -237,6 +237,8 @@ module.exports = {
// //
// misc // misc
progressBarBackgroundColor: '#fff', progressBarFrontTextColor: white,
logEventsBackgroundColor: '#fff' progressBarBackTextColor: darkGray,
progressBarBackgroundColor: white,
logEventsBackgroundColor: white
}; };