mirror of https://github.com/django/django.git
Fixed #32027 -- Fixed wrapping of long words in admin error messages.
This commit is contained in:
parent
054ab1e00f
commit
01c6caa3e6
|
@ -554,6 +554,7 @@ ul.messagelist li.error {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
background-position: 5px 12px;
|
background-position: 5px 12px;
|
||||||
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.errorlist {
|
ul.errorlist {
|
||||||
|
@ -567,6 +568,7 @@ ul.errorlist li {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.errorlist li:first-child {
|
ul.errorlist li:first-child {
|
||||||
|
|
Loading…
Reference in New Issue