mirror of https://github.com/django/django.git
Fixed #34102 -- Limited wrapping long names to admin dashboard.
Regression in 15682cb003
.
This commit is contained in:
parent
37c5b8c07b
commit
78470043ae
|
@ -312,7 +312,6 @@ td, th {
|
|||
border-bottom: 1px solid var(--hairline-color);
|
||||
vertical-align: top;
|
||||
padding: 8px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
th {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
/* DASHBOARD */
|
||||
.dashboard td, .dashboard th {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.dashboard .module table th {
|
||||
width: 100%;
|
||||
|
|
Loading…
Reference in New Issue