mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 00:18:12 +00:00
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)
23 lines
575 B
Handlebars
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>
|