diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php
index 362213bb75..b0bc0bf1d1 100644
--- a/pandora_console/general/header.php
+++ b/pandora_console/general/header.php
@@ -126,7 +126,7 @@ if ($config['menu_type'] == 'classic') {
onkeyup="showinterpreter()" class="search_input"/>';
- $search_bar .= '
';
+ $search_bar .= '';
// $search_bar .= 'onClick="javascript: document.quicksearch.submit()"';
$search_bar .= "";
$search_bar .= '';
diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php
index af0cb0443e..727579f167 100644
--- a/pandora_console/include/class/OrderInterpreter.class.php
+++ b/pandora_console/include/class/OrderInterpreter.class.php
@@ -385,7 +385,7 @@ class OrderInterpreter extends Wizard
$more_results = 0;
if ($text !== '') {
- echo '';
+ echo '
';
echo '
';
foreach ($this->pages_menu as $key => $value) {
diff --git a/pandora_console/include/styles/order_interpreter.css b/pandora_console/include/styles/order_interpreter.css
index 84c903969d..6af20c68c5 100644
--- a/pandora_console/include/styles/order_interpreter.css
+++ b/pandora_console/include/styles/order_interpreter.css
@@ -2,15 +2,15 @@ div.show_result_interpreter {
background-color: #fff;
color: #000;
border: 1px solid #e2e2e2;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
padding-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
box-shadow: 0px 0px 15px -4px #dadada;
position: absolute;
z-index: 1;
- width: 302px;
+ width: 300px;
}
.more_results {
@@ -35,8 +35,8 @@ div.show_result_interpreter {
color: #777;
font-family: "Open Sans", sans-serif;
font-size: 8.5pt;
- border-top-left-radius: 50px;
- border-top-right-radius: 50px;
+ border-top-left-radius: 10px;
+ border-top-right-radius: 10px;
border-color: transparent;
}
@@ -47,3 +47,8 @@ div.show_result_interpreter {
.active {
background: #f2f6f7;
}
+
+.result_order {
+ margin-left: 2px;
+ display: grid;
+}