From f9c0edbd0ce10440ed4f86ea6448c358dd017e70 Mon Sep 17 00:00:00 2001
From: Dan Brown <ssddanbrown@googlemail.com>
Date: Wed, 19 Oct 2022 11:15:17 +0100
Subject: [PATCH] Set fixed cell widths for users list table

To prevent certain cells squashing others.
Related to #3787.
---
 resources/views/users/index.blade.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/resources/views/users/index.blade.php b/resources/views/users/index.blade.php
index 953a12900..03eae2c00 100644
--- a/resources/views/users/index.blade.php
+++ b/resources/views/users/index.blade.php
@@ -25,14 +25,14 @@
 
             <table class="table">
                 <tr>
-                    <th></th>
-                    <th>
+                    <th width="9%"></th>
+                    <th width="36%">
                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'name']) }}">{{ trans('auth.name') }}</a>
                         /
                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'email']) }}">{{ trans('auth.email') }}</a>
                     </th>
-                    <th>{{ trans('settings.role_user_roles') }}</th>
-                    <th class="text-right">
+                    <th width="35%">{{ trans('settings.role_user_roles') }}</th>
+                    <th class="text-right" width="20%">
                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'last_activity_at']) }}">{{ trans('settings.users_latest_activity') }}</a>
                     </th>
                 </tr>