Skip to content
Snippets Groups Projects
Unverified Commit d4baacbc authored by github-automation-metabase's avatar github-automation-metabase Committed by GitHub
Browse files

Update fullscreen dashboard filter on dark theme (#49343) (#49391)


* Update fullscreen dashboard filter on dark theme

* Use the latest base color name



---------

Co-authored-by: default avatarMahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
Co-authored-by: default avatarAleksandr Lesnenko <alxnddr@gmail.com>
parent 427395f7
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,18 @@ export const ParametersWidgetContainer = styled(FullWidthContainer)<{
? "var(--mb-color-border)"
: getDashboardBodyBgColor(isNightMode)};
`}
${({ isNightMode }) =>
isNightMode &&
css`
--mb-color-text-secondary: color-mix(
in srgb,
var(--mb-base-color-white) 65%,
transparent
);
--mb-color-border: var(--mb-base-color-orion-60);
--mb-color-background: var(--mb-color-bg-black);
`}
`;
export const ParametersAndCardsContainer = styled.div<{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment