From 5376bb9e0cf2aad9b12d6fde1f43f92854b55cf9 Mon Sep 17 00:00:00 2001
From: Frederic Guillot <fred@kanboard.net>
Date: Tue, 14 Feb 2017 22:22:04 -0500
Subject: Add table-hover css class

---
 app/Template/group/index.php    | 2 +-
 app/Template/group/users.php    | 2 +-
 app/Template/user_list/show.php | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

(limited to 'app/Template')

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>
-- 
cgit v1.2.3