debian-image-builder-frontend/src/Components/ImagesTable/ImageBuildStatus.scss
Simon Steinbeiss 6208596b35 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
2024-11-25 13:22:46 +01:00

19 lines
No EOL
400 B
SCSS

.error {
color: var(--pf-v5-global--danger-color--100);
}
.success {
color: var(--pf-v5-global--success-color--100);
}
.pending {
color: var(--pf-v5-global--info-color--100);
}
.expiring {
color: var(--pf-v5-global--warning-color--100);
}
.failure-button {
color: var(--pf-global--Color--100);
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: grey;
}