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:
parent
f276c5e270
commit
ebb5c06773
1 changed files with 1 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue