Files
zulip/static/templates/group_pms.handlebars
Marco Burstein 307799113e right sidebar: Fix night-mode presence styling.
Fix the background color of night-mode presence indicators by setting
the background color to transparent instead of white when inactive.

Fix #10932.
2018-12-02 19:14:40 -08:00

15 lines
663 B
Handlebars

{{! User Presence rows }}
{{#each group_pms}}
<li data-user-ids="{{user_ids_string}}" class="group-pms-sidebar-entry narrow-filter">
<div class="selectable_sidebar_block">
{{#if fraction_present}}
<span class="group-pm-status-indicator" style="background:rgba(68,194,29,{{fraction_present}});"></span>
{{else}}
<span class="group-pm-status-indicator" style="background:none; border-color:rgb(127,127,127);"></span>
{{/if}}
<a href="{{href}}" data-name="{{name}}" title="{{name}}" class="group-pm-link">{{short_name}}</a>
<span class="count"><span class="value"></span></span>
</div>
</li>
{{/each}}