diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-08 21:54:45 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-08 21:54:45 -0400 |
commit | 195fae86d663c81cc3faa7653d1b7fe8cd6a27ce (patch) | |
tree | 6262651f765b8fe9a921090c5d344814a66a6674 /app/Template/dashboard | |
parent | fd0bea2187b33e2e90296882dc2e03c2557d65e9 (diff) |
Make filter box and project header more responsive
Diffstat (limited to 'app/Template/dashboard')
-rw-r--r-- | app/Template/dashboard/show.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/Template/dashboard/show.php b/app/Template/dashboard/show.php index 637b60f8..cb18b79d 100644 --- a/app/Template/dashboard/show.php +++ b/app/Template/dashboard/show.php @@ -2,8 +2,13 @@ <form method="get" action="<?= $this->url->dir() ?>" class="search"> <?= $this->form->hidden('controller', array('controller' => 'SearchController')) ?> <?= $this->form->hidden('action', array('action' => 'index')) ?> - <?= $this->form->text('search', array(), array(), array('placeholder="'.t('Search').'"'), 'form-input-large') ?> - <?= $this->render('app/filters_helper') ?> + + <div class="input-addon"> + <?= $this->form->text('search', array(), array(), array('placeholder="'.t('Search').'"'), 'input-addon-field') ?> + <div class="input-addon-item"> + <?= $this->render('app/filters_helper') ?> + </div> + </div> </form> </div> |