Properly clip long subjects in recipient row box.

This fixes Trac #912.

My guess is that 'overflow: hidden hidden' was just being interpreted
as no setting on the overflow, which is why this was broken.

Regardless, this fix seems to work in Firefox and Chrome.

(imported from commit a08ddc5db97ee1e8a65a278c0d278e823afae65d)
This commit is contained in:
Waseem Daher 2013-02-17 17:31:16 -05:00
parent 8b6b950b1d
commit 73372882cb
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ td.pointer {
vertical-align: middle;
text-align: left;
/* We can overflow-y if the font size gets big */
overflow: hidden hidden;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: bold;