Add title attribute to linkflair span

The default stylesheet sets a low max-width on the linkflair span,
so long flair is often cut off on the front page. This will allow
mousing over the flair to see the full text.
This commit is contained in:
Chad Birch
2013-03-11 01:03:44 -06:00
parent 8730de1220
commit ebb1e2d568

View File

@@ -78,7 +78,7 @@
<%def name="flair()">
%if c.user.pref_show_link_flair and thing.flair_text:
<span class="linkflairlabel">${thing.flair_text}</span>
<span class="linkflairlabel" title="${thing.flair_text}">${thing.flair_text}</span>
%endif
</%def>