fix(ColorPicker): restore alpha input visibility hidden by geostyler CSS (#38169)

Co-authored-by: Superset Dev <dev@superset.apache.org>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-03-05 20:45:11 -05:00
committed by GitHub
parent 17df85b5ed
commit 0d5ade6dd3

View File

@@ -98,6 +98,17 @@ export const GlobalStyles = () => {
[role='button'] {
cursor: pointer;
}
// Override geostyler CSS that hides AntD ColorPicker alpha input
// See: https://github.com/apache/superset/issues/34721
.ant-color-picker .ant-color-picker-alpha-input {
display: block;
}
.ant-color-picker .ant-color-picker-slider-alpha {
display: flex;
margin-top: ${theme.marginXS}px;
}
`}
/>
);