mirror of
https://github.com/django/django.git
synced 2025-07-26 22:54:17 +00:00
Fixed #24784 -- Fixed visibility regression in admin's FK widget.
This commit is contained in:
parent
b0b8f56d3a
commit
fb94e7b8cf
3 changed files with 5 additions and 0 deletions
|
@ -93,6 +93,7 @@ form .aligned table p {
|
||||||
}
|
}
|
||||||
|
|
||||||
form .aligned p.help {
|
form .aligned p.help {
|
||||||
|
clear: left;
|
||||||
padding-left: 38px;
|
padding-left: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -610,6 +610,7 @@ ul.orderer li.deleted:hover, ul.orderer li.deleted a.selector:hover {
|
||||||
|
|
||||||
/* RELATED WIDGET WRAPPER */
|
/* RELATED WIDGET WRAPPER */
|
||||||
.related-widget-wrapper {
|
.related-widget-wrapper {
|
||||||
|
float: left; /* display properly in form rows with multiple fields */
|
||||||
overflow: hidden; /* clear floated contents */
|
overflow: hidden; /* clear floated contents */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,3 +37,6 @@ Bugfixes
|
||||||
* On PostgreSQL, when no access is granted for the ``postgres`` database,
|
* On PostgreSQL, when no access is granted for the ``postgres`` database,
|
||||||
Django now falls back to the default database when it normally requires a
|
Django now falls back to the default database when it normally requires a
|
||||||
"no database" connection (:ticket:`24791`).
|
"no database" connection (:ticket:`24791`).
|
||||||
|
|
||||||
|
* Fixed display of ``contrib.admin``’s ``ForeignKey`` widget when it's used
|
||||||
|
in a row with other fields (:ticket:`24784`).
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue