mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
12 lines
569 B
Handlebars
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>
|