mirror of
https://github.com/django/django.git
synced 2025-01-18 14:24:39 +00:00
Fixed #35121 -- Corrected color for links in the admin.
Thanks Collin Anderson for the report. Regression in 6ad2738a8f32b94cbae742f212080fadf2dee421.
This commit is contained in:
parent
51967b56c4
commit
10c7c7320b
@ -102,7 +102,7 @@ body {
|
|||||||
/* LINKS */
|
/* LINKS */
|
||||||
|
|
||||||
a:link, a:visited {
|
a:link, a:visited {
|
||||||
color: var(--body-fg);
|
color: var(--link-fg);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: color 0.15s, background 0.15s;
|
transition: color 0.15s, background 0.15s;
|
||||||
}
|
}
|
||||||
|
@ -12,3 +12,6 @@ Bugfixes
|
|||||||
* Reallowed, following a regression in Django 5.0.1, filtering against local
|
* Reallowed, following a regression in Django 5.0.1, filtering against local
|
||||||
foreign keys not included in :attr:`.ModelAdmin.list_filter`
|
foreign keys not included in :attr:`.ModelAdmin.list_filter`
|
||||||
(:ticket:`35087`).
|
(:ticket:`35087`).
|
||||||
|
|
||||||
|
* Fixed a regression in Django 5.0 where links in the admin had an incorrect
|
||||||
|
color (:ticket:`35121`).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user