1
0
mirror of https://github.com/django/django.git synced 2025-03-26 01:00:46 +00:00

Fixed #35096 -- Corrected alignment for error lists in admin "wide" forms.

Regression in be06c39abe80ca650e37810d16d15ff60e8c9727 (LTR) and
b34a4771a3d4cd7829a1f38a0f6a7a0da519a724 (RTL).
This commit is contained in:
Fabian Braun 2024-01-09 14:18:42 +01:00 committed by GitHub
parent 1b0a8991ae
commit 6dae40839b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -195,6 +195,7 @@ fieldset .fieldBox {
}
form .wide p.help,
form .wide ul.errorlist,
form .wide div.help {
padding-left: 50px;
}

View File

@ -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;
}