diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index 8938e02c15..ae329862e3 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -280,7 +280,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
$text_message = $message;
}
- if (empty($text_title)) {
+ if (empty($text_title) === true) {
switch ($class) {
default:
case 'info':
@@ -300,7 +300,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
}
}
- if (empty($icon_image)) {
+ if (empty($icon_image) === true) {
switch ($class) {
default:
case 'info':
@@ -333,7 +333,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
class="info_box '.$id.' '.$class.' textodialogo" style="'.$force_style.'">
'.html_print_image($icon_image, true, false, false, false, false).' |
- '.$text_title.' |
+ '.$text_title.' |
';
if (!$no_close_bool) {
// Use the no_meta parameter because this image is only in
@@ -344,7 +344,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
$output .= ' |
- '.$text_message.' |
+ '.$text_message.' |
|
';
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index e3537b79b1..ed5050fec2 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -1355,18 +1355,30 @@ td.datos2f9 {
text-align: center;
}
+table.info_box.suc {
+ background-color: #d9efee;
+}
.suc * {
color: #5a8629;
}
+table.info_box.info {
+ background-color: #d6edff;
+}
.info * {
color: #006f9d;
}
+table.info_box.error {
+ background-color: #ffe8e8;
+}
.error * {
color: #f85858;
}
+table.info_box.warning {
+ background-color: #fff1d6;
+}
.warning * {
color: #f3b200;
}
@@ -2432,8 +2444,8 @@ td.cellBig {
}
.info_box .title * {
- font-size: 12pt;
- font-weight: bolder;
+ font-size: 14pt;
+ font-family: Pandora-Bold;
}
.info_box .icon {
@@ -8380,6 +8392,12 @@ div.stat-win-spinner img {
margin-right: 5px !important;
}
+.select2-results
+ > .select2-results__options
+ > .select2-results__option.select2-results__option--highlighted {
+ background-color: #d9efee;
+ color: #2b3332;
+}
.h1-report-alert-actions {
text-transform: none;
text-align: left;