diff options
| author | Kirill Isakov <ukwt@ya.ru> | 2016-04-24 03:02:33 +0600 |
|---|---|---|
| committer | Kirill Isakov <ukwt@ya.ru> | 2016-04-24 03:02:33 +0600 |
| commit | 1faf1b645b25745ac887529605727850e0d86d84 (patch) | |
| tree | 576ede5687b7755370a24756575d4335abb4a871 /searx/static/plugins/js | |
| parent | 3246541bdc405f269179ec737b83772b926c43a6 (diff) | |
Set vim-hotkeys help panels to same height
Diffstat (limited to 'searx/static/plugins/js')
| -rw-r--r-- | searx/static/plugins/js/vim_hotkeys.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/static/plugins/js/vim_hotkeys.js b/searx/static/plugins/js/vim_hotkeys.js index 3aadae288..fd47463ba 100644 --- a/searx/static/plugins/js/vim_hotkeys.js +++ b/searx/static/plugins/js/vim_hotkeys.js @@ -207,11 +207,11 @@ $(document).ready(function() { var first = i % 2 === 0; if (first) { - html += '<div class="row">'; + html += '<div class="row dflex">'; } - html += '<div class="col-sm-' + (first && lastCategory ? 12 : 6) + '">'; + html += '<div class="col-sm-' + (first && lastCategory ? 12 : 6) + ' dflex">'; - html += '<div class="panel panel-default">'; + html += '<div class="panel panel-default iflex">'; html += '<div class="panel-heading">' + cat[0].cat + '</div>'; html += '<div class="panel-body">'; html += '<ul class="list-unstyled">'; |