fix(native-filters): Low contrast of empty state in dark mode (#34812)

This commit is contained in:
Kamil Gabryjelski
2025-08-22 11:28:06 +02:00
committed by GitHub
parent 3895b8b127
commit 59c01e016d
2 changed files with 1 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ const verticalStyle = (theme: SupersetTheme, width: number) => css`
background: linear-gradient(
${rgba(theme.colorBgLayout, 0)},
${theme.colorBgElevated} 20%
${theme.colorBgContainer} 20%
);
& > .filter-apply-button {

View File

@@ -70,7 +70,6 @@ const Bar = styled.div<{ width: number }>`
display: none;
&.open {
display: flex;
background-color: ${theme.colorBgBase};
}
`}
`;