1
0
mirror of https://github.com/django/django.git synced 2025-03-13 19:00:45 +00:00

[4.2.x] Reverted "Fixed #34994, Fixed #35386 -- Applied checkbox-row CSS class unconditionally in Admin."

This reverts commit 0fc832676cd585fa420d583937b5b2318bc2c629.
This commit is contained in:
Sarah Boyce 2024-04-19 13:23:22 +02:00
parent 0fc832676c
commit 256f719cb3
2 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,7 @@
{% for field in line %}
<div>
{% if not line.fields|length == 1 and not field.is_readonly %}{{ field.errors }}{% endif %}
<div class="flex-container{% if not line.fields|length == 1 %} fieldBox{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% if not field.is_readonly and field.errors %} errors{% endif %}{% if field.field.is_hidden %} hidden{% endif %}{% endif %}{% if field.is_checkbox %} checkbox-row{% endif %}">
<div class="flex-container{% if not line.fields|length == 1 %} fieldBox{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% if not field.is_readonly and field.errors %} errors{% endif %}{% if field.field.is_hidden %} hidden{% endif %}{% elif field.is_checkbox %} checkbox-row{% endif %}">
{% if field.is_checkbox %}
{{ field.field }}{{ field.label_tag }}
{% else %}

View File

@ -12,7 +12,3 @@ Bugfixes
* Fixed a crash in Django 4.2 when validating email max line lengths with
content decoded using the ``surrogateescape`` error handling scheme
(:ticket:`35361`).
* Fixed a regression in Django 4.2 where multiple checkboxes in the admin would
be centered on narrower screen widths (:ticket:`34994`) or have misaligned
labels (:ticket:`35386`).