diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 2580d17371..00b9de46f0 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -4132,10 +4132,10 @@ class AgentWizard extends HTML $table->width = '100%'; $table->class = 'info_table'; // Subheaders for Warning and Critical columns. - $subheaders = 'Min.'; - $subheaders .= 'Max.'; - $subheaders .= 'Inv.'; - $subheaders .= '%.'; + $subheaders = 'Min.'; + $subheaders .= 'Max.'; + $subheaders .= 'Inv.'; + $subheaders .= '%.'; // Warning header. $warning_header = html_print_div( @@ -4352,8 +4352,7 @@ class AgentWizard extends HTML ); $data_warning .= html_print_div( [ - 'class' => 'wizard-column-levels-check', - 'style' => 'margin-top: 0.3em;', + 'class' => 'wizard-column-levels-check mrgn_top_10px', 'content' => html_print_checkbox( 'module-warning-inv-'.$uniqueId, $module['inv_warning'], @@ -4369,8 +4368,7 @@ class AgentWizard extends HTML ); $data_warning .= html_print_div( [ - 'class' => 'wizard-column-levels-check', - 'style' => 'margin-top: 0.3em;', + 'class' => 'wizard-column-levels-check mrgn_top_10px', 'content' => html_print_checkbox( 'module-warning-perc-'.$uniqueId, $module['perc_warning'], @@ -4436,8 +4434,7 @@ class AgentWizard extends HTML $data[4] .= html_print_div( [ - 'class' => 'wizard-column-levels-check', - 'style' => 'margin-top: 0.3em;', + 'class' => 'wizard-column-levels-check mrgn_top_10px', 'content' => html_print_checkbox( 'module-critical-inv-'.$uniqueId, $module['inv_critical'], @@ -4454,8 +4451,7 @@ class AgentWizard extends HTML $data[4] .= html_print_div( [ - 'class' => 'wizard-column-levels-check', - 'style' => 'margin-top: 0.3em;', + 'class' => 'wizard-column-levels-check mrgn_top_10px', 'content' => html_print_checkbox( 'module-critical-perc-'.$uniqueId, $module['perc_critical'], @@ -4490,7 +4486,7 @@ class AgentWizard extends HTML '', true, '', - 'pdd_0px' + 'pdd_0px mrgn_top-8px' ); } else { // WIP. Current value of this module. diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index 0e51faa66c..1d7fffd922 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -97,7 +97,7 @@ function snmp_browser_get_html_tree( // Id used to expand leafs. $sub_id = time().rand(0, getrandmax()); // Display the branch. - $output .= '
  • '; + $output .= '
  • '; // Indent sub branches. for ($i = 1; $i <= $depth; $i++) { diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index d8eec9b1b1..d3b9d8d6ac 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -7002,6 +7002,10 @@ div.graph div.legend table { margin-top: -2px !important; } +.mrgn_top-8px { + margin-top: -8px !important; +} + .mrgn_top-10px { margin-top: -10px; }