From f6522a5d454505e112f8aa2d06217d452fb1bee8 Mon Sep 17 00:00:00 2001
From: Ryan Laurie <30528226+iethree@users.noreply.github.com>
Date: Fri, 10 May 2024 15:07:37 -0600
Subject: [PATCH] Fix disabled state for bulk actions buttons (#42533)

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

diff --git a/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx b/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
index 1f13551c861..65781db5a97 100644
--- a/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
+++ b/frontend/src/metabase/components/BulkActionBar/BulkActionBar.styled.tsx
@@ -39,4 +39,8 @@ export const BulkActionButton = styled(Button)`
     border-color: ${alpha(color("bg-white"), 0)};
     background-color: ${alpha(color("bg-white"), 0.3)};
   }
+  :disabled {
+    border-color: ${alpha(color("bg-white"), 0)};
+    background-color: ${alpha(color("bg-white"), 0.1)};
+  }
 ` as unknown as typeof Button;
-- 
GitLab