diff --git a/pandora_console/extensions/module_groups.php b/pandora_console/extensions/module_groups.php
index 9e750be932..5082fd6975 100644
--- a/pandora_console/extensions/module_groups.php
+++ b/pandora_console/extensions/module_groups.php
@@ -248,16 +248,16 @@ function mainModuleGroups()
$color = '#FFA631';
// Orange when the cell for this model group and agent has at least one alert fired.
} else if ($array_data[$key][$k]['critical_module_count'] != 0) {
- $color = '#FC4444';
+ $color = '#e63c52';
// Red when the cell for this model group and agent has at least one module in critical state and the rest in any state.
} else if ($array_data[$key][$k]['warning_module_count'] != 0) {
- $color = '#FAD403';
+ $color = '#f3b200';
// Yellow when the cell for this model group and agent has at least one in warning state and the rest in green state.
} else if ($array_data[$key][$k]['unknown_module_count'] != 0) {
$color = '#B2B2B2 ';
// Grey when the cell for this model group and agent has at least one module in unknown state and the rest in any state.
} else if ($array_data[$key][$k]['normal_module_count'] != 0) {
- $color = '#80BA27';
+ $color = '#82b92e';
// Green when the cell for this model group and agent has OK state all modules.
} else if ($array_data[$key][$k]['notInit_module_count'] != 0) {
$color = '#5BB6E5';
diff --git a/pandora_console/godmode/update_manager/update_manager.css b/pandora_console/godmode/update_manager/update_manager.css
index 80a668d07d..1d3fdc2c12 100644
--- a/pandora_console/godmode/update_manager/update_manager.css
+++ b/pandora_console/godmode/update_manager/update_manager.css
@@ -34,7 +34,7 @@
float: none;
}
#drop_file a {
- background-color: #80ba27;
+ background-color: #82b92e;
border-radius: 2px;
color: #ffffff;
cursor: pointer;
diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php
index 7266e9eff4..e320db6367 100644
--- a/pandora_console/include/constants.php
+++ b/pandora_console/include/constants.php
@@ -137,11 +137,11 @@ switch ($config['dbtype']) {
// Color constants.
-define('COL_CRITICAL', '#FC4444');
-define('COL_WARNING', '#FAD403');
+define('COL_CRITICAL', '#e63c52');
+define('COL_WARNING', '#f3b200');
define('COL_WARNING_DARK', '#FFB900');
-define('COL_NORMAL', '#80BA27');
-define('COL_NOTINIT', '#3BA0FF');
+define('COL_NORMAL', '#82b92e');
+define('COL_NOTINIT', '#4a83f3');
define('COL_UNKNOWN', '#B2B2B2');
define('COL_DOWNTIME', '#976DB1');
define('COL_IGNORED', '#DDD');
@@ -149,7 +149,7 @@ define('COL_ALERTFIRED', '#FFA631');
define('COL_MINOR', '#F099A2');
define('COL_MAJOR', '#C97A4A');
define('COL_INFORMATIONAL', '#E4E4E4');
-define('COL_MAINTENANCE', '#3BA0FF');
+define('COL_MAINTENANCE', '#4a83f3');
define('COL_GRAPH1', '#C397F2');
define('COL_GRAPH2', '#FFE66C');
diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php
index af11deb541..ceaabaaadf 100644
--- a/pandora_console/include/functions_networkmap.php
+++ b/pandora_console/include/functions_networkmap.php
@@ -1807,9 +1807,9 @@ function networkmap_links_to_js_links(
if (($relation['parent_type'] == NODE_MODULE) && ($relation['child_type'] == NODE_MODULE)) {
if (($item['status_start'] == AGENT_MODULE_STATUS_CRITICAL_BAD) || ($item['status_end'] == AGENT_MODULE_STATUS_CRITICAL_BAD)) {
- $item['link_color'] = '#FC4444';
+ $item['link_color'] = '#e63c52';
} else if (($item['status_start'] == AGENT_MODULE_STATUS_WARNING) || ($item['status_end'] == AGENT_MODULE_STATUS_WARNING)) {
- $item['link_color'] = '#FAD403';
+ $item['link_color'] = '#f3b200';
}
$agent = agents_get_agent_id_by_module_id(
@@ -1837,9 +1837,9 @@ function networkmap_links_to_js_links(
}
} else if ($relation['child_type'] == NODE_MODULE) {
if ($item['status_start'] == AGENT_MODULE_STATUS_CRITICAL_BAD) {
- $item['link_color'] = '#FC4444';
+ $item['link_color'] = '#e63c52';
} else if ($item['status_start'] == AGENT_MODULE_STATUS_WARNING) {
- $item['link_color'] = '#FAD403';
+ $item['link_color'] = '#f3b200';
}
$agent2 = agents_get_agent_id_by_module_id(
@@ -1864,9 +1864,9 @@ function networkmap_links_to_js_links(
}
} else if ($relation['parent_type'] == NODE_MODULE) {
if ($item['status_end'] == AGENT_MODULE_STATUS_CRITICAL_BAD) {
- $item['link_color'] = '#FC4444';
+ $item['link_color'] = '#e63c52';
} else if ($item['status_end'] == AGENT_MODULE_STATUS_WARNING) {
- $item['link_color'] = '#FAD403';
+ $item['link_color'] = '#f3b200';
}
$agent = agents_get_agent_id_by_module_id(
diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php
index 10bef8631f..c8d5b3e29e 100644
--- a/pandora_console/include/functions_reporting_html.php
+++ b/pandora_console/include/functions_reporting_html.php
@@ -4270,16 +4270,16 @@ function reporting_get_agents_by_status($data, $graph_width=250, $graph_height=1
$agent_data = [];
$agent_data[0] = html_print_image('images/agent_critical.png', true, ['title' => __('Agents critical')]);
- $agent_data[1] = "".format_numeric($data['agent_critical']).'';
+ $agent_data[1] = "".format_numeric($data['agent_critical']).'';
$agent_data[2] = html_print_image('images/agent_warning.png', true, ['title' => __('Agents warning')]);
- $agent_data[3] = "".format_numeric($data['agent_warning']).'';
+ $agent_data[3] = "".format_numeric($data['agent_warning']).'';
$table_agent->data[] = $agent_data;
$agent_data = [];
$agent_data[0] = html_print_image('images/agent_ok.png', true, ['title' => __('Agents ok')]);
- $agent_data[1] = "".format_numeric($data['agent_ok']).'';
+ $agent_data[1] = "".format_numeric($data['agent_ok']).'';
$agent_data[2] = html_print_image('images/agent_unknown.png', true, ['title' => __('Agents unknown')]);
$agent_data[3] = "".format_numeric($data['agent_unknown']).'';
@@ -4367,13 +4367,13 @@ function reporting_get_events($data, $links=false)
}
if (defined('METACONSOLE')) {
- $table_events->style[0] = 'background-color:#FC4444';
+ $table_events->style[0] = 'background-color:#e63c52';
$table_events->data[0][0] = html_print_image('images/module_event_critical.png', true, ['title' => __('Critical events')]);
$table_events->data[0][0] .= ' '."".format_numeric($data['critical']).'';
- $table_events->style[1] = 'background-color:#FAD403';
+ $table_events->style[1] = 'background-color:#f3b200';
$table_events->data[0][1] = html_print_image('images/module_event_warning.png', true, ['title' => __('Warning events')]);
$table_events->data[0][1] .= ' '."".format_numeric($data['warning']).'';
- $table_events->style[2] = 'background-color:#80BA27';
+ $table_events->style[2] = 'background-color:#82b92e';
$table_events->data[0][2] = html_print_image('images/module_event_ok.png', true, ['title' => __('OK events')]);
$table_events->data[0][2] .= ' '."".format_numeric($data['normal']).'';
$table_events->style[3] = 'background-color:#B2B2B2';
@@ -4381,11 +4381,11 @@ function reporting_get_events($data, $links=false)
$table_events->data[0][3] .= ' '."".format_numeric($data['unknown']).'';
} else {
$table_events->data[0][0] = html_print_image('images/module_critical.png', true, ['title' => __('Critical events')]);
- $table_events->data[0][0] .= ' '."".format_numeric($data['critical']).'';
+ $table_events->data[0][0] .= ' '."".format_numeric($data['critical']).'';
$table_events->data[0][1] = html_print_image('images/module_warning.png', true, ['title' => __('Warning events')]);
- $table_events->data[0][1] .= ' '."".format_numeric($data['warning']).'';
+ $table_events->data[0][1] .= ' '."".format_numeric($data['warning']).'';
$table_events->data[0][2] = html_print_image('images/module_ok.png', true, ['title' => __('OK events')]);
- $table_events->data[0][2] .= ' '."".format_numeric($data['normal']).'';
+ $table_events->data[0][2] .= ' '."".format_numeric($data['normal']).'';
$table_events->data[0][3] = html_print_image('images/module_unknown.png', true, ['title' => __('Unknown events')]);
$table_events->data[0][3] .= ' '."".format_numeric($data['unknown']).'';
}
diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php
index adcb6c31bd..c658a55e31 100755
--- a/pandora_console/include/functions_treeview.php
+++ b/pandora_console/include/functions_treeview.php
@@ -641,7 +641,7 @@ function treeview_printTable($id_agente, $server_data=[], $no_head=false)
$progress,
'100%',
'1.5',
- '#80ba27',
+ '#82b92e',
true
);
$table->data['next_contact'] = $row;
diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index be26ceea64..cdcc5abbbe 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -2726,7 +2726,7 @@ function ui_progress(
$progress,
$width='100%',
$height='2.5',
- $color='#80ba27',
+ $color='#82b92e',
$return=true,
$text=''
) {
diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php
index 680d6e3ce9..ee97467430 100755
--- a/pandora_console/include/functions_visual_map.php
+++ b/pandora_console/include/functions_visual_map.php
@@ -1966,7 +1966,7 @@ function visual_map_print_item(
echo '';
echo "
";
echo '';
- echo " ".remove_right_zeros(number_format($stat_agent_cr, 2)).'% ';
+ echo "".remove_right_zeros(number_format($stat_agent_cr, 2)).'% ';
echo "Critical ";
echo "".remove_right_zeros(number_format($stat_agent_wa, 2)).'% ';
echo "Warning ";
diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js
index 55cc748261..38b7f75f1c 100644
--- a/pandora_console/include/graphs/flot/pandora.flot.js
+++ b/pandora_console/include/graphs/flot/pandora.flot.js
@@ -152,12 +152,12 @@ function pandoraFlotPieCustom(
colors = colors.split(separator);
}
var colors_data = [
- "#FC4444",
+ "#e63c52",
"#FFA631",
- "#FAD403",
+ "#f3b200",
"#5BB6E5",
"#F2919D",
- "#80BA27"
+ "#82b92e"
];
var color = null;
for (var i = 0; i < data.length; i++) {
@@ -380,12 +380,12 @@ function pandoraFlotHBars(
max
) {
var colors_data = [
- "#FC4444",
+ "#e63c52",
"#FFA631",
- "#FAD403",
+ "#f3b200",
"#5BB6E5",
"#F2919D",
- "#80BA27"
+ "#82b92e"
];
values = values.split(separator2);
font = font
@@ -639,7 +639,7 @@ function pandoraFlotVBars(
var colors_data =
colors.length > 0
? colors
- : ["#FFA631", "#FC4444", "#FAD403", "#5BB6E5", "#F2919D", "#80BA27"];
+ : ["#FFA631", "#e63c52", "#f3b200", "#5BB6E5", "#F2919D", "#82b92e"];
var datas = new Array();
for (i = 0; i < values.length; i++) {
@@ -2681,13 +2681,13 @@ function pandoraFlotArea(
if (events_data.event_type.search("alert") >= 0) {
extra_color = "#FFA631";
} else if (events_data.event_type.search("critical") >= 0) {
- extra_color = "#FC4444";
+ extra_color = "#e63c52";
} else if (events_data.event_type.search("warning") >= 0) {
- extra_color = "#FAD403";
+ extra_color = "#f3b200";
} else if (events_data.event_type.search("unknown") >= 0) {
- extra_color = "#3BA0FF";
+ extra_color = "#4a83f3";
} else if (events_data.event_type.search("normal") >= 0) {
- extra_color = "#80BA27";
+ extra_color = "#82b92e";
} else {
extra_color = "#ffffff";
}
diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php
index 129baaa54e..b9f2212b16 100644
--- a/pandora_console/include/graphs/functions_d3.php
+++ b/pandora_console/include/graphs/functions_d3.php
@@ -190,8 +190,8 @@ function d3_bullet_chart(
}
.bullet { font: 7px sans-serif; }
- .bullet .marker.s0 { stroke: #FC4444; stroke-width: 2px; }
- .bullet .marker.s1 { stroke: #FAD403; stroke-width: 2px; }
+ .bullet .marker.s0 { stroke: #e63c52; stroke-width: 2px; }
+ .bullet .marker.s1 { stroke: #f3b200; stroke-width: 2px; }
.bullet .marker.s2 { stroke: steelblue; stroke-width: 2px; }
.bullet .tick line { stroke: #666; stroke-width: .5px; }
.bullet .range.s0 { fill: #ddd; }
diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index 3d86d391b5..49d026ed0f 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -1614,9 +1614,9 @@ function print_phases_donut(recipient, phases) {
.insert("path")
.style("fill", function(d) {
if (d.data.value == 0) {
- return "#80BA27";
+ return "#82b92e";
} else {
- return "#FC4444";
+ return "#e63c52";
}
})
.attr("class", "slice");
diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js
index c2335903d7..e5a0b87f7e 100644
--- a/pandora_console/include/javascript/functions_pandora_networkmap.js
+++ b/pandora_console/include/javascript/functions_pandora_networkmap.js
@@ -669,7 +669,7 @@ function update_link(row_index, id_link) {
temp_link["arrow_start"] = "module";
temp_link["id_module_start"] = interface_source;
temp_link["status_start"] = data["status"];
- temp_link["link_color"] = data["status"] == "1" ? "#FC4444" : "#999";
+ temp_link["link_color"] = data["status"] == "1" ? "#e63c52" : "#999";
} else {
temp_link["arrow_start"] = "";
temp_link["id_agent_start"] = interface_source;
@@ -679,7 +679,7 @@ function update_link(row_index, id_link) {
temp_link["arrow_end"] = "module";
temp_link["id_module_end"] = interface_target;
temp_link["status_end"] = data["status"];
- temp_link["link_color"] = data["status"] == "1" ? "#FC4444" : "#999";
+ temp_link["link_color"] = data["status"] == "1" ? "#e63c52" : "#999";
} else {
temp_link["arrow_end"] = "";
temp_link["id_agent_end"] = interface_target;
@@ -2329,7 +2329,7 @@ function add_interface_link_js() {
temp_link["id_module_start"] = source_value;
temp_link["status_start"] = data["status_start"];
temp_link["link_color"] =
- data["status_start"] == "1" ? "#FC4444" : "#999";
+ data["status_start"] == "1" ? "#e63c52" : "#999";
} else {
temp_link["arrow_start"] = "";
temp_link["id_agent_start"] = source_value;
@@ -2340,7 +2340,7 @@ function add_interface_link_js() {
temp_link["id_module_end"] = target_value;
temp_link["status_end"] = data["status_end"];
temp_link["link_color"] =
- data["status_end"] == "1" ? "#FC4444" : "#999";
+ data["status_end"] == "1" ? "#e63c52" : "#999";
} else {
temp_link["arrow_end"] = "";
temp_link["id_agent_end"] = target_value;
diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js
index 351531a5e9..0fa503f81f 100644
--- a/pandora_console/include/javascript/pandora.js
+++ b/pandora_console/include/javascript/pandora.js
@@ -1599,7 +1599,7 @@ function paint_graph_status(
.attr("y", height_x - 30)
.attr("width", 10)
.attr("height", 10)
- .style("fill", "#fc4444");
+ .style("fill", "#e63c52");
//styles for number and axes
svg
@@ -1683,7 +1683,7 @@ function paint_graph_status(
)
.attr("width", 300)
.attr("height", (max_c - min_c) * position)
- .style("fill", "#fc4444");
+ .style("fill", "#e63c52");
} else {
svg
.append("g")
@@ -1695,7 +1695,7 @@ function paint_graph_status(
.attr("y", height_x + 200 - (min_c - range_min) * position)
.attr("width", 300)
.attr("height", (min_c - range_min) * position)
- .style("fill", "#fc4444");
+ .style("fill", "#e63c52");
svg
.append("g")
.append("rect")
@@ -1709,7 +1709,7 @@ function paint_graph_status(
"height",
(range_max - min_c) * position - (max_c - min_c) * position
)
- .style("fill", "#fc4444");
+ .style("fill", "#e63c52");
}
} else {
d3.select("#svg_dinamic rect").remove();
diff --git a/pandora_console/include/javascript/update_manager.js b/pandora_console/include/javascript/update_manager.js
index bab4ef2aae..0cc385fb95 100644
--- a/pandora_console/include/javascript/update_manager.js
+++ b/pandora_console/include/javascript/update_manager.js
@@ -44,7 +44,7 @@ function form_upload(homeurl) {
"" +
'' +
"" +
""
diff --git a/pandora_console/include/rest-api/models/VisualConsole/Items/Group.php b/pandora_console/include/rest-api/models/VisualConsole/Items/Group.php
index e627003244..cbbe877f8d 100644
--- a/pandora_console/include/rest-api/models/VisualConsole/Items/Group.php
+++ b/pandora_console/include/rest-api/models/VisualConsole/Items/Group.php
@@ -355,7 +355,7 @@ final class Group extends Item
'color: #FFF;',
'font-size: 12px;',
'display: inline;',
- 'background-color: #FC4444;',
+ 'background-color: #e63c52;',
'position: relative;',
'height: 80%;',
'width: 9.4%;',
@@ -389,7 +389,7 @@ final class Group extends Item
$html .= ' | ';
// Critical.
- $html .= '';
+ $html .= ' ';
$html .= \number_format($agentStats['critical'], 2).'%';
$html .= ' ';
$html .= ' '.__('Critical').' ';
diff --git a/pandora_console/include/styles/menu.css b/pandora_console/include/styles/menu.css
index 789a6e36f2..1231849fae 100644
--- a/pandora_console/include/styles/menu.css
+++ b/pandora_console/include/styles/menu.css
@@ -114,7 +114,7 @@ li:hover ul {
.submenu_selected {
margin-bottom: 0px;
- box-shadow: inset 4px 0 #80ba27;
+ box-shadow: inset 4px 0 #82b92e;
}
.selected.submenu_selected {
background-color: #202020;
@@ -279,7 +279,7 @@ ul li {
}
.menu li.selected {
- box-shadow: inset 4px 0 #80ba27;
+ box-shadow: inset 4px 0 #82b92e;
}
.operation {
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index bd8a9e79e9..7b4289a34a 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -504,7 +504,7 @@ select:-internal-list-box {
padding: 0;
}
.no-padding-imp {
- padding: 0;
+ padding: 0 !important;
}
.no-margin {
margin: 0;
@@ -922,7 +922,7 @@ td.datos2f9 {
}
.warning * {
- color: #fad403;
+ color: #f3b200;
}
.help {
@@ -2127,7 +2127,7 @@ td.cellUnknown {
}
td.cellNotInit {
- background: #3ba0ff;
+ background: #4a83f3;
color: #ffffff;
}
@@ -2185,13 +2185,13 @@ tr.group_view_data,
tr.group_view_crit,
.group_view_crit {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
tr.group_view_ok,
.group_view_ok {
- background-color: #80ba27;
+ background-color: #82b92e;
color: #fff;
}
@@ -2206,12 +2206,12 @@ tr.group_view_warn,
tr.group_view_warn.a,
a.group_view_warn,
tr.a.group_view_warn {
- background-color: #fad403;
+ background-color: #f3b200;
color: #fff;
}
a.group_view_warn {
- color: #fad403;
+ color: #f3b200;
color: #fff;
}
@@ -2233,7 +2233,7 @@ tr.group_view_unk,
.datos_green a,
.datos_greenf9 a,
.datos_green * {
- background-color: #80ba27;
+ background-color: #82b92e;
color: #fff;
}
.datos_red,
@@ -2241,14 +2241,14 @@ tr.group_view_unk,
.datos_red a,
.datos_redf9 a,
.datos_red * {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
.datos_yellow,
.datos_yellowf9,
.datos_yellow * {
- background-color: #fad403;
+ background-color: #f3b200;
color: #111;
}
@@ -3846,7 +3846,7 @@ span.log_zone_line {
}
span.log_zone_line_error {
- color: #fc4444;
+ color: #e63c52;
}
/* global */
@@ -4379,7 +4379,7 @@ div#dialog_messages table th:last-child {
cursor: pointer;
}
.notification-ball-new-messages {
- background-color: #fc4444;
+ background-color: #e63c52;
}
#notification-wrapper {
@@ -5455,19 +5455,19 @@ div#bullets_modules div {
background: #ffa631;
}
.red_background {
- background: #fc4444;
+ background: #e63c52;
}
.yellow_background {
- background: #fad403;
+ background: #f3b200;
}
.grey_background {
background: #b2b2b2;
}
.blue_background {
- background: #3ba0ff;
+ background: #4a83f3;
}
.green_background {
- background: #80ba27;
+ background: #82b92e;
}
/* First row in agent view */
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index c84824ccae..8e2d756e0c 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -1119,7 +1119,7 @@ td.datos2f9 {
}
.warning * {
- color: #fad403;
+ color: #f3b200;
}
.help {
@@ -2261,7 +2261,7 @@ div.cellUnknown {
div.cellNotInit {
width: 100%;
height: 100%;
- background: #3ba0ff;
+ background: #4a83f3;
color: #ffffff;
}
@@ -2324,7 +2324,7 @@ tr.group_view_data,
tr.group_view_crit,
.group_view_crit {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
@@ -2353,12 +2353,12 @@ tr.group_view_warn,
tr.group_view_warn.a,
a.group_view_warn,
tr.a.group_view_warn {
- background-color: #fad403;
+ background-color: #f3b200;
color: #3f3f3f;
}
a.group_view_warn {
- color: #fad403;
+ color: #f3b200;
}
tr.group_view_alrm,
@@ -2387,14 +2387,14 @@ tr.group_view_unk,
.datos_red a,
.datos_redf9 a,
.datos_red * {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
.datos_yellow,
.datos_yellowf9,
.datos_yellow * {
- background-color: #fad403;
+ background-color: #f3b200;
color: #111;
}
diff --git a/pandora_console/include/styles/pandora_green_old.css b/pandora_console/include/styles/pandora_green_old.css
index 069cbbe9c0..7f03695a57 100644
--- a/pandora_console/include/styles/pandora_green_old.css
+++ b/pandora_console/include/styles/pandora_green_old.css
@@ -961,7 +961,7 @@ div#cont {
}
.termframe {
- background-color: #80ba27;
+ background-color: #82b92e;
}
table,
@@ -1121,7 +1121,7 @@ td.datos2f9 {
}
.warning * {
- color: #fad403;
+ color: #f3b200;
}
.help {
@@ -1242,7 +1242,7 @@ div.title_line {
#menu_tab_frame,
#menu_tab_frame_view {
display: block;
- border-bottom: 1px solid #80ba27;
+ border-bottom: 1px solid #82b92e;
/* float:left; */
margin-left: 0px;
max-height: 42px;
@@ -2254,7 +2254,7 @@ div.cellUnknown {
div.cellNotInit {
width: 100%;
height: 100%;
- background: #3ba0ff;
+ background: #4a83f3;
color: #ffffff;
}
@@ -2317,7 +2317,7 @@ tr.group_view_data,
tr.group_view_crit,
.group_view_crit {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
@@ -2329,7 +2329,7 @@ tr.group_view_normal,
}
tr.group_view_ok,
.group_view_ok {
- background-color: #80ba27;
+ background-color: #82b92e;
color: #fff;
}
@@ -2346,12 +2346,12 @@ tr.group_view_warn,
tr.group_view_warn.a,
a.group_view_warn,
tr.a.group_view_warn {
- background-color: #fad403;
+ background-color: #f3b200;
color: #3f3f3f;
}
a.group_view_warn {
- color: #fad403;
+ color: #f3b200;
}
tr.group_view_alrm,
@@ -2372,7 +2372,7 @@ tr.group_view_unk,
.datos_green a,
.datos_greenf9 a,
.datos_green * {
- background-color: #80ba27;
+ background-color: #82b92e;
color: #fff;
}
.datos_red,
@@ -2380,14 +2380,14 @@ tr.group_view_unk,
.datos_red a,
.datos_redf9 a,
.datos_red * {
- background-color: #fc4444;
+ background-color: #e63c52;
color: #fff;
}
.datos_yellow,
.datos_yellowf9,
.datos_yellow * {
- background-color: #fad403;
+ background-color: #f3b200;
color: #111;
}
diff --git a/pandora_console/include/styles/progress.css b/pandora_console/include/styles/progress.css
index 84c3224f27..ccd75f620a 100644
--- a/pandora_console/include/styles/progress.css
+++ b/pandora_console/include/styles/progress.css
@@ -9,12 +9,12 @@ div.progress_main {
display: inline-block;
text-align: center;
height: 2.5em;
- border: 1px solid #80ba27;
+ border: 1px solid #82b92e;
}
div.progress {
width: 0%;
- background: #80ba27;
+ background: #82b92e;
height: 100%;
float: left;
}
diff --git a/pandora_console/include/styles/tables.css b/pandora_console/include/styles/tables.css
index 3e2c4ae6d9..d3d87ac949 100644
--- a/pandora_console/include/styles/tables.css
+++ b/pandora_console/include/styles/tables.css
@@ -161,7 +161,7 @@
border-radius: 0px;
border: none;
padding-left: 0px;
- padding-right: 0px;
+ padding-right: 9px;
padding-top: 7px;
padding-bottom: 7px;
}
diff --git a/pandora_console/include/styles/visual_maps.css b/pandora_console/include/styles/visual_maps.css
index 4dfd06354d..6e09ffcaf0 100644
--- a/pandora_console/include/styles/visual_maps.css
+++ b/pandora_console/include/styles/visual_maps.css
@@ -168,5 +168,5 @@ div#cont {
}
/*.termframe{
- background-color: #80BA27;
+ background-color: #82b92e;
}*/
diff --git a/pandora_console/operation/agentes/group_view.php b/pandora_console/operation/agentes/group_view.php
index 080e7ffbaf..c8d6b562a8 100644
--- a/pandora_console/operation/agentes/group_view.php
+++ b/pandora_console/operation/agentes/group_view.php
@@ -156,16 +156,16 @@ echo ' ";
echo "";
- echo "".$total_agent_critical.'%';
- echo "".$total_agent_warning.'%';
- echo "".$total_agent_ok.'%';
+ echo "".$total_agent_critical.'%';
+ echo "".$total_agent_warning.'%';
+ echo "".$total_agent_ok.'%';
echo "".$total_agent_unknown.'%';
echo "".$total_not_init.'%';
echo ' | ';
echo "";
- echo "".$total_critical.'%';
- echo "".$total_warning.'%';
- echo "".$total_ok.'%';
+ echo "".$total_critical.'%';
+ echo "".$total_warning.'%';
+ echo "".$total_ok.'%';
echo "".$total_unknown.'%';
echo "".$total_monitor_not_init.'%';
echo ' | ';
diff --git a/pandora_console/operation/events/events.build_table.php b/pandora_console/operation/events/events.build_table.php
index 7a237d6b8a..a07ec2a703 100644
--- a/pandora_console/operation/events/events.build_table.php
+++ b/pandora_console/operation/events/events.build_table.php
@@ -91,11 +91,11 @@ if ($group_rep == 2) {
if ($res['event_type'] == 'alert_fired') {
$table->rowstyle[$key] = 'background: #FFA631;';
} else if ($res['event_type'] == 'going_up_critical' || $res['event_type'] == 'going_down_critical') {
- $table->rowstyle[$key] = 'background: #FC4444;';
+ $table->rowstyle[$key] = 'background: #e63c52;';
} else if ($res['event_type'] == 'going_up_warning' || $res['event_type'] == 'going_down_warning') {
- $table->rowstyle[$key] = 'background: #FAD403;';
+ $table->rowstyle[$key] = 'background: #f3b200;';
} else if ($res['event_type'] == 'going_up_normal' || $res['event_type'] == 'going_down_normal') {
- $table->rowstyle[$key] = 'background: #80BA27;';
+ $table->rowstyle[$key] = 'background: #82b92e;';
} else if ($res['event_type'] == 'going_unknown') {
$table->rowstyle[$key] = 'background: #B2B2B2;';
}
@@ -990,12 +990,12 @@ if ($group_rep == 2) {
html_print_button(__('Execute event response'), 'submit_event_response', false, 'execute_event_response(true);', 'class="sub next"');
echo "".html_print_image('images/spinner.gif', true).'';
echo '';
- echo '';
+ echo '';
echo __(
'A maximum of %s event custom responses can be selected',
$config['max_execution_event_response']
).'';
- echo '';
+ echo '';
echo __(
'Please, select an event'
).'';
|