1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #35012 -- Restored wrapping admin fieldsets with multiple fields per line.

Thanks James Gillard for the report.

Regression in 729266c6f2.
This commit is contained in:
Tom Carrick
2023-12-08 17:35:37 +01:00
committed by Mariusz Felisiak
parent ed65610653
commit 4aae864463
3 changed files with 9 additions and 1 deletions

View File

@@ -26,6 +26,10 @@ form .form-row p {
display: flex;
}
.form-multiline {
flex-wrap: wrap;
}
.form-multiline > div {
padding-bottom: 10px;
}