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.
This commit is contained in:
Deco Vander 2025-07-03 21:06:33 -04:00
parent f276c5e270
commit ebb5c06773

View file

@ -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 {