diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx index 7b62829282..dee060ff91 100644 --- a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx +++ b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx @@ -93,19 +93,20 @@ const StyledDashboardContent = styled.div` transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s; border: 2px solid transparent; } - &.focused-filter-field { - .dashboard-component-chart-holder { - opacity: 0.3; - pointer-events: none; - &.scoped-to-focused-filter, - &.contains-focused-filter { - border-color: ${({ theme }) => theme.colors.primary.light2}; - opacity: 1; - box-shadow: 0px 0px 8px ${({ theme }) => theme.colors.primary.light2}; - pointer-events: auto; - } - } - } + // &.focused-filter-field { + // .dashboard-component-chart-holder { + // opacity: 0.3; + // pointer-events: none; + // &.scoped-to-focused-filter, + // &.contains-focused-filter { + // border-color: ${({ theme }) => theme.colors.primary.light2}; + // opacity: 1; + // box-shadow: 0px 0px 8px ${({ theme }) => + theme.colors.primary.light2}; + // pointer-events: auto; + // } + // } + // } `; class DashboardBuilder extends React.Component {