diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-14 12:50:07 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-14 12:50:07 -0400 |
commit | e985e27281bffe82fb4e94a2fb1732f93c903be0 (patch) | |
tree | f07058b9382d7fc6511330a7ddf742ab900b2919 /app/Template/project_permission | |
parent | 2ca3cc7f722893e18d3bf62bd71a0f5629eba096 (diff) |
Make tables more responsive
Diffstat (limited to 'app/Template/project_permission')
-rw-r--r-- | app/Template/project_permission/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/project_permission/index.php b/app/Template/project_permission/index.php index d850ec50..c7b17782 100644 --- a/app/Template/project_permission/index.php +++ b/app/Template/project_permission/index.php @@ -9,7 +9,7 @@ <?php if (empty($users)): ?> <div class="alert"><?= t('No user have been allowed specifically.') ?></div> <?php else: ?> - <table> + <table class="table-scrolling"> <tr> <th class="column-50"><?= t('User') ?></th> <th><?= t('Role') ?></th> @@ -69,7 +69,7 @@ <?php if (empty($groups)): ?> <div class="alert"><?= t('No group have been allowed specifically.') ?></div> <?php else: ?> - <table> + <table class="table-scrolling"> <tr> <th class="column-50"><?= t('Group') ?></th> <th><?= t('Role') ?></th> |