mirror of
https://github.com/django/django.git
synced 2025-09-27 20:49:21 +00:00
Fixed #14868 -- Added CSS rule to prevent long text from overflowing the "recent actions" box on the admin index page. Thanks, Chris Adams.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14892 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
674c671cae
commit
1aca34cde2
1 changed files with 6 additions and 0 deletions
|
@ -22,3 +22,9 @@
|
||||||
ul.actionlist li {
|
ul.actionlist li {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.actionlist li.changelink {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
-o-text-overflow: ellipsis;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue