Commit aeafdf93 authored by Tim Graham's avatar Tim Graham
Browse files

[1.8.x] Fixed #24784 -- Fixed visibility regression in admin's FK widget.

Backport of fb94e7b8 from master
parent b261ab2e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ form .aligned table p {
}

form .aligned p.help {
    clear: left;
    padding-left: 38px;
}

+1 −0
Original line number Diff line number Diff line
@@ -579,6 +579,7 @@ ul.orderer li.deleted:hover, ul.orderer li.deleted a.selector:hover {

/* RELATED WIDGET WRAPPER */
.related-widget-wrapper {
    float: left;       /* display properly in form rows with multiple fields */
    overflow: hidden;  /* clear floated contents */
}

+3 −0
Original line number Diff line number Diff line
@@ -37,3 +37,6 @@ Bugfixes
* On PostgreSQL, when no access is granted for the ``postgres`` database,
  Django now falls back to the default database when it normally requires a
  "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`).