diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-13 16:08:59 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-13 16:08:59 -0400 |
commit | a964350a64e0423aa98eb3a07dfdba4b6a00e3fa (patch) | |
tree | dc5089b2173fdc1edc6fc1e874d9c6e22294b6be /app/Template/board | |
parent | 0b7435b8827081341a331ecdd5546ac25121d87d (diff) |
UI: Improve tabindex for task forms
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/filters.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/board/filters.php b/app/Template/board/filters.php index bf2adfac..b80234a0 100644 --- a/app/Template/board/filters.php +++ b/app/Template/board/filters.php @@ -27,13 +27,13 @@ </span> </li> <li> - <?= $this->form->select('user_id', $users, array(), array(), array('data-placeholder="'.t('Filter by user').'"', 'data-notfound="'.t('No results match:').'"'), 'apply-filters chosen-select') ?> + <?= $this->form->select('user_id', $users, array(), array(), array('data-placeholder="'.t('Filter by user').'"', 'data-notfound="'.t('No results match:').'"', 'tabindex=="-1"'), 'apply-filters chosen-select') ?> </li> <li> - <?= $this->form->select('category_id', $categories, array(), array(), array('data-placeholder="'.t('Filter by category').'"', 'data-notfound="'.t('No results match:').'"'), 'apply-filters chosen-select') ?> + <?= $this->form->select('category_id', $categories, array(), array(), array('data-placeholder="'.t('Filter by category').'"', 'data-notfound="'.t('No results match:').'"', 'tabindex=="-1"'), 'apply-filters chosen-select') ?> </li> <li> - <select id="more-filters" multiple data-placeholder="<?= t('More filters') ?>" data-notfound="<?= t('No results match:') ?>" class="apply-filters hide-mobile"> + <select id="more-filters" multiple data-placeholder="<?= t('More filters') ?>" data-notfound="<?= t('No results match:') ?>" class="apply-filters hide-mobile" tabindex="-1"> <option value=""></option> <option value="filter-due-date"><?= t('Filter by due date') ?></option> <option value="filter-recent"><?= t('Filter recently updated') ?></option> |