1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Fixed #31854 -- Fixed wrapping of long model names in admin's sidebar.

This commit is contained in:
Mariusz Felisiak 2020-08-05 09:11:06 +02:00 committed by Carlton Gibson
parent b0af56f639
commit e70dc506d7
2 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,7 @@
#nav-sidebar .module th { #nav-sidebar .module th {
width: 100%; width: 100%;
overflow-wrap: anywhere;
} }
#nav-sidebar .module th, #nav-sidebar .module th,

View File

@ -11,3 +11,6 @@ Bugfixes
* Fixed wrapping of translated action labels in the admin's navigation sidebar * Fixed wrapping of translated action labels in the admin's navigation sidebar
for East Asian languages (:ticket:`31853`). for East Asian languages (:ticket:`31853`).
* Fixed wrapping of long model names in the admin's navigation sidebar
(:ticket:`31854`).