Skip to content

Commit

Permalink
Use default colors
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zaoral <[email protected]>
  • Loading branch information
Pepo48 committed Aug 9, 2024
1 parent 7639cce commit 8f149cf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion js/apps/admin-ui/src/Banners.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const WarnBanner = (msg: string) => {
const { t } = useTranslation();

return (
<Banner screenReaderText={t(msg)} variant="gold" isSticky>
<Banner screenReaderText={t(msg)} isSticky>
<Flex spaceItems={{ default: "spaceItemsSm" }}>
<FlexItem>
<ExclamationTriangleIcon />
Expand Down
1 change: 0 additions & 1 deletion js/apps/admin-ui/src/clients/ClientsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ const ClientDetailLink = (client: ClientRepresentation) => {
{client.attributes?.["temporary_admin"] === "true" && (
<Tooltip content={t("temporaryService")}>
<WarningTriangleIcon
style={{ color: "gold" }}
className="pf-v5-u-ml-sm"
id="temporary-admin-label"
/>
Expand Down
1 change: 0 additions & 1 deletion js/apps/admin-ui/src/components/users/UserDataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ const UserDetailLink = (user: BruteUser) => {
{user.attributes?.["temporary_admin"][0] === "true" && (
<Tooltip content={t("temporaryAdmin")}>
<WarningTriangleIcon
style={{ color: "gold" }}
className="pf-v5-u-ml-sm"
id="temporary-admin-label"
/>
Expand Down

0 comments on commit 8f149cf

Please sign in to comment.