diff --git a/pandora_console/include/functions_netflow.php b/pandora_console/include/functions_netflow.php index e4ac71e690..3ee11508b0 100644 --- a/pandora_console/include/functions_netflow.php +++ b/pandora_console/include/functions_netflow.php @@ -202,7 +202,7 @@ function netflow_stat_table($data, $start_date, $end_date, $aggregate) $table = new stdClass(); $table->width = '100%'; $table->cellspacing = 0; - $table->class = 'databox'; + $table->class = 'info_table'; $table->data = []; $j = 0; $x = 0; @@ -270,7 +270,7 @@ function netflow_data_table($data, $start_date, $end_date, $aggregate, $pdf=fals $table->size = ['100%']; } - $table->class = 'databox w100p'; + $table->class = 'info_table w100p'; $table->cellspacing = 0; $table->data = []; @@ -339,7 +339,7 @@ function netflow_top_n_table(array $data, int $total_bytes) $values = []; $table = new stdClass(); - $table->class = 'w100p'; + $table->class = 'info_table w100p'; $table->cellspacing = 0; $table->data = []; @@ -405,7 +405,7 @@ function netflow_summary_table($data) $values = []; $table = new stdClass(); $table->cellspacing = 0; - $table->class = 'databox'; + $table->class = 'info_table'; $table->styleTable = 'width: 100%'; $table->data = []; @@ -1323,7 +1323,7 @@ function netflow_draw_item( } if ($output === 'HTML' || $output === 'PDF') { - $html = '
'; $html .= netflow_summary_table($data_summary); diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php index f476c30bfe..e9c71e0570 100644 --- a/pandora_console/operation/netflow/nf_live_view.php +++ b/pandora_console/operation/netflow/nf_live_view.php @@ -622,10 +622,13 @@ if (empty($draw) === false) { 'selected_style_theme', $config['style'] ); + + $netflowContainerClass = ($chart_type === 'netflow_data' || $chart_type === 'netflow_summary' || $chart_type === 'netflow_top_N') ? '' : 'white_box'; + // Draw the netflow chart. html_print_div( [ - 'class' => 'white_box', + 'class' => $netflowContainerClass, 'content' => netflow_draw_item( $start_date, $end_date, |