diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/group/index.php | 2 | ||||
-rw-r--r-- | app/Template/group/users.php | 2 | ||||
-rw-r--r-- | app/Template/user_list/show.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/group/index.php b/app/Template/group/index.php index e4856a70..8664b5a8 100644 --- a/app/Template/group/index.php +++ b/app/Template/group/index.php @@ -8,7 +8,7 @@ <?php if ($paginator->isEmpty()): ?> <p class="alert"><?= t('There is no group.') ?></p> <?php else: ?> - <table class="table-fixed table-scrolling"> + <table class="table-fixed table-scrolling table-hover"> <tr> <th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th> <th><?= $paginator->order(t('Name'), 'name') ?></th> diff --git a/app/Template/group/users.php b/app/Template/group/users.php index 268f28de..ea30a452 100644 --- a/app/Template/group/users.php +++ b/app/Template/group/users.php @@ -8,7 +8,7 @@ <?php if ($paginator->isEmpty()): ?> <p class="alert"><?= t('There is no user in this group.') ?></p> <?php else: ?> - <table class="table-striped table-scrolling"> + <table class="table-striped table-scrolling table-hover"> <tr> <th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th> <th><?= $paginator->order(t('Username'), 'username') ?></th> diff --git a/app/Template/user_list/show.php b/app/Template/user_list/show.php index dad5442a..b881837a 100644 --- a/app/Template/user_list/show.php +++ b/app/Template/user_list/show.php @@ -20,7 +20,7 @@ <?php if ($paginator->isEmpty()): ?> <p class="alert"><?= t('No user') ?></p> <?php else: ?> - <table class="table-scrolling table-striped"> + <table class="table-scrolling table-striped table-hover"> <tr> <th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th> <th class="column-18"><?= $paginator->order(t('Username'), 'username') ?></th> |