Skip to content

Commit

Permalink
Fix row colors (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
heppu committed Apr 26, 2024
1 parent 52c6f29 commit 32ff2d9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions api/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -426,14 +426,19 @@ body.dark .tbody {
line-height: 40px;
}

.tr:nth-child(even) {
.tr:nth-last-child(odd) {
background: #eeeeee;
}

body.dark .tr:nth-child(even) {
body.dark .tr:nth-last-child(odd) {
background: #333333;
}

.tr:hover {
background: #B3FFAB;
cursor: pointer;
}

.left>.td:nth-child(1) {
order: 1;
}
Expand Down

0 comments on commit 32ff2d9

Please sign in to comment.