From 6444f60bd2ad20cb8557017a4d2a58e14eb4146d Mon Sep 17 00:00:00 2001 From: Kouya Heika Date: Wed, 6 Aug 2025 22:52:24 -0500 Subject: [PATCH] ensure alternating row table style doesn't affect sub-tables Signed-off-by: Kouya Heika --- core/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/style.css b/core/style.css index f1ac679..76d2fa4 100644 --- a/core/style.css +++ b/core/style.css @@ -57,7 +57,8 @@ textarea, input { box-sizing: border-box; } -table.alternating tr:nth-of-type(even) { +table.alternating > tr:nth-of-type(even), +table.alternating > tbody > tr:nth-of-type(even) { background: var(--table-alternate); }