[3.1.x] Fixed #32127 -- Fixed admin change-form textarea layout for mid-sized displays.

Backport of 36bc47069c from master
This commit is contained in:
Josh Santos 2020-10-26 18:43:23 +07:00 committed by Carlton Gibson
parent d00127ccab
commit b3d667f20d
2 changed files with 5 additions and 1 deletions

View File

@ -217,7 +217,7 @@ input[type="submit"], button {
} }
textarea { textarea {
max-width: 518px; max-width: 100%;
max-height: 120px; max-height: 120px;
} }

View File

@ -53,3 +53,7 @@ Bugfixes
reset tokens (:ticket:`32130`). reset tokens (:ticket:`32130`).
* Added support for ``asgiref`` 3.3 (:ticket:`32128`). * Added support for ``asgiref`` 3.3 (:ticket:`32128`).
* Fixed a regression in Django 3.1 that caused incorrect textarea layout on
medium-sized screens in the admin change form view with the sidebar open
(:ticket:`32127`).