From dafaaaeb28d170f33e8c12597ceba2fcae1085e8 Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Wed, 16 Jun 2021 10:45:31 -0300 Subject: [PATCH] chore: Changes the dashboard highlight color when selecting a filter (#15192) --- .../src/dashboard/components/gridComponents/ChartHolder.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx b/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx index 102acae84a..01be44f91f 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx @@ -100,9 +100,7 @@ const FilterFocusHighlight = React.forwardRef( const focusedChartStyles = { borderColor: theme.colors.primary.light2, opacity: 1, - boxShadow: `0px 0px ${theme.gridUnit * 2}px ${ - theme.colors.primary.light2 - }`, + boxShadow: `0px 0px ${theme.gridUnit * 2}px ${theme.colors.primary.base}`, pointerEvents: 'auto', };