1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +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;
}

View File

@ -12,3 +12,6 @@ Bugfixes
* Reallowed, following a regression in Django 5.0.1, filtering against local
foreign keys not included in :attr:`.ModelAdmin.list_filter`
(:ticket:`35087`).
* Fixed a regression in Django 5.0 where links in the admin had an incorrect
color (:ticket:`35121`).