1
0
mirror of https://github.com/django/django.git synced 2024-12-26 11:06:07 +00:00

[4.2.x] Fixed #34506 -- Fixed margin of ClearableFileInput in admin CSS.

Regression in 96a598356a.
Backport of 92537e83c1 from main
This commit is contained in:
Mariusz Felisiak 2023-04-21 19:49:59 +02:00
parent a4f7d935a2
commit 0a805cf42d
3 changed files with 3 additions and 5 deletions

View File

@ -620,7 +620,6 @@ input[type="submit"], button {
}
.aligned p.file-upload {
margin-left: 0;
font-size: 0.8125rem;
}

View File

@ -368,10 +368,6 @@ p.file-upload {
font-weight: bold;
}
.aligned p.file-upload {
margin-left: 170px;
}
.file-upload a {
font-weight: normal;
}

View File

@ -41,3 +41,6 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash of
:class:`~django.contrib.postgres.search.SearchHeadline` function with
``psycopg`` 3 (:ticket:`34486`).
* Fixed a regression in Django 4.2 that caused incorrect ``ClearableFileInput``
margins in the admin (:ticket:`34506`).