temp: comment out more code

This commit is contained in:
David Aaron Suddjian 2020-10-15 18:04:12 -07:00
parent 309b880e90
commit 64c88b2cba
1 changed files with 14 additions and 13 deletions

View File

@ -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 {