mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-12 20:49:41 +02:00
Merge pull request #2216 from cisagov/es/2106-darkmode-link-contrast
2106: Fix links text color on Delete page dark mode
This commit is contained in:
commit
2bfb43ab2d
1 changed files with 12 additions and 1 deletions
|
@ -105,7 +105,7 @@ html[data-theme="light"] {
|
||||||
--close-button-bg: #333333;
|
--close-button-bg: #333333;
|
||||||
--close-button-hover-bg: #666666;
|
--close-button-hover-bg: #666666;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dark mode django (bug due to scss cascade) and USWDS tables
|
// Dark mode django (bug due to scss cascade) and USWDS tables
|
||||||
.change-list .usa-table,
|
.change-list .usa-table,
|
||||||
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
|
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
|
||||||
|
@ -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,11 @@ 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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue