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

View File

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