From ebb5c067735692c5d490bfbae0e74a2519a04ba6 Mon Sep 17 00:00:00 2001 From: Deco Vander Date: Thu, 3 Jul 2025 21:06:33 -0400 Subject: [PATCH] Fix reports table text color in dark mode The admin table was working correctly because it explicitly sets 'color: var(--text-color)' on all table cells, but the main reports table (Table View on homepage) was missing this. Added 'color: var(--text-color)' to '.reports-table td' to ensure all table cells use the proper text color in both light and dark modes. This fixes the gray-on-gray readability issue in the details table view. --- public/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/public/style.css b/public/style.css index 68f5580..e1d9eb0 100644 --- a/public/style.css +++ b/public/style.css @@ -353,6 +353,7 @@ footer { padding: 12px; border-bottom: 1px solid var(--border-color); vertical-align: top; + color: var(--text-color); } .reports-table tr:hover {