From 6208596b355795c7f2da856aab67ff5815f58d5b Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Fri, 22 Nov 2024 23:26:25 +0100 Subject: [PATCH] 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 --- src/Components/ImagesTable/ImageBuildStatus.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Components/ImagesTable/ImageBuildStatus.scss b/src/Components/ImagesTable/ImageBuildStatus.scss index a637c0f0..b1ab2408 100644 --- a/src/Components/ImagesTable/ImageBuildStatus.scss +++ b/src/Components/ImagesTable/ImageBuildStatus.scss @@ -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 {