From 21fda841a71cb952c047e0eb3d3e8295e8485318 Mon Sep 17 00:00:00 2001 From: Erin <121973038+erinysong@users.noreply.github.com> Date: Fri, 31 May 2024 11:07:42 -0700 Subject: [PATCH] Update link colors on darkmode delete --- src/registrar/assets/sass/_theme/_admin.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/registrar/assets/sass/_theme/_admin.scss b/src/registrar/assets/sass/_theme/_admin.scss index 7501dc1f0..b08739072 100644 --- a/src/registrar/assets/sass/_theme/_admin.scss +++ b/src/registrar/assets/sass/_theme/_admin.scss @@ -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 {