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:
Loic Bistuer 2013-08-13 17:38:29 +07:00
parent 2ac89012d8
commit 33fc083b0d
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ ul.actionlist li {
list-style-type: none;
}
ul.actionlist li.changelink {
ul.actionlist li {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
}