Skip to content

Commit 56fefba

Browse files
Merge pull request #2074 from iamfaran/fix/1840-table-sort-colors
[Fix]: #1840 table theme sort color column
2 parents beccb4d + a182845 commit 56fefba

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/tableStyles.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,15 @@ export const TableWrapper = styled.div.attrs<{
267267
transition: background-color 0.3s;
268268
}
269269
270+
/* Ensure sorted column cells respect theme/row background instead of AntD default */
271+
&.ant-table-column-sort {
272+
background: transparent;
273+
}
274+
&.ant-table-cell-fix-left.ant-table-column-sort,
275+
&.ant-table-cell-fix-right.ant-table-column-sort {
276+
background: transparent;
277+
}
278+
270279
}
271280
272281
/* Fix for selected and hovered rows */

0 commit comments

Comments
 (0)