mirror of https://github.com/django/django.git
Fixed #35096 -- Corrected alignment for error lists in admin "wide" forms.
Regression inbe06c39abe
(LTR) andb34a4771a3
(RTL).
This commit is contained in:
parent
1b0a8991ae
commit
6dae40839b
|
@ -195,6 +195,7 @@ fieldset .fieldBox {
|
|||
}
|
||||
|
||||
form .wide p.help,
|
||||
form .wide ul.errorlist,
|
||||
form .wide div.help {
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue