Files
zulip/web/templates/user_group_settings/user_group_subgroup_entry.hbs
Sahil Batra 34cb0034e1 settings: Handle long names better in susbcribers and members list.
This commit updates the subscribers and group members table CSS to
use fixed layout. This helps in having user pill take the width if
available and we can show more characters.

Previously the width of name in user pill was set to have a max
width of 165px which meant the there was some empty unused space in
the rows especially on narrow screens when email column was hidden.

Fixes #35157.
2025-07-25 11:21:23 -07:00

12 lines
569 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 remove-button-wrapper remove-button-column">
{{> ../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>