2013-12-10 Dario Rodriguez <dario@artica.es>

* mobile/operation/modules.php,
        mobile/include/style/main.css: Fixed some style bugs
        related to layout on visual console.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9204 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
darode 2013-12-10 18:09:47 +00:00
parent 7d94e26f81
commit ccd94db5b8
3 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2013-12-10 Dario Rodriguez <dario@artica.es>
* mobile/operation/modules.php,
mobile/include/style/main.css: Fixed some style bugs
related to layout on visual console.
2013-12-10 Sergio Martin <sergio.martin@artica.es>
* include/functions_events.php: Fix storing of event

View File

@ -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,

View File

@ -407,11 +407,10 @@ class Modules {
$row = array();
$row[0] = $row[__('Module name')] =
'<span class="data"><span class="show_collapside" style="display: none; font-weight: bolder;">' . __('Module') . ' </span>' .
$module['module_name'];
'<span class="data">'.$module['module_name']."</span>";
if ($this->columns['agent']) {
$row[2] = $row[__('Agent name')] =
$row[1] = $row[__('Agent name')] =
'<span class="data"><span class="show_collapside" style="display: none; font-weight: bolder;">' . __('Agent') . ' </span>' .
'<a class="ui-link" data-ajax="false" href="index.php?page=agent&id=' . $module["id_agent"] . '">' . $module['agent_name'] . '</a>' .
'</span>';
@ -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']);