fix: Columns bleeding into other cells (#36134)

Co-authored-by: Diego Pucci <diegopucci.me@gmail.com>
Co-authored-by: Geidō <60598000+geido@users.noreply.github.com>
This commit is contained in:
Enzo Martellucci
2025-11-25 10:09:13 +01:00
committed by GitHub
parent 186693b840
commit 062e4a2922

View File

@@ -28,6 +28,7 @@ export const Styles = styled.div`
text-align: left;
margin: ${theme.sizeUnit}px;
border-collapse: separate;
border-spacing: 0;
font-family: ${theme.fontFamily};
line-height: 1.4;
}
@@ -54,6 +55,12 @@ export const Styles = styled.div`
table.pvtTable tbody tr.pvtRowTotals {
position: ${isDashboardEditMode ? 'inherit' : 'sticky'};
bottom: 0;
background-color: ${theme.colorBgBase};
}
table.pvtTable tbody tr.pvtRowTotals th,
table.pvtTable tbody tr.pvtRowTotals td {
background-color: ${theme.colorBgBase};
}
table.pvtTable thead tr:last-of-type th,