summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-12-17 09:27:01 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-22 21:04:35 -0500
commit7b12b917f2a14ba9fd417520acab62221a078a32 (patch)
treee389a09a6515b176c4bf2daf16cdfae524c002aa /docs
parent847b2badccbd87fc3e657725eb316b092265912d (diff)
[6.0.x] Fixed #36807 -- Fixed form field alignment under <fieldset> in the admin.
It isn't safe to set display: flex on <fieldset>, because on Safari this interferes with display: block on child divs. Thanks Paulo Coutinho for the report and Antoliny for the review. Regression in 4187da258fe212d494cb578a0bc2b52c4979ab95. Backport of 1eac2659a102d42490f9401b08782633fa51f3e3 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/6.0.1.txt b/docs/releases/6.0.1.txt
index 1580512409..790fa76e99 100644
--- a/docs/releases/6.0.1.txt
+++ b/docs/releases/6.0.1.txt
@@ -24,3 +24,6 @@ Bugfixes
* Fixed a regression in Django 6.0 that caused
:meth:`~django.db.models.query.QuerySet.bulk_create` to crash
when introspecting the connection on SQLite (:ticket:`36818`).
+
+* Fixed a visual regression in Django 6.0 for admin form fields grouped under a
+ ``<fieldset>`` in Safari (:ticket:`36807`).