recent: Rename .recent_topics_participant_item.

This commit is contained in:
evykassirer 2023-09-06 14:44:39 -07:00 committed by Tim Abbott
parent 29b796db7a
commit 8896cb28cb
2 changed files with 4 additions and 4 deletions

View File

@ -265,7 +265,7 @@
flex-direction: row-reverse;
}
.recent_topics_participant_item {
.recent_view_participant_item {
height: 24px;
margin: 0;
padding: 0 1.5px;

View File

@ -94,18 +94,18 @@
<td class='recent_topic_users'>
<ul class="recent_topics_participants">
{{#if other_senders_count}}
<li class="recent_topics_participant_item tippy-zulip-tooltip" data-tooltip-template-id="recent_view_participant_overflow_tooltip:{{conversation_key}}">
<li class="recent_view_participant_item tippy-zulip-tooltip" data-tooltip-template-id="recent_view_participant_overflow_tooltip:{{conversation_key}}">
<span class="recent_view_participant_overflow">+{{other_senders_count}}</span>
</li>
<template id="recent_view_participant_overflow_tooltip:{{conversation_key}}">{{{other_sender_names_html}}}</template>
{{/if}}
{{#each senders}}
{{#if this.is_muted}}
<li class="recent_topics_participant_item participant_profile tippy-zulip-tooltip" data-tippy-content="{{t 'Muted user'}}" data-user-id="{{this.user_id}}">
<li class="recent_view_participant_item participant_profile tippy-zulip-tooltip" data-tippy-content="{{t 'Muted user'}}" data-user-id="{{this.user_id}}">
<span><i class="fa fa-user recent_view_participant_overflow"></i></span>
</li>
{{else}}
<li class="recent_topics_participant_item participant_profile tippy-zulip-tooltip" data-tippy-content="{{this.full_name}}" data-user-id="{{this.user_id}}">
<li class="recent_view_participant_item participant_profile tippy-zulip-tooltip" data-tippy-content="{{this.full_name}}" data-user-id="{{this.user_id}}">
<img src="{{this.avatar_url_small}}" class="recent_topics_participant_avatar" />
</li>
{{/if}}