mirror of https://github.com/zulip/zulip.git
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:
parent
8b6b950b1d
commit
73372882cb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue