diff --git a/themes/finc/scss/compiled.scss b/themes/finc/scss/compiled.scss index 316251e5e1e15dac214d18251eceb3a7e283a80f..77b05a8f6482be26ffdf73221e12cfaedc75813d 100644 --- a/themes/finc/scss/compiled.scss +++ b/themes/finc/scss/compiled.scss @@ -1862,7 +1862,8 @@ footer { } } -.search-controls-div { +.limit-inner, +.sort-inner { display: inline-block; } @@ -1895,7 +1896,8 @@ footer { } // Place the refresh button near to the select box - .search-controls-div { + .limit-inner, + .sort-inner { display: flex; } } diff --git a/themes/finc/templates/search/controls/limit.phtml b/themes/finc/templates/search/controls/limit.phtml index 8c34fc5bc7c59e9b45cfec87ffa22e854c485ad9..d90750005b5f49a86ae0a44a6965f312c3bffddc 100644 --- a/themes/finc/templates/search/controls/limit.phtml +++ b/themes/finc/templates/search/controls/limit.phtml @@ -5,7 +5,7 @@ <?php /* finc: DO NOT use class 'form-inline' as it messes up the select box */ ?> <form class="limit" action="<?=$this->currentPath() . $this->results->getUrlQuery()->setLimit(null)?>" method="post"> <label for="limit"><?=$this->transEsc('Results per page')?></label> - <div class="search-controls-div"> + <div class="limit-inner"> <?php /* finc: DO NOT use class 'form-control' as it messes up the select box */ ?> <select id="limit" name="limit"> <?php foreach ($limitList as $limitVal => $limitData): ?> diff --git a/themes/finc/templates/search/controls/sort.phtml b/themes/finc/templates/search/controls/sort.phtml index 557a995a4dc38021cd6812228a1263145acd9e0b..ba9d20221c30bfdea7103b55cdf4ec63204bc914 100644 --- a/themes/finc/templates/search/controls/sort.phtml +++ b/themes/finc/templates/search/controls/sort.phtml @@ -5,7 +5,7 @@ <form class="search-sort text-right" action="<?=$this->currentPath()?>" method="get" name="sort"> <?=$this->results->getUrlQuery()->asHiddenFields(['sort' => '/.*/']);?> <label for="sort_options_1"><?=$this->transEsc('Sort')?></label> - <div class="search-controls-div"> + <div class="sort-inner"> <?php /* finc: DO NOT use class 'form-control' as it messes up the select box */ ?> <select id="sort_options_1" name="sort"> <?php foreach ($list as $sortType => $sortData): ?>