feat(theming): land Ant Design v5 overhaul — dynamic themes, real dark mode + massive styling refactor (#31590)

Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com>
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com>
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me>
Co-authored-by: Geido <60598000+geido@users.noreply.github.com>
Co-authored-by: Alexandru Soare <37236580+alexandrusoare@users.noreply.github.com>
Co-authored-by: Damian Pendrak <dpendrak@gmail.com>
Co-authored-by: Pius Iniobong <67148161+payose@users.noreply.github.com>
Co-authored-by: Enzo Martellucci <enzomartellucci@gmail.com>
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com>
This commit is contained in:
Maxime Beauchemin
2025-06-20 13:38:58 -07:00
committed by GitHub
parent 2cc1ef88c8
commit dd129fa403
1267 changed files with 32958 additions and 23592 deletions

View File

@@ -36,13 +36,13 @@ export default styled(Partition)`
.superset-legacy-chart-partition .chart {
display: block;
margin: auto;
font-size: ${theme.typography.sizes.s}px;
font-size: ${theme.fontSizeSM}px;
}
.superset-legacy-chart-partition rect {
stroke: ${theme.colors.grayscale.light2};
fill: ${theme.colors.grayscale.light1};
fill-opacity: ${theme.opacity.heavy};
fill-opacity: 80%;
transition: fill-opacity 180ms linear;
cursor: pointer;
}
@@ -52,8 +52,8 @@ export default styled(Partition)`
}
.superset-legacy-chart-partition g text {
font-weight: ${theme.typography.weights.bold};
fill: ${theme.colors.grayscale.dark1};
font-weight: ${theme.fontWeightStrong};
fill: ${theme.colorText};
}
.superset-legacy-chart-partition g:hover text {
@@ -65,15 +65,15 @@ export default styled(Partition)`
top: 0;
left: 0;
opacity: 0;
padding: ${theme.gridUnit}px;
padding: ${theme.sizeUnit}px;
pointer-events: none;
background-color: ${theme.colors.grayscale.dark2};
border-radius: ${theme.gridUnit}px;
border-radius: ${theme.borderRadius}px;
}
.partition-tooltip td {
padding-left: ${theme.gridUnit}px;
font-size: ${theme.typography.sizes.s}px;
padding-left: ${theme.sizeUnit}px;
font-size: ${theme.fontSizeSM}px;
color: ${theme.colors.grayscale.light5};
}
`}