Merge pull request #2245 from cisagov/es/2106-remerge-darkmode-link-fix

2106: Re-add darkmode link color fix on admin delete page
This commit is contained in:
Erin Song 2024-05-31 14:12:43 -07:00 committed by GitHub
commit cb1c0dece0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,6 +126,12 @@ html[data-theme="light"] {
.usa-table td { .usa-table td {
background-color: transparent; background-color: transparent;
} }
// Sets darker color on delete page links.
// Remove when dark mode successfully applies to Django delete page.
.delete-confirmation .content a:not(.button) {
color: #005288;
}
} }
// Firefox needs this to be specifically set // Firefox needs this to be specifically set
@ -149,6 +155,12 @@ html[data-theme="dark"] {
.usa-table td { .usa-table td {
background-color: transparent; background-color: transparent;
} }
// Sets darker color on delete page links.
// Remove when dark mode successfully applies to Django delete page.
.delete-confirmation .content a:not(.button) {
color: #005288;
}
} }
#branding h1 a:link, #branding h1 a:visited { #branding h1 a:link, #branding h1 a:visited {