fix dark mode progress showing in light mode

This commit is contained in:
Michael Shamoon 2022-04-17 00:25:28 -07:00
parent a834a6c874
commit dfcef81001
2 changed files with 8 additions and 4 deletions

View File

@ -442,10 +442,8 @@ table.table {
border-color: var(--bs-danger);
}
.alert-secondary {
background-color: var(--pngx-primary-darken-18);
border-color: var(--pngx-primary-darken-15);
color: var(--bs-body-color);
.progress {
background-color: var(--bs-body-bg);
}
.ngb-dp-header,

View File

@ -153,6 +153,12 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,<svg xmlns='htt
}
.alert-secondary {
background-color: var(--bs-light);
border-color: var(--pngx-bg-darker);
color: var(--bs-body-color);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
color: var(--pngx-body-color-accent);
}