diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 78432ed8d7..c4e597bda0 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2013-07-05 Miguel de Dios + + * mobile/operation/agents.php, mobile/include/style/main.css: some + fixes. + + MERGED FROM BRANCH 4.0 + 2013-07-05 Hirofumi Kosaka * godmode/alerts/alert_list.builder.php: Small changes. Make diff --git a/pandora_console/mobile/include/style/main.css b/pandora_console/mobile/include/style/main.css index 7d14c59015..a56b8944f1 100644 --- a/pandora_console/mobile/include/style/main.css +++ b/pandora_console/mobile/include/style/main.css @@ -544,9 +544,19 @@ table#list_events th { white-space: nowrap; } - #list_Modules .cell_2 { + #list_Modules .cell_2, + #list_Modules .cell_3 { display: none !important; } + + #list_Modules .cell_0 .show_collapside, + #list_Modules .cell_1 .show_collapside { + display: none !important; + } + + #list_Modules .cell_0 .ui-link { + font-size: 15px; + } } #list_Modules .cell_5 a { diff --git a/pandora_console/mobile/operation/agents.php b/pandora_console/mobile/operation/agents.php index 949af666c4..a68f734ce3 100644 --- a/pandora_console/mobile/operation/agents.php +++ b/pandora_console/mobile/operation/agents.php @@ -234,7 +234,7 @@ class Agents { 'nombre', 'ultimo_contacto', 'intervalo', - 'comentarios description', + 'comentarios description', 'quiet', 'normal_count', 'warning_count', @@ -255,6 +255,8 @@ class Agents { $img_status = agents_tree_view_status_img ($agent["critical_count"], $agent["warning_count"], $agent["unknown_count"]) + $img_alert = agents_tree_view_alert_img ($agent_info["monitor_alertsfired"]); + $row[0] = $row[__('Agent')] = '' . io_safe_output($agent['nombre']) . ''; @@ -270,10 +272,13 @@ class Agents { $row[5] = $row[__('Status')] = '' . $img_status; - $row[6] = $row[__('Alerts')] = '' . agents_tree_view_alert_img ($agent["fired_count"]); + $row[6] = $row[__('Alerts')] = '' . + $img_alert; $row[7] = $row[__('Modules')] = - '' . + '' . ' ' . + '' . '' . reporting_tiny_stats($agent, true);