Fixed #31853 -- Fixed wrapping of translated action labels in admin sidebar.

This commit is contained in:
007gzs 2020-08-05 14:01:24 +08:00 committed by Carlton Gibson
parent b23216d9d0
commit b0af56f639
2 changed files with 6 additions and 1 deletions

View File

@ -78,6 +78,10 @@
padding-left: 16px;
}
#nav-sidebar .module td {
white-space: nowrap;
}
[dir="rtl"] #nav-sidebar .module th,
[dir="rtl"] #nav-sidebar .module caption {
padding-left: 8px;

View File

@ -9,4 +9,5 @@ Django 3.1.1 fixes several bugs in 3.1.
Bugfixes
========
* ...
* Fixed wrapping of translated action labels in the admin's navigation sidebar
for East Asian languages (:ticket:`31853`).