<xf:extension name="icon_cell">
<div class="structItem-cell structItem-cell--icon">
<div class="structItem-iconContainer">
<xf:avatar user="$thread.User" size="s" defaultname="{$thread.username}" />
<xf:if is="$thread.getUserPostCount()">
<xf:avatar user="$xf.visitor"...
<xf:extension name="icon_cell">
<div class="structItem-cell structItem-cell--icon">
<div class="structItem-iconContainer">
<xf:avatar user="$thread.User" size="s" defaultname="{$thread.username}" />
<xf:if is="$thread.getUserPostCount()">
<xf:avatar user="$xf.visitor" size="s"
href=""
class="avatar--separated structItem-secondaryIcon"
tabindex="0"
data-xf-init="tooltip"
data-trigger="auto"
title="{{ phrase('you_have_posted_x_messages_in_this_thread', {'count': $thread.getUserPostCount() }) }}" />
</xf:if>
</div>
</div>
</xf:extension>
<xf:extension name="icon_cell">
<div class="structItem-cell structItem-cell--iconIcon">
<xf:if is="$thread.getUserPostCount()">
<xf:fa icon="fa-asterisk" data-xf-init="tooltip" title="{{ phrase('you_have_posted_x_messages_in_this_thread', {'count': $thread.getUserPostCount() }) }}" />
</xf:if>
<xf:if is="$thread.sticky">
<xf:fa icon="fa-thumbtack" data-xf-init="tooltip" title="{{ phrase('sticky') }}" />
<xf:elseif is="$thread.discussion_state == 'deleted'" />
<xf:fa icon="fa-trash" data-xf-init="tooltip" title="{{ phrase('deleted') }}" />
<xf:elseif is="$thread.discussion_type == 'redirect'" />
<xf:fa icon="fa-external-link-alt" data-xf-init="tooltip" title="{{ phrase('redirect') }}" />
<xf:elseif is="$thread.discussion_type == 'poll'" />
<xf:fa icon="fa-chart-bar" data-xf-init="tooltip" title="{{ phrase('poll') }}" />
<xf:else />
<xf:if is="$thread.isUnread()">
<xf:fa icon="fa-comments" data-xf-init="tooltip" title="{{ phrase('new_posts_unread') }}" />
<xf:else />
<xf:fa icon="fa-comments" />
</xf:if>
</xf:if>
</div>
</xf:extension>
.structItem-cell
{
&.structItem-cell--iconIcon
{
width: 54px;
text-align: center;
position: relative;
vertical-align: middle;
padding-right: 0;
span
{
font-size: @xf-fontSizeSmall;
display: block;
cursor: default;
}
.fa-asterisk
{
position: absolute;
top: 10px;
left: 10px;
font-size: 8px;
}
i
{
font-size: 20px;
color: @xf-textColorMuted;
}
.is-unread & i
{
color: @xf-textColor;
}
}
}