Update link color on delete page links

This commit is contained in:
Erin 2024-05-23 14:51:51 -07:00
parent 1b764c22ff
commit 5d438a3b40
No known key found for this signature in database
GPG key ID: 1CAD275313C62460

View file

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