Skip to content

Commit

Permalink
Fixed #35096 -- Corrected alignment for error lists in admin "wide" f…
Browse files Browse the repository at this point in the history
…orms.

Regression in be06c39 (LTR) and
b34a477 (RTL).
  • Loading branch information
fsbraun authored Jan 9, 2024
1 parent 1b0a899 commit 6dae408
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions django/contrib/admin/static/admin/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ fieldset .fieldBox {
}

form .wide p.help,
form .wide ul.errorlist,
form .wide div.help {
padding-left: 50px;
}
Expand Down
4 changes: 3 additions & 1 deletion django/contrib/admin/static/admin/css/rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ form .aligned p.time div.help.timezonewarning {
padding-right: 0;
}

form .wide p.help, form .wide div.help {
form .wide p.help,
form .wide ul.errorlist,
form .wide div.help {
padding-left: 0;
padding-right: 50px;
}
Expand Down

0 comments on commit 6dae408

Please sign in to comment.