mirror of
https://github.com/django/django.git
synced 2024-12-27 03:25:58 +00:00
[5.0.x] Fixed #35012 -- Restored wrapping admin fieldsets with multiple fields per line.
Thanks James Gillard for the report. Regression in729266c6f2
. Backport of4aae864463
from main
This commit is contained in:
parent
5f89da0837
commit
8b0710cfc9
@ -26,6 +26,10 @@ form .form-row p {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.form-multiline {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.form-multiline > div {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
@ -9,4 +9,5 @@ Django 4.2.9 fixes a bug in 4.2.8.
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* ...
|
||||
* Fixed a regression in Django 4.2.8 where admin fields on the same line could
|
||||
overflow the page and become non-interactive (:ticket:`35012`).
|
||||
|
@ -24,3 +24,6 @@ Bugfixes
|
||||
* Fixed a bug in Django 5.0 that caused a migration crash on Oracle < 23c when
|
||||
adding a ``GeneratedField`` with ``output_field=BooleanField``
|
||||
(:ticket:`35018`).
|
||||
|
||||
* Fixed a regression in Django 5.0 where admin fields on the same line could
|
||||
overflow the page and become non-interactive (:ticket:`35012`).
|
||||
|
Loading…
Reference in New Issue
Block a user