Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
Comment thread
msyavuz marked this conversation as resolved.
Outdated
Comment thread
EnxDev marked this conversation as resolved.
Outdated
}

table.pvtTable thead tr:last-of-type th,
Expand Down
Loading