Skip to content

Commit

Permalink
fix(pix-table): fix zebra color
Browse files Browse the repository at this point in the history
  • Loading branch information
xav-car committed Feb 27, 2025
1 parent 537e5d4 commit 67b588d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/styles/_pix-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
min-width: 100%;
border-collapse: collapse;

tbody > tr:nth-of-type(even):not(.pix-table__clickable-row:hover):not(.pix-table__clickable-row:focus):not(.pix-table__clickable-row:active) {
background-color: var(--pix-neutral-20);
tbody > tr:nth-of-type(even):not(.pix-table__clickable-row:hover, .pix-table__clickable-row:focus, .pix-table__clickable-row:active) {
background-color: rgba(var(--pix-neutral-20-inline), 0.80);
}

thead.pix-table-header {
Expand Down

0 comments on commit 67b588d

Please sign in to comment.