mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-18 10:29:23 +02:00
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:
commit
cb1c0dece0
1 changed files with 12 additions and 0 deletions
|
@ -126,6 +126,12 @@ html[data-theme="light"] {
|
|||
.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:not(.button) {
|
||||
color: #005288;
|
||||
}
|
||||
}
|
||||
|
||||
// Firefox needs this to be specifically set
|
||||
|
@ -149,6 +155,12 @@ 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:not(.button) {
|
||||
color: #005288;
|
||||
}
|
||||
}
|
||||
|
||||
#branding h1 a:link, #branding h1 a:visited {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue