diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 9e4d0abbc5..cf5c52dc41 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-12-10 Dario Rodriguez + + * mobile/operation/modules.php, + mobile/include/style/main.css: Fixed some style bugs + related to layout on visual console. + 2013-12-10 Sergio Martin * include/functions_events.php: Fix storing of event diff --git a/pandora_console/mobile/include/style/main.css b/pandora_console/mobile/include/style/main.css index 079465c209..60fc16d038 100644 --- a/pandora_console/mobile/include/style/main.css +++ b/pandora_console/mobile/include/style/main.css @@ -508,12 +508,14 @@ table#list_events th { padding-left: 10px; } - #list_Modules_Embedded .cell_3, + #list_Modules_Embedded .cell_3 { + display: none !important + } #list_Modules_Embedded .cell_4 { display: inline !important; float: none !important; } - + #list_Modules_Embedded .cell_0 .ui-table-cell-label, #list_Modules_Embedded .cell_1 .ui-table-cell-label, #list_Modules_Embedded .cell_3 .ui-table-cell-label, diff --git a/pandora_console/mobile/operation/modules.php b/pandora_console/mobile/operation/modules.php index 43d34c98f4..ea1361c1fc 100644 --- a/pandora_console/mobile/operation/modules.php +++ b/pandora_console/mobile/operation/modules.php @@ -407,11 +407,10 @@ class Modules { $row = array(); $row[0] = $row[__('Module name')] = - '' . - $module['module_name']; + ''.$module['module_name'].""; if ($this->columns['agent']) { - $row[2] = $row[__('Agent name')] = + $row[1] = $row[__('Agent name')] = '' . '' . $module['agent_name'] . '' . ''; @@ -454,7 +453,7 @@ class Modules { break; } } - + $row[4] = $row[__('Interval')] = ($module['module_interval'] == 0) ? human_time_description_raw($module['agent_interval']) : human_time_description_raw($module['module_interval']);