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

Regression in be06c39abe (LTR) and
b34a4771a3 (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;
}