Don't allow userinfo popover contents to overflow.

In particular, long email addresses.

(imported from commit 3ee9121c577e01277ac7888bed13bdb654ef77b9)
This commit is contained in:
Waseem Daher 2012-10-23 20:13:36 -04:00
parent f31526e37e
commit 689014fe23
2 changed files with 7 additions and 1 deletions

View File

@ -1,2 +1,3 @@
{{! Client-side Mustache template for the title of the little "userinfo" popup that shows up when you click on a name }}
<b>{{sender_full_name}}</b><br /><span class='my_email'>{{sender_email}}</span>
<span title="{{sender_full_name}}"><b>{{sender_full_name}}</b></span><br />
<span class='my_email' title="{{sender_email}}">{{sender_email}}</span>

View File

@ -448,3 +448,8 @@ table.floating_recipient {
.userinfo_popover a {
cursor: pointer;
}
.popover-title {
overflow-x: hidden;
text-overflow: ellipsis;
}