mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +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.
16 lines
924 B
Handlebars
16 lines
924 B
Handlebars
<div class="member_list_container" data-simplebar data-simplebar-tab-index="-1">
|
|
<div class="member_list_loading_indicator"></div>
|
|
<table class="member-list table table-striped">
|
|
<thead class="table-sticky-headers">
|
|
<th class="panel_user_list" data-sort="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>
|
|
<th class="remove-button-column" {{#unless can_remove_members}}style="display:none"{{/unless}}></th>
|
|
</thead>
|
|
<tbody class="member_table" data-empty="{{t 'This group has no members.' }}" data-search-results-empty="{{t 'No group members match your current filter.'}}"></tbody>
|
|
</table>
|
|
</div>
|