From 32ff2d9c40f65d9da30c0b24d4445f263ae42997 Mon Sep 17 00:00:00 2001 From: Henri Koski Date: Fri, 26 Apr 2024 16:29:35 +0300 Subject: [PATCH] Fix row colors (#25) --- api/assets/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/api/assets/style.css b/api/assets/style.css index 99158f3..d4c3696 100644 --- a/api/assets/style.css +++ b/api/assets/style.css @@ -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; }