Files
zulip/static/templates/user_sidebar_actions.handlebars
Waseem Daher 0c52f4dd47 Consistently bold things in the sidebar popovers.
I'm not saying it's beautiful, but prior to this we bolded
the topic name, but we didn't bold the stream name or user name.
Now we uniformly bold the name of the thing you're taking
action on.

(imported from commit f48b9d267b73858263541a905f6fd7fd626068ba)
2013-10-04 01:36:34 -04:00

23 lines
575 B
Handlebars

{{! Contents of the "user actions" popup }}
<ul class="nav nav-list user_popover" data-email="{{email}}">
<li>
<a class="narrow_to_private_messages">
<i class="icon-vector-user"></i>
Narrow to private messages with <b>{{name}}</b>
</a>
</li>
<li>
<a class="narrow_to_messages_sent">
<i class="icon-vector-bullhorn"></i>
Narrow to messages sent by <b>{{name}}</b>
</a>
</li>
<li>
<a class="compose_private_message">
<i class="icon-vector-edit"></i>
Compose a message to <b>{{name}}</b>
</a>
</li>
</ul>