fix(dashboard): revert cell hover and active colors to grayscale (#36991)

This commit is contained in:
Reynold Morel
2026-01-13 15:22:37 -04:00
committed by GitHub
parent fd3eea0557
commit 0404c99e39
3 changed files with 5 additions and 5 deletions

View File

@@ -287,14 +287,14 @@ export const StyledChartContainer = styled.div<{
.dt-is-filter {
cursor: pointer;
:hover {
background-color: ${theme.colorPrimaryBgHover};
background-color: ${theme.colorFillContentHover};
}
}
.dt-is-active-filter {
background: ${theme.colorPrimaryBg};
:hover {
background-color: ${theme.colorPrimaryBgHover};
background-color: ${theme.colorFillContentHover};
}
}