Skip to content

Commit

Permalink
Merge pull request #437 from desytech/386-fix-selected-row-style
Browse files Browse the repository at this point in the history
Fix selected row style
  • Loading branch information
alessandrojcm authored Nov 10, 2024
2 parents 36bb1b3 + 2f0a9d4 commit f5ca287
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
/* end column pinning styles */
/* row pinning styles */
&[data-row-pinned] {
background-color: var(--mantine-color-body);
background-color: var(--mrt-pinned-row-background-color, --mantine-color-body);
bottom: calc(var(--mrt-pinned-row-bottom) * 1px);
opacity: 0.97;
top: calc(var(--mrt-pinned-row-top) * 1px);
Expand Down Expand Up @@ -141,7 +141,7 @@

/* selection styles */
&[data-selected] {
background-color: var(--mantine-color-body);
background-color: var(--mrt-selected-row-background-color, --mantine-color-body);

td {
&[data-column-pinned] {
Expand Down

0 comments on commit f5ca287

Please sign in to comment.