Fix: Theme milestone progress bar statuses not rendered correctly

Fixes Milestones progress bar statuses not rendered correctly after Gitea
1.23.x update. Maps explicit styling values for progress bars to existing colours.
Part of infrastructure/blender-projects-platform#133
This commit is contained in:
Márton Lente
2025-02-17 18:56:11 +01:00
parent a088c9e2b6
commit c2131fea1e

View File

@@ -518,6 +518,12 @@ a.ui.primary.label:hover,
color: #dbdbeb; color: #dbdbeb;
} }
/* Progress bar. */
progress::-moz-progress-bar,
progress::-webkit-progress-value {
background-color: var(--color-primary);
}
/* Style Overrides. */ /* Style Overrides. */
#navbar .dropdown .item { #navbar .dropdown .item {
justify-content: flex-start !important; justify-content: flex-start !important;