From 458fbf9efb884da21b253a18caf4a8979c83eece Mon Sep 17 00:00:00 2001
From: Sloan Sparger <sloansparger@users.noreply.github.com>
Date: Thu, 13 Jun 2024 17:14:59 -0500
Subject: [PATCH] fixes coloring for bulk actions bar button (#44178)

---
 .../components/BulkActionBar/BulkActionBar.styled.tsx         | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx b/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
index d505aa58644..2fe9717b417 100644
--- a/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
+++ b/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
@@ -48,10 +48,8 @@ export const BulkActionButton = styled(Button)`
 ` as unknown as typeof Button;
 
 export const BulkActionDangerButton = styled(BulkActionButton)`
-  color: var(--mb-color-danger);
-
   :hover {
     color: var(--mb-color-text-white);
-    background-color: var(--mb-color-bg-error);
+    background-color: var(--mb-color-error);
   }
 ` as unknown as typeof Button;
-- 
GitLab