summaryrefslogtreecommitdiff
path: root/app/Template
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-14 22:22:04 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-14 22:22:04 -0500
commit5376bb9e0cf2aad9b12d6fde1f43f92854b55cf9 (patch)
treeaf4a54a3ff96445343e959a5d942527a1ad5403e /app/Template
parenta559dc0be739d6ff18749c17135ce3c403575171 (diff)
Add table-hover css class
Diffstat (limited to 'app/Template')
-rw-r--r--app/Template/group/index.php2
-rw-r--r--app/Template/group/users.php2
-rw-r--r--app/Template/user_list/show.php2
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>