From 5c152e5a2422c24b711de3f73563642b4be0096e Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Thu, 15 Jun 2023 13:00:14 +0100 Subject: [PATCH] PanelTypeCard: Improve contrast for disabled cards (#69907) --- .../features/panel/components/VizTypePicker/PanelTypeCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/panel/components/VizTypePicker/PanelTypeCard.tsx b/public/app/features/panel/components/VizTypePicker/PanelTypeCard.tsx index 6c44e233141..0a93a70c8ce 100644 --- a/public/app/features/panel/components/VizTypePicker/PanelTypeCard.tsx +++ b/public/app/features/panel/components/VizTypePicker/PanelTypeCard.tsx @@ -116,7 +116,7 @@ const getStyles = (theme: GrafanaTheme2) => { background: ${theme.colors.action.selected}; `, disabled: css` - opacity: ${theme.colors.action.disabledOpacity}; + opacity: 0.6; filter: grayscale(1); cursor: default; pointer-events: none;