feat(dashboard): change chart background option from "White" to "Solid" (#34655)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Kasia
2025-08-12 19:21:23 +02:00
committed by GitHub
parent e2a9f2dead
commit 698de7a38d
2 changed files with 3 additions and 3 deletions

View File

@@ -43,11 +43,11 @@ const BackgroundStyleOption = styled.div`
display: inline-block;
vertical-align: middle;
}
&.background--white {
&.background-style-option.background--white {
padding-left: 0;
background: transparent;
&:before {
background: ${theme.colors.grayscale.light5};
background: ${theme.colorBgContainer};
border: 1px solid ${theme.colorBorder};
}
}

View File

@@ -27,7 +27,7 @@ export default [
},
{
value: BACKGROUND_WHITE,
label: t('White'),
label: t('Solid'),
className: 'background--white',
},
];