From 4debf25cbb299c23bea8e464086421f7caa6c163 Mon Sep 17 00:00:00 2001 From: Diego Pucci Date: Mon, 17 Nov 2025 11:06:02 +0100 Subject: [PATCH 1/2] fix: Columns bleeding into other cells --- .../src/react-pivottable/Styles.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js b/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js index 327104c6b22a..200efffff76e 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js +++ b/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js @@ -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,13 @@ 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}; + z-index: 1; } table.pvtTable thead tr:last-of-type th, From 838f678bc8eab10ea5aa6e17c3921db9a1d43a77 Mon Sep 17 00:00:00 2001 From: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:38:32 +0100 Subject: [PATCH 2/2] Update Styles.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Geidō <60598000+geido@users.noreply.github.com> --- .../plugin-chart-pivot-table/src/react-pivottable/Styles.js | 1 - 1 file changed, 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js b/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js index 200efffff76e..12e6dbe33388 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js +++ b/superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js @@ -61,7 +61,6 @@ export const Styles = styled.div` table.pvtTable tbody tr.pvtRowTotals th, table.pvtTable tbody tr.pvtRowTotals td { background-color: ${theme.colorBgBase}; - z-index: 1; } table.pvtTable thead tr:last-of-type th,