From 64c88b2cba7ed995c08bcf258e93a45161b1c0c9 Mon Sep 17 00:00:00 2001 From: David Aaron Suddjian Date: Thu, 15 Oct 2020 18:04:12 -0700 Subject: [PATCH] temp: comment out more code --- .../dashboard/components/DashboardBuilder.jsx | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) 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 {