mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This commit removes the "Remove" and "Unsubscribe" action buttons from various tables and replaces them with icon buttons using the "close" icon. Additionally, previously the rows with and without a remove button had different heights. This commit updates the fixed `px` values to `em` units to ensure equal height for all rows, regardless of whether a remove-subscription button is present. Fixes: #34874.
18 lines
958 B
Handlebars
18 lines
958 B
Handlebars
<div class="subscriber_list_container" data-simplebar data-simplebar-tab-index="-1">
|
|
<div class="subscriber_list_loading_indicator"></div>
|
|
<table id="stream_members_list" class="subscriber-list table table-striped">
|
|
<thead class="table-sticky-headers">
|
|
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}
|
|
<i class="table-sortable-arrow zulip-icon zulip-icon-sort-arrow-down"></i>
|
|
</th>
|
|
<th class="settings-email-column" data-sort="email">{{t "Email" }}
|
|
<i class="table-sortable-arrow zulip-icon zulip-icon-sort-arrow-down"></i>
|
|
</th>
|
|
{{#if can_remove_subscribers}}
|
|
<th></th>
|
|
{{/if}}
|
|
</thead>
|
|
<tbody class="subscriber_table" data-empty="{{t 'This channel has no subscribers.' }}" data-search-results-empty="{{t 'No channel subscribers match your current filter.'}}"></tbody>
|
|
</table>
|
|
</div>
|