Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
[C-708] Fix the table styles for sorted columns for dark mode and mat…
Browse files Browse the repository at this point in the history
…rix mode (#1644)
  • Loading branch information
Kyle-Shanks authored Jul 23, 2022
1 parent 8280c0e commit 3ca632f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@

/* Don't highlight column even if sorting by values */
:global(.ant-table-thead > tr > th.ant-table-column-sort),
:global(.ant-table-tbody > tr > td.ant-table-column-sort),
:global(.ant-table-thead > tr > th .ant-table-column-sorters:before) {
background: inherit;
background: var(--neutral-light-10);
}
:global(.ant-table-tbody > tr > td.ant-table-column-sort) {
background: var(--white);
}
:global(.ant-table-thead > tr > th .ant-table-column-sorters:hover:before) {
background: none !important;
Expand Down

0 comments on commit 3ca632f

Please sign in to comment.