1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #35121 -- Corrected color for links in the admin.

Thanks Collin Anderson for the report.

Regression in 6ad2738a8f.
This commit is contained in:
Salvo Polizzi
2024-01-18 10:21:12 +01:00
committed by Mariusz Felisiak
parent 51967b56c4
commit 10c7c7320b
2 changed files with 4 additions and 1 deletions

View File

@@ -102,7 +102,7 @@ body {
/* LINKS */
a:link, a:visited {
color: var(--body-fg);
color: var(--link-fg);
text-decoration: none;
transition: color 0.15s, background 0.15s;
}