mirror of
https://github.com/Hopiu/django.git
synced 2026-03-30 21:00:24 +00:00
Fixed #34102 -- Limited wrapping long names to admin dashboard.
Regression in 15682cb003.
This commit is contained in:
parent
37c5b8c07b
commit
78470043ae
2 changed files with 3 additions and 1 deletions
|
|
@ -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 a new issue