Fix body.dashboard color in dark mode (affects Recent Actions panel in admin index)

This commit is contained in:
rachidatecs 2023-08-14 14:39:36 -04:00
parent ec7f70e8ae
commit 14e3548f81
No known key found for this signature in database
GPG key ID: 3CEBBFA7325E5525

View file

@ -109,7 +109,8 @@ html[data-theme="light"] {
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
.change-list .usa-table--borderless thead th,
.change-list .usa-table thead td,
.change-list .usa-table thead th {
.change-list .usa-table thead th,
body.dashboard {
color: var(--body-fg);
}
}
@ -120,7 +121,8 @@ html[data-theme="dark"] {
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
.change-list .usa-table--borderless thead th,
.change-list .usa-table thead td,
.change-list .usa-table thead th {
.change-list .usa-table thead th,
body.dashboard {
color: var(--body-fg);
}
}