Fix contrast issue with filter headers in django admin

This commit is contained in:
rachidatecs 2023-08-16 11:53:55 -04:00
parent 14e3548f81
commit 4c9ddf727e
No known key found for this signature in database
GPG key ID: 3CEBBFA7325E5525

View file

@ -110,7 +110,9 @@ html[data-theme="light"] {
.change-list .usa-table--borderless thead th,
.change-list .usa-table thead td,
.change-list .usa-table thead th,
body.dashboard {
body.dashboard,
body.change-list,
body.change-form {
color: var(--body-fg);
}
}
@ -122,7 +124,9 @@ html[data-theme="dark"] {
.change-list .usa-table--borderless thead th,
.change-list .usa-table thead td,
.change-list .usa-table thead th,
body.dashboard {
body.dashboard,
body.change-list,
body.change-form {
color: var(--body-fg);
}
}