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.
12 lines
526 B
Handlebars
12 lines
526 B
Handlebars
<tr data-subgroup-id="{{group_id}}" class="hidden-remove-button-row">
|
|
<td class="subgroup-name panel_user_list">
|
|
{{> ../user_group_display_only_pill .}}
|
|
</td>
|
|
<td class="empty-email-col-for-user-group"></td>
|
|
{{#if can_remove_members}}
|
|
<td class="remove">
|
|
{{> ../components/icon_button icon="close" custom_classes="hidden-remove-button remove-subgroup-button tippy-zulip-delayed-tooltip" intent="danger" aria-label=(t "Remove") data-tippy-content=(t "Remove") }}
|
|
</td>
|
|
{{/if}}
|
|
</tr>
|