Fix the column widths of the user page multi list.

The width of em units were varying across platforms wrt the box size.
This commit is contained in:
Max Goodman
2013-07-22 00:49:13 -07:00
parent 00a8ea3fd5
commit 6e4f2d8d15

View File

@@ -5098,9 +5098,11 @@ table.calendar {
#side-multi-list {
li {
@columns: 3;
@column-spacing: 3px;
display: inline-block;
width: 7.5em;
margin-right: .5em;
width: 288px / @columns - @column-spacing;
margin-right: @column-spacing;
text-overflow: ellipsis;
overflow: hidden;
}