1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #34102 -- Limited wrapping long names to admin dashboard.

Regression in 15682cb003.
This commit is contained in:
Collin Anderson
2022-10-18 15:16:31 -04:00
committed by GitHub
parent 37c5b8c07b
commit 78470043ae
2 changed files with 3 additions and 1 deletions

View File

@@ -312,7 +312,6 @@ td, th {
border-bottom: 1px solid var(--hairline-color);
vertical-align: top;
padding: 8px;
word-break: break-word;
}
th {

View File

@@ -1,4 +1,7 @@
/* DASHBOARD */
.dashboard td, .dashboard th {
word-break: break-word;
}
.dashboard .module table th {
width: 100%;