ImageBuildStatus.css: Add version to status colors

Add the v5 slug to the status colors as the unversioned colors don't
seem to be defined in PatternFly anymore. I haven't looked at the
history, but I presume this was done at some point during v6
development, as the upstream colors now contain the v6 slug:
https://www.patternfly.org/components/banner/design-guidelines/#usage

Fixes #2611
This commit is contained in:
Simon Steinbeiss 2024-11-22 23:26:25 +01:00 committed by Klara Simickova
parent 4a893e10ba
commit 6208596b35

View file

@ -1,14 +1,14 @@
.error {
color: var(--pf-global--danger-color--100);
color: var(--pf-v5-global--danger-color--100);
}
.success {
color: var(--pf-global--success-color--100);
color: var(--pf-v5-global--success-color--100);
}
.pending {
color: var(--pf-global--info-color--100);
color: var(--pf-v5-global--info-color--100);
}
.expiring {
color: var(--pf-global--warning-color--100);
color: var(--pf-v5-global--warning-color--100);
}
.failure-button {