Skip to content

Commit f9c0edb

Browse files
committed
Set fixed cell widths for users list table
To prevent certain cells squashing others. Related to #3787.
1 parent d084f22 commit f9c0edb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/users/index.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525

2626
<table class="table">
2727
<tr>
28-
<th></th>
29-
<th>
28+
<th width="9%"></th>
29+
<th width="36%">
3030
<a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'name']) }}">{{ trans('auth.name') }}</a>
3131
/
3232
<a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'email']) }}">{{ trans('auth.email') }}</a>
3333
</th>
34-
<th>{{ trans('settings.role_user_roles') }}</th>
35-
<th class="text-right">
34+
<th width="35%">{{ trans('settings.role_user_roles') }}</th>
35+
<th class="text-right" width="20%">
3636
<a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'last_activity_at']) }}">{{ trans('settings.users_latest_activity') }}</a>
3737
</th>
3838
</tr>

0 commit comments

Comments
 (0)