Skip to content

Commit

Permalink
[4.2.x] Fixed #35012 -- Restored wrapping admin fieldsets with multip…
Browse files Browse the repository at this point in the history
…le fields per line.

Thanks James Gillard for the report.

Regression in 729266c.

Backport of 4aae864 from main
  • Loading branch information
knyghty authored and felixxm committed Dec 13, 2023
1 parent d9ba0ea commit ca43990
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions django/contrib/admin/static/admin/css/forms.css
Expand Up @@ -26,6 +26,10 @@ form .form-row p {
display: flex;
}

.form-multiline {
flex-wrap: wrap;
}

.form-multiline > div {
padding-bottom: 10px;
}
Expand Down
3 changes: 2 additions & 1 deletion docs/releases/4.2.9.txt
Expand Up @@ -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`).

0 comments on commit ca43990

Please sign in to comment.