Skip to content

Commit 2a21ef6

Browse files
EnxDevgeido
authored andcommitted
fix: Columns bleeding into other cells (#36134)
Co-authored-by: Diego Pucci <[email protected]> Co-authored-by: Geidō <[email protected]> (cherry picked from commit 062e4a2)
1 parent 72fbaa6 commit 2a21ef6

File tree

1 file changed

+7
-0
lines changed
  • superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable

1 file changed

+7
-0
lines changed

superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const Styles = styled.div`
2828
text-align: left;
2929
margin: ${theme.sizeUnit}px;
3030
border-collapse: separate;
31+
border-spacing: 0;
3132
font-family: ${theme.fontFamily};
3233
line-height: 1.4;
3334
}
@@ -54,6 +55,12 @@ export const Styles = styled.div`
5455
table.pvtTable tbody tr.pvtRowTotals {
5556
position: ${isDashboardEditMode ? 'inherit' : 'sticky'};
5657
bottom: 0;
58+
background-color: ${theme.colorBgBase};
59+
}
60+
61+
table.pvtTable tbody tr.pvtRowTotals th,
62+
table.pvtTable tbody tr.pvtRowTotals td {
63+
background-color: ${theme.colorBgBase};
5764
}
5865
5966
table.pvtTable thead tr:last-of-type th,

0 commit comments

Comments
 (0)