From 4eb2911150778eb3b8e4d2a184de4c2b76dfeeff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20M=C3=BCller=20=28ChaoticByte=29?= Date: Tue, 31 Oct 2023 18:17:12 +0100 Subject: [PATCH] Fixed round corners on tables for Firefox --- app/static/css/main.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/static/css/main.css b/app/static/css/main.css index 0387a51..4ba0fc7 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -97,11 +97,12 @@ table { border-radius: var(--border-radius); } -tr { +tr > th, +tr > td { background: var(--bg-color); } -tr:nth-child(2n+2) { +tr:nth-child(2n+2) > td { background: var(--bg-color2); }