mirror of
https://github.com/django/django.git
synced 2024-11-30 07:06:18 +01:00
Fixed overflow for the "Recent Actions" widget on the admin index.
Previously the CSS targeted "li.changelink" and therefore didn't work for the "add" and "delete" actions. Refs #14868.
This commit is contained in:
parent
2ac89012d8
commit
33fc083b0d
@ -23,7 +23,7 @@ ul.actionlist li {
|
|||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.actionlist li.changelink {
|
ul.actionlist li {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-o-text-overflow: ellipsis;
|
-o-text-overflow: ellipsis;
|
||||||
|
Loading…
Reference in New Issue
Block a user