From 9ac04fba28edc2395fd010921b3fa68ab567f673 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 16 Mar 2023 09:42:59 +0100 Subject: [PATCH 01/22] Netflow fix --- pandora_console/include/functions_netflow.php | 10 +++++----- pandora_console/operation/netflow/nf_live_view.php | 5 ++++- 2 files changed, 9 insertions(+), 6 deletions(-) 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 = '
'; $html .= ''; $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, From 3aba51d0ed57394a02578d7776738016b383e593 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 16 Mar 2023 10:42:39 +0100 Subject: [PATCH 02/22] Borders and colors PDFS --- pandora_console/include/functions_events.php | 140 ++++++++++++++++++ .../include/functions_reporting_html.php | 66 +++------ pandora_console/include/styles/pandoraPDF.css | 17 ++- 3 files changed, 172 insertions(+), 51 deletions(-) diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index fca78f233f..f8874476e3 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -2752,6 +2752,146 @@ function events_print_type_img( } +/** + * Prints the event type image. + * + * @param string $type Event type from SQL. + * @param boolean $return Whether to return or print. + * + * @return string HTML with img. + */ +function events_print_type_img_pdf( + $type, + $return=false +) { + $svg = ''; + + switch ($type) { + case 'alert_recovered': + $svg = ' + Dark / 20 / alert@svg + Created with Sketch. + + + + '; + break; + + case 'alert_manual_validation': + $svg = ' + Dark / 20 / validate@svg + Created with Sketch. + + + + + + + '; + break; + + case 'going_down_critical': + case 'going_up_critical': + $svg = ' + Dark / 20 / modules@svg + Created with Sketch. + + + + '; + break; + + case 'going_up_normal': + case 'going_down_normal': + $svg = ' + Dark / 20 / modules@svg + Created with Sketch. + + + + '; + break; + + case 'going_up_warning': + case 'going_down_warning': + $svg = ' + Dark / 20 / modules@svg + Created with Sketch. + + + + '; + break; + + case 'going_unknown': + $svg = ' + Dark / 20 / modules@svg + Created with Sketch. + + + + '; + break; + + case 'system': + $svg = ' + Dark / 20 / configuration@svg + Created with Sketch. + + + + '; + break; + + case 'new_agent': + $svg = ' + Dark / 20 / agents@svg + Created with Sketch. + + + + + + + '; + break; + + case 'configuration_change': + $svg = ' + + Dark / 20 / configuration@svg + Created with Sketch. + + + + '; + break; + + case 'unknown': + default: + $svg = ' + Dark / 20 / event@svg + Created with Sketch. + + + + + + + '; + break; + } + + $output = '
'.$svg.'
'; + + if ($return) { + return $output; + } + + echo $output; +} + + /** * Prints the event type description * diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 013cb1c617..a43f852945 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -1075,24 +1075,6 @@ function reporting_html_event_report_group($table, $item, $pdf=0) } foreach ($item['data'] as $k => $event) { - // First pass along the class of this row. - if ($item['show_summary_group']) { - $table1->cellclass[$k][2] = get_priority_class($event['criticity']); - $table1->cellclass[$k][3] = get_priority_class($event['criticity']); - $table1->cellclass[$k][4] = get_priority_class($event['criticity']); - $table1->cellclass[$k][5] = get_priority_class($event['criticity']); - $table1->cellclass[$k][6] = get_priority_class($event['criticity']); - $table1->cellclass[$k][7] = get_priority_class($event['criticity']); - $table1->cellclass[$k][8] = get_priority_class($event['criticity']); - } else { - $table1->cellclass[$k][2] = get_priority_class($event['criticity']); - $table1->cellclass[$k][3] = get_priority_class($event['criticity']); - $table1->cellclass[$k][4] = get_priority_class($event['criticity']); - $table1->cellclass[$k][5] = get_priority_class($event['criticity']); - $table1->cellclass[$k][6] = get_priority_class($event['criticity']); - $table1->cellclass[$k][7] = get_priority_class($event['criticity']); - } - $data = []; // Colored box. @@ -1125,7 +1107,11 @@ function reporting_html_event_report_group($table, $item, $pdf=0) ] ); - $data[] = events_print_type_img($event['event_type'], true); + if ($pdf) { + $data[] = events_print_type_img_pdf($event['event_type'], true); + } else { + $data[] = events_print_type_img($event['event_type'], true); + } if ($item['show_summary_group']) { $data[] = $event['event_rep']; @@ -1343,19 +1329,6 @@ function reporting_html_event_report_module($table, $item, $pdf=0) if (is_array($item_data) || is_object($item_data)) { foreach ($item_data as $i => $event) { $data = []; - if ($show_summary_group) { - $table1->cellclass[$i][2] = get_priority_class($event['criticity']); - $table1->cellclass[$i][3] = get_priority_class($event['criticity']); - $table1->cellclass[$i][4] = get_priority_class($event['criticity']); - $table1->cellclass[$i][5] = get_priority_class($event['criticity']); - $table1->cellclass[$i][6] = get_priority_class($event['criticity']); - } else { - $table1->cellclass[$i][2] = get_priority_class($event['criticity']); - $table1->cellclass[$i][3] = get_priority_class($event['criticity']); - $table1->cellclass[$i][4] = get_priority_class($event['criticity']); - $table1->cellclass[$i][6] = get_priority_class($event['criticity']); - } - // Colored box. switch ($event['estado']) { case 0: @@ -1386,7 +1359,12 @@ function reporting_html_event_report_module($table, $item, $pdf=0) ] ); - $data[1] = events_print_type_img($event['event_type'], true); + if ($pdf) { + $data[1] = events_print_type_img_pdf($event['event_type'], true); + } else { + $data[1] = events_print_type_img($event['event_type'], true); + } + $data[2] = io_safe_output($event['evento']); $data[3] = get_priority_name($event['criticity']); if ($show_summary_group) { @@ -2671,21 +2649,6 @@ function reporting_html_event_report_agent($table, $item, $pdf=0) } foreach ($item['data'] as $i => $event) { - if ($item['show_summary_group']) { - $table1->cellclass[$i][2] = get_priority_class($event['criticity']); - $table1->cellclass[$i][3] = get_priority_class($event['criticity']); - $table1->cellclass[$i][4] = get_priority_class($event['criticity']); - $table1->cellclass[$i][5] = get_priority_class($event['criticity']); - $table1->cellclass[$i][6] = get_priority_class($event['criticity']); - $table1->cellclass[$i][7] = get_priority_class($event['criticity']); - } else { - $table1->cellclass[$i][2] = get_priority_class($event['criticity']); - $table1->cellclass[$i][3] = get_priority_class($event['criticity']); - $table1->cellclass[$i][4] = get_priority_class($event['criticity']); - $table1->cellclass[$i][5] = get_priority_class($event['criticity']); - $table1->cellclass[$i][6] = get_priority_class($event['criticity']); - } - $data = []; // Colored box. switch ($event['status']) { @@ -2716,7 +2679,11 @@ function reporting_html_event_report_agent($table, $item, $pdf=0) ] ); - $data[] = events_print_type_img($event['type'], true); + if ($pdf) { + $data[] = events_print_type_img_pdf($event['type'], true); + } else { + $data[] = events_print_type_img($event['type'], true); + } if ($item['show_summary_group']) { $data[] = $event['count']; @@ -3284,6 +3251,7 @@ function get_alert_table($data) { $table = new StdCLass(); $table->width = '99%'; + $table->class = 'info_table'; $table->data = []; $table->head = []; $table->headstyle = []; diff --git a/pandora_console/include/styles/pandoraPDF.css b/pandora_console/include/styles/pandoraPDF.css index 05e6ec9bb9..151ee4ea8f 100644 --- a/pandora_console/include/styles/pandoraPDF.css +++ b/pandora_console/include/styles/pandoraPDF.css @@ -216,6 +216,19 @@ table tbody td.cellBig { font-size: 18px; } -table.info_table > tbody > tr:nth-child(even) { - background-color: #e5e9ed !important; +table.info_table { + border-collapse: collapse; +} + +table.info_table thead tr th, +table.info_table thead tr td { + background-color: white !important; +} + +table.info_table thead tr th { + border-bottom: 1px solid #333333; +} + +table.info_table tbody tr td { + border-bottom: 1px solid #e5e5e5; } From 21c263c7c467ae016b5df7f5b3a69a9e0ceb5a05 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 16 Mar 2023 11:58:35 +0100 Subject: [PATCH 03/22] Setup views --- .../godmode/setup/setup_general.php | 12 +- .../godmode/setup/setup_visuals.php | 190 +++++++++++------- 2 files changed, 118 insertions(+), 84 deletions(-) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index 879eef9ab3..90c7403847 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -178,18 +178,18 @@ $select_in = html_print_select( $table_ichanges = ' - - - + + + - - + - +
'.__('Out of black list').''.__('In black list').''.__('Out of black list').''.__('In black list').'
'.$select_out.' + '.$select_out.' '.html_print_image('images/arrow@svg.svg', true, ['style' => 'rotate: 180deg;', 'id' => 'right_iblacklist', 'alt' => __('Push selected modules into blacklist'), 'title' => __('Push selected modules into blacklist'), 'class' => 'main_menu_icon invert_filter']).'

'.html_print_image('images/arrow@svg.svg', true, ['style' => 'rotate: 0', 'id' => 'left_iblacklist', 'alt' => __('Pop selected modules out of blacklist'), 'title' => __('Pop selected modules out of blacklist'), 'class' => 'main_menu_icon invert_filter']).'
'.$select_in.''.$select_in.'
'; diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index 2b5c553ca1..589593ba49 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -65,7 +65,7 @@ require_once 'include/functions_themes.php'; require_once 'include/functions_gis.php'; $row = 0; -echo '
'; +echo ''; html_print_input_hidden('update_config', 1); $performance_variables_control = (array) json_decode(io_safe_output($config['performance_variables_control'])); @@ -392,7 +392,7 @@ $table_styles->data[$row][] = html_print_label_input_block( $config['login_background'], '', __('Default'), - '', + 'background_pandora_console_keys.jpg', true, false, true, @@ -532,7 +532,7 @@ if (enterprise_installed() === true) { $config['custom_splash_login'], '', __('Default'), - 'default', + 'default.svg', true, false, true, @@ -648,7 +648,7 @@ if (enterprise_installed() === true) { $config['custom_network_center_logo'], '', __('Default'), - '', + 'bola_pandora_network_maps.png', true, false, true, @@ -1588,44 +1588,84 @@ $switchProminentTime .= html_print_radio_button( true ); -if ($config['csv_divider'] !== ';' && $config['csv_divider'] !== ',' && $config['csv_divider'] !== '|') { - $csvDividerInputs = html_print_input_text( - 'csv_divider', - $config['csv_divider'], - '', - 20, - 255, - true - ); - $csvDividerInputs .= ''.html_print_image( - 'images/logs@svg.svg', - true, - [ - 'id' => 'select', - 'class' => 'main_menu_icon invert_filter', - ] - ).''; -} else { - $csvDividerInputs = html_print_select( - $common_dividers, - 'csv_divider', - $config['csv_divider'], - '', - '', - '', - true, - false, - false - ); - $csvDividerInputs .= ''.html_print_image( - 'images/edit.svg', - true, - [ - 'id' => 'pencil', - 'class' => 'main_menu_icon invert_filter', - ] - ).''; -} +$csvDividerIconEdit = 'images/edit.svg'; +$csvDividerIconFile = 'images/logs@svg.svg'; + +$isCommonDivider = (in_array($config['csv_divider'], $common_dividers) === true); +$csvDividerIcon = ($isCommonDivider === false) ? $csvDividerIconEdit : $csvDividerIconFile; + +$csvDividerInputsSub = html_print_div( + [ + 'class' => ($isCommonDivider === false) ? 'invisible' : '', + 'id' => 'custom_divider_input', + 'content' => html_print_input_text( + 'csv_divider', + $config['csv_divider'], + '', + 20, + 255, + true, + false, + false, + '', + '', + '', + 'off', + false, + '', + '', + '', + ($isCommonDivider === false) + ), + ], + true +); + +$csvDividerInputsSub .= html_print_div( + [ + 'class' => ($isCommonDivider === true) ? 'invisible' : '', + 'id' => 'common_divider_input', + 'content' => html_print_select( + $common_dividers, + 'csv_divider', + $config['csv_divider'], + '', + '', + '', + true, + false, + false, + '', + ($isCommonDivider === true), + ), + ], + true +); + +$csvDividerInputs = html_print_div( + [ + 'class' => 'mrgn_right_10px', + 'content' => $csvDividerInputsSub, + ], + true +); + +$csvDividerInputs .= html_print_image( + $csvDividerIcon, + true, + [ + 'id' => 'select_csv_divider', + 'class' => 'invert_filter', + ] +); + +$csvDividerBlock = html_print_div( + [ + 'class' => 'flex-row-center', + 'content' => $csvDividerInputs, + ], + true +); $options_data_multiplier = []; $options_data_multiplier[0] = __('Use 1024 when module unit are bytes'); @@ -1980,7 +2020,7 @@ $row++; $table_other->data[$row][] = html_print_label_input_block( __('CSV divider'), - $csvDividerInputs + $csvDividerBlock ); $table_other->data[$row][] = html_print_label_input_block( @@ -2001,47 +2041,47 @@ $row++; * */ -echo '
'; +echo '
'; echo ''.__('Behaviour configuration').' '.ui_print_help_icon('behavoir_conf_tab', true).''; html_print_table($table_behaviour); echo '
'; -echo '
'; +echo '
'; echo ''.__('GIS configuration').' '.ui_print_help_icon('gis_conf_tab', true).''; html_print_table($table_gis); echo '
'; -echo '
'; +echo '
'; echo ''.__('Style configuration').' '.ui_print_help_icon('style_conf_tab', true).''; html_print_table($table_styles); echo '
'; -echo '
'; +echo '
'; echo ''.__('Charts configuration').' '.ui_print_help_icon('charts_conf_tab', true).''; html_print_table($table_chars); echo '
'; -echo '
'; +echo '
'; echo ''.__('Font and Text configuration').' '.ui_print_help_icon('front_and_text_conf_tab', true).''; html_print_table($table_font); echo '
'; -echo '
'; +echo '
'; echo ''.__('Visual consoles configuration').' '.ui_print_help_icon('visual_consoles_conf_tab', true).''; html_print_table($table_vc); echo '
'; -echo '
'; +echo '
'; echo ''.__('Reports configuration ').ui_print_help_icon('reports_configuration_tab', true).''; html_print_table($table_report); echo '
'; -echo '
'; +echo '
'; echo ''.__('Services configuration').' '.ui_print_help_icon('services_conf_tab', true).''; html_print_table($table_ser); echo '
'; -echo '
'; +echo '
'; echo ''.__('Other configuration').' '.ui_print_help_icon('other_conf_tab', true).''; html_print_table($table_other); echo '
'; @@ -2068,26 +2108,21 @@ ui_require_javascript_file('pandora'); ?> '; $table = new stdClass(); $table->width = '100%'; - $table->class = 'databox filters'; + $table->class = 'databox filter-table-adv'; - $table->style[0] = 'font-weight: bold'; + $table->style[0] = 'width: 50%'; $table->data = []; - $table->data[0][0] = __('Images'); - $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); - $table->data[0][1] .= html_print_div( + $table->data[0][0] = html_print_label_input_block( + __('Language'), + html_print_select_from_sql( + 'SELECT id_language, name FROM tlanguage', + 'id_lang', + '', + '', + '', + '0', + true, + false, + true, + false, + 'width: 100%;' + ) + ); + $table->data[0][1] = html_print_label_input_block( + __('Profile'), + html_print_select($profiles, 'id_profile', '0', '', __('All'), 0, true) + ); + $table->data[1][0] = html_print_label_input_block( + __('Title'), + html_print_input_text('title', '', '', 35, 100, true) + ); + $table->data[1][1] = html_print_label_input_block( + __('Url'), + html_print_input_text('url', '', '', 35, 100, true) + ); + $table->data[2][0] = html_print_label_input_block( + __('Text'), + html_print_textarea('text', 5, 50, '', '', true), + ); + $table->data[2][1] = html_print_label_input_block( + __('Enable'), + html_print_checkbox_switch('enable', true, true, true) + ); + + $inputImages = html_print_div(['id' => 'inputs_images'], true); + $inputImages .= html_print_div( [ 'id' => 'notices_images', 'class' => 'invisible', @@ -696,41 +743,36 @@ class TipsWindow ], true ); - $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); - $table->data[1][0] = __('Language'); - $table->data[1][1] = html_print_select_from_sql( - 'SELECT id_language, name FROM tlanguage', - 'id_lang', - '', - '', - '', - '0', + $inputImages .= html_print_div( + [ + 'id' => 'notices_images', + 'class' => 'invisible empty_input_images', + 'content' => '

'.__('Please select a image').'

', + ], true ); - $table->data[2][0] = __('Profile'); - $table->data[2][1] = html_print_select($profiles, 'id_profile', '0', '', __('All'), 0, true); - $table->data[3][0] = __('Title'); - $table->data[3][1] = html_print_input_text('title', '', '', 35, 100, true); - $table->data[4][0] = __('Text'); - $table->data[4][1] = html_print_textarea('text', 5, 50, '', '', true); - $table->data[5][0] = __('Url'); - $table->data[5][1] = html_print_input_text('url', '', '', 35, 100, true); - $table->data[6][0] = __('Enable'); - $table->data[6][1] = html_print_checkbox_switch('enable', true, true, true); + $inputImages .= html_print_button(__('Add image'), 'button_add_image', false, '', ['class' => 'button-add-image'], true); - echo ''; + $table->data[3][0] = html_print_label_input_block( + __('Images'), + $inputImages + ); + + echo ''; html_print_table($table); echo '
'; - html_print_submit_button( + + $actionButtons = html_print_submit_button( __('Send'), 'submit_button', false, [ 'class' => 'sub', 'icon' => 'update', - ] + ], + true ); - html_print_submit_button( + $actionButtons .= html_print_submit_button( __('Preview'), 'preview_button', false, @@ -738,8 +780,11 @@ class TipsWindow 'class' => 'sub preview', 'id' => 'prev_button', 'icon' => 'preview', - ] + ], + true ); + + html_print_action_buttons($actionButtons); echo '
'; echo ''; html_print_div(['id' => 'tips_window_modal_preview']); @@ -813,16 +858,52 @@ class TipsWindow '; $table = new stdClass(); $table->width = '100%'; - $table->class = 'databox filters'; + $table->class = 'databox filter-table-adv'; - $table->style[0] = 'font-weight: bold'; + $table->style[0] = 'width: 50%'; $table->data = []; - $table->data[0][0] = __('Images'); - $table->data[0][1] .= $outputImagesTip; - $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); - $table->data[0][1] .= html_print_input_hidden('images_to_delete', '{}', true); - $table->data[0][1] .= html_print_div( + + $table->data[0][0] = html_print_label_input_block( + __('Language'), + html_print_select_from_sql( + 'SELECT id_language, name FROM tlanguage', + 'id_lang', + $tip['id_lang'], + '', + '', + '0', + true, + false, + true, + false, + 'width: 100%;' + ) + ); + $table->data[0][1] = html_print_label_input_block( + __('Profile'), + html_print_select($profiles, 'id_profile', $tip['id_profile'], '', __('All'), 0, true) + ); + $table->data[1][0] = html_print_label_input_block( + __('Title'), + html_print_input_text('title', $tip['title'], '', 35, 100, true) + ); + $table->data[1][1] = html_print_label_input_block( + __('Url'), + html_print_input_text('url', $tip['url'], '', 35, 100, true) + ); + $table->data[2][0] = html_print_label_input_block( + __('Text'), + html_print_textarea('text', 5, 50, $tip['text'], '', true), + ); + $table->data[2][1] = html_print_label_input_block( + __('Enable'), + html_print_checkbox_switch('enable', 1, ($tip['enable'] === '1') ? true : false, true) + ); + $inputImages = $outputImagesTip; + $inputImages .= html_print_div(['id' => 'inputs_images'], true); + $inputImages .= html_print_input_hidden('images_to_delete', '{}', true); + $inputImages .= html_print_div( [ 'id' => 'notices_images', 'class' => 'invisible', @@ -830,41 +911,35 @@ class TipsWindow ], true ); - $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); - $table->data[1][0] = __('Language'); - $table->data[1][1] = html_print_select_from_sql( - 'SELECT id_language, name FROM tlanguage', - 'id_lang', - $tip['id_lang'], - '', - '', - '0', + $inputImages .= html_print_div( + [ + 'id' => 'notices_images', + 'class' => 'invisible empty_input_images', + 'content' => '

'.__('Please select a image').'

', + ], true ); - $table->data[2][0] = __('Profile'); - $table->data[2][1] = html_print_select($profiles, 'id_profile', $tip['id_profile'], '', __('All'), 0, true); - $table->data[3][0] = __('Title'); - $table->data[3][1] = html_print_input_text('title', $tip['title'], '', 35, 100, true); - $table->data[4][0] = __('Text'); - $table->data[4][1] = html_print_textarea('text', 5, 50, $tip['text'], '', true); - $table->data[5][0] = __('Url'); - $table->data[5][1] = html_print_input_text('url', $tip['url'], '', 35, 100, true); - $table->data[6][0] = __('Enable'); - $table->data[6][1] = html_print_checkbox_switch('enable', 1, ($tip['enable'] === '1') ? true : false, true); + $inputImages .= html_print_button(__('Add image'), 'button_add_image', false, '', ['class' => 'button-add-image'], true); + + $table->data[3][0] = html_print_label_input_block( + __('Images'), + $inputImages + ); echo '
'; html_print_table($table); echo '
'; - html_print_submit_button( + $actionButtons = html_print_submit_button( __('Send'), 'submit_button', false, [ 'class' => 'sub', 'icon' => 'update', - ] + ], + true ); - html_print_submit_button( + $actionButtons .= html_print_submit_button( __('Preview'), 'preview_button', false, @@ -872,9 +947,12 @@ class TipsWindow 'class' => 'sub preview', 'id' => 'prev_button', 'icon' => 'preview', - ] + ], + true ); + html_print_action_buttons($actionButtons); + echo '
'; echo '
'; html_print_div(['id' => 'tips_window_modal_preview']); diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index 1f63c2bbe2..e454488094 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -2,15 +2,16 @@ $(document).ready(function() { $("#button-button_add_image").on("click", function() { var numberImages = $("#inputs_images").children().length; + $(".input-file").each(function(index) { + $(this).attr("name", "file_" + index); + }); var div_image = document.createElement("div"); $(div_image).attr("class", "action_image"); $(div_image).append( - `` + `` ); $(div_image).append( - `` + `` ); $("#inputs_images").append(div_image); }); @@ -72,8 +73,8 @@ function activeCarousel() { $(".carousel .images").bxSlider({ controls: true }); } } -function removeInputImage(name) { - $(`input[name=${name}]`) +function removeInputImage(e) { + $(e) .parent() .remove(); if ($(".action_image").length === 0) { @@ -314,7 +315,7 @@ function previewTip() { //Images in client var totalInputsFiles = $("input[type=file]").length; - if (totalInputsFiles > 0) { + if (totalInputsFiles > 0 && validateImages()) { extradata["totalFiles64"] = totalInputsFiles; $("input[type=file]").each(function(index) { var reader = new FileReader(); @@ -352,3 +353,15 @@ function previewTip() { }); } } + +function validateImages() { + $(".empty_input_images").addClass("invisible"); + let validate = true; + $("input[type=file]").each(function() { + if (this.files.length == 0) { + $(".empty_input_images").removeClass("invisible"); + validate = false; + } + }); + return validate; +} diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index 6e8927aa4d..505799949b 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -172,17 +172,17 @@ span.count-round-tip.active { } span.enable { display: block; - width: 15px; - height: 15px; - border-radius: 15px; + width: 40px; + height: 20px; + border-radius: 4px; background-color: #82b92e; margin: 0 auto; } span.disable { display: block; - width: 15px; - height: 15px; - border-radius: 15px; + width: 40px; + height: 20px; + border-radius: 4px; background-color: #e63c52; margin: 0 auto; } @@ -212,3 +212,12 @@ span.disable { opacity: 0; pointer-events: none; } +#list_tips_windows .main_menu_icon { + padding: 0px; +} +#list_tips_windows .table_action_buttons { + text-align: center; +} +.button-add-image { + max-width: fit-content; +} diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 859caf43a0..45b6680ff2 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -83,7 +83,7 @@ $output .= ''; -// TODO Delete this buttons and use html_print_button when merge new design + $output .= html_print_button( __('Maybe later'), '', From f8f65bf5a12c69681a6b585f8f0dfec98d0b60b2 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 16 Mar 2023 17:26:48 +0100 Subject: [PATCH 19/22] fixed icon size --- pandora_console/include/javascript/tipsWindow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index e454488094..008991f313 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -11,7 +11,7 @@ $(document).ready(function() { `` ); $(div_image).append( - `` + `` ); $("#inputs_images").append(div_image); }); From bbb1855d8153b10c91b053be46399339565fdb3d Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 16 Mar 2023 17:38:51 +0100 Subject: [PATCH 20/22] External Tools --- .../godmode/setup/setup_external_tools.php | 2 +- .../include/class/ExternalTools.class.php | 293 ++++++++++-------- 2 files changed, 160 insertions(+), 135 deletions(-) diff --git a/pandora_console/godmode/setup/setup_external_tools.php b/pandora_console/godmode/setup/setup_external_tools.php index 30bdd6b188..1aa0fd7638 100644 --- a/pandora_console/godmode/setup/setup_external_tools.php +++ b/pandora_console/godmode/setup/setup_external_tools.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/include/class/ExternalTools.class.php b/pandora_console/include/class/ExternalTools.class.php index 3bcdce51ab..eb751b2ff9 100644 --- a/pandora_console/include/class/ExternalTools.class.php +++ b/pandora_console/include/class/ExternalTools.class.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -203,132 +203,161 @@ class ExternalTools extends HTML } } + html_print_div(['id' => 'layer_sound_alert']); + html_print_div(['id' => 'layer_sound_critical']); + html_print_div(['id' => 'layer_sound_warning']); // Make the table for show the form. $table = new stdClass(); $table->width = '100%'; + $table->class = 'filter-table-adv'; $table->id = 'commandsTable'; $table->data = []; - $table->data[$i][0] = __('Sound for Alert fired'); - $table->data[$i][1] = html_print_select( - $sounds, - 'sound_alert', - $config['sound_alert'], - 'replaySound(\'alert\');', - '', - '', - true - ); - $table->data[$i][1] .= html_print_anchor( - [ - 'href' => 'javascript:toggleButton(\'alert\')', - 'content' => html_print_image( - 'images/control_play_col.png', - true, - [ - 'id' => 'button_sound_warning', - 'style' => 'vertical-align: middle;', - 'width' => '16', - 'title' => __('Play sound'), - 'class' => 'invert_filter', - - ] - ), - ], - true - ); - $table->data[$i++][1] .= '
'; - - $table->data[$i][0] = __('Sound for Monitor critical'); - $table->data[$i][1] = html_print_select( - $sounds, - 'sound_critical', - $config['sound_critical'], - 'replaySound(\'critical\');', - '', - '', - true - ); - $table->data[$i][1] .= html_print_anchor( - [ - 'href' => 'javascript:toggleButton(\'critical\')', - 'content' => html_print_image( - 'images/control_play_col.png', - true, - [ - 'id' => 'button_sound_warning', - 'style' => 'vertical-align: middle;', - 'width' => '16', - 'title' => __('Play sound'), - 'class' => 'invert_filter', - - ] - ), - ], - true - ); - $table->data[$i++][1] .= '
'; - - $table->data[$i][0] = __('Sound for Monitor warning'); - $table->data[$i][1] = html_print_select( - $sounds, - 'sound_warning', - $config['sound_warning'], - 'replaySound(\'warning\');', - '', - '', - true - ); - $table->data[$i][1] .= html_print_anchor( - [ - 'href' => 'javascript:toggleButton(\'warning\')', - 'content' => html_print_image( - 'images/control_play_col.png', - true, - [ - 'id' => 'button_sound_warning', - 'style' => 'vertical-align: middle;', - 'width' => '16', - 'title' => __('Play sound'), - 'class' => 'invert_filter', - - ] - ), - ], - true - ); - $table->data[$i++][1] .= '
'; - - $table->data[$i][0] = __('Custom graphviz directory'); - $table->data[$i++][1] = html_print_input_text( - 'graphviz_bin_dir', - $config['graphviz_bin_dir'], - '', - 25, - 255, - true + $table->data[$i][] = html_print_label_input_block( + __('Sound for Alert fired'), + html_print_div( + [ + 'class' => '', + 'content' => html_print_select( + $sounds, + 'sound_alert', + $config['sound_alert'], + 'replaySound(\'alert\');', + '', + '', + true + ).html_print_anchor( + [ + 'href' => 'javascript:toggleButton(\'alert\')', + 'content' => html_print_image( + 'images/change-active.svg', + true, + [ + 'id' => 'button_sound_warning', + 'style' => 'vertical-align: middle; margin-left: 10px', + 'width' => '16', + 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] + ), + ], + true + ), + ], + true + ), ); - $table->data[$i][0] = __('Traceroute path'); - $table->data[$i++][1] = html_print_input_text('traceroute_path', $this->pathTraceroute, '', 40, 255, true); + $table->data[$i++][] = html_print_label_input_block( + __('Sound for Monitor critical'), + html_print_div( + [ + 'class' => '', + 'content' => html_print_select( + $sounds, + 'sound_critical', + $config['sound_critical'], + 'replaySound(\'critical\');', + '', + '', + true + ).html_print_anchor( + [ + 'href' => 'javascript:toggleButton(\'critical\')', + 'content' => html_print_image( + 'images/change-active.svg', + true, + [ + 'id' => 'button_sound_warning', + 'style' => 'vertical-align: middle; margin-left: 10px', + 'width' => '16', + 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] + ), + ], + true + ), + ], + true + ), + ); - $table->data[$i][0] = __('Ping path'); - $table->data[$i++][1] = html_print_input_text('ping_path', $this->pathPing, '', 40, 255, true); + $table->data[$i++][] = html_print_label_input_block( + __('Sound for Monitor warning'), + html_print_div( + [ + 'class' => '', + 'content' => html_print_select( + $sounds, + 'sound_warning', + $config['sound_warning'], + 'replaySound(\'warning\');', + '', + '', + true + ).html_print_anchor( + [ + 'href' => 'javascript:toggleButton(\'warning\')', + 'content' => html_print_image( + 'images/change-active.svg', + true, + [ + 'id' => 'button_sound_warning', + 'style' => 'vertical-align: middle; margin-left: 10px', + 'width' => '16', + 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] + ), + ], + true + ), + ], + true + ), + ); - $table->data[$i][0] = __('Nmap path'); - $table->data[$i++][1] = html_print_input_text('nmap_path', $this->pathNmap, '', 40, 255, true); + $table->data[$i][] = html_print_label_input_block( + __('Custom graphviz directory'), + html_print_input_text( + 'graphviz_bin_dir', + $config['graphviz_bin_dir'], + '', + 25, + 255, + true + ) + ); - $table->data[$i][0] = __('Dig path'); - $table->data[$i++][1] = html_print_input_text('dig_path', $this->pathDig, '', 40, 255, true); + $table->data[$i++][] = html_print_label_input_block( + __('Snmpget path'), + html_print_input_text('snmpget_path', $this->pathSnmpget, '', 40, 255, true) + ); - $table->data[$i][0] = __('Snmpget path'); - $table->data[$i++][1] = html_print_input_text('snmpget_path', $this->pathSnmpget, '', 40, 255, true); + $table->data[$i][] = html_print_label_input_block( + __('Traceroute path'), + html_print_input_text('traceroute_path', $this->pathTraceroute, '', 40, 255, true) + ); + $table->data[$i++][] = html_print_label_input_block( + __('Ping path'), + html_print_input_text('ping_path', $this->pathPing, '', 40, 255, true) + ); + + $table->data[$i][] = html_print_label_input_block( + __('Nmap path'), + html_print_input_text('nmap_path', $this->pathNmap, '', 40, 255, true) + ); + $table->data[$i++][] = html_print_label_input_block( + __('Dig path'), + html_print_input_text('dig_path', $this->pathDig, '', 40, 255, true) + ); $table->data[$i][0] = html_print_div( [ 'class' => 'title_custom_commands bolder float-left', - 'content' => __('Custom commands'), + 'content' => '', ], true ); @@ -336,13 +365,13 @@ class ExternalTools extends HTML [ 'id' => 'add_button_custom_command', 'content' => html_print_image( - 'images/add.png', + 'images/plus@svg.svg', true, [ 'title' => __('Add new custom command'), 'onclick' => 'manageCommandLines(event)', 'id' => 'img_add_button_custom_command', - 'class' => 'invert_filter', + 'class' => 'main_menu_icon invert_filter', ] ), @@ -350,8 +379,8 @@ class ExternalTools extends HTML true ); - $table->data[$i][0] = __('Command'); - $table->data[$i++][1] = __('Parameters').ui_print_help_tip(__('Adding `_address_` macro will use agent\'s IP when perform the execution'), true); + $table->data[$i][0] = '
'; + $table->data[$i++][1] = '
'.ui_print_help_tip(__('Adding `_address_` macro will use agent\'s IP when perform the execution'), true, '', false, 'margin-top: 2px').'
'; $y = 1; $iRow = $i; @@ -378,30 +407,27 @@ class ExternalTools extends HTML } } - $form = '
'; + $form = ''; $form .= '
'; $form .= ''.__('Options').''; $form .= html_print_input_hidden('update_paths', 1, true); $form .= html_print_table($table, true); $form .= '
'; - $form .= html_print_div( - [ - 'id' => '', - 'class' => 'action-buttons', - 'style' => 'width: 100%', - 'content' => html_print_submit_button( - __('Update'), - 'update_button', - false, - [ 'icon' => 'update' ], - true - ), - ], - true - ); - $form .= '
'; + html_print_action_buttons( + html_print_submit_button( + __('Update'), + 'update_button', + false, + [ + 'icon' => 'update', + 'form' => 'form_setup', + ], + true + ) + ); + echo $form; } @@ -436,15 +462,14 @@ class ExternalTools extends HTML $output = html_print_div( [ 'id' => 'delete_button_custom_'.$index, - 'class' => '', 'content' => html_print_image( - 'images/delete.png', + 'images/delete.svg', true, [ 'title' => __('Delete this custom command'), 'onclick' => 'manageCommandLines(event)', 'id' => 'img_delete_button_custom_'.$index, - 'class' => 'invert_filter', + 'class' => 'main_menu_icon invert_filter', ] ), ], From 211f29c0f95391ce1f10c8c4007cf7aab50d5583 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 16 Mar 2023 17:49:57 +0100 Subject: [PATCH 21/22] Websocket engine and quickshell --- pandora_console/extensions/quick_shell.php | 121 ++++++++++-------- .../godmode/setup/setup_websocket_engine.php | 84 ++++++------ 2 files changed, 109 insertions(+), 96 deletions(-) diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index 3f8170e3c2..21e41cb63a 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -441,84 +441,95 @@ function quickShellSettings() } // Form. Using old style. - echo '
'; + echo '
'; echo ''.__('Quickshell').''; $t = new StdClass(); $t->data = []; $t->width = '100%'; - $t->class = 'databox filters'; + $t->class = 'filter-table-adv'; $t->data = []; $t->style = []; - $t->style[0] = 'font-weight: bold; width: 40%;'; + $t->style[0] = 'width: 50%;'; - $t->data[0][0] = __('Gotty path'); - $t->data[0][1] = html_print_input_text( - 'gotty', - $config['gotty'], - '', - 30, - 100, - true + $t->data[0][] = html_print_label_input_block( + __('Gotty path'), + html_print_input_text( + 'gotty', + $config['gotty'], + '', + 30, + 100, + true + ) ); - $t->data[1][0] = __('Gotty host'); - $t->data[1][1] = html_print_input_text( - 'gotty_host', - $config['gotty_host'], - '', - 30, - 100, - true + $t->data[0][] = html_print_label_input_block( + __('Gotty host'), + html_print_input_text( + 'gotty_host', + $config['gotty_host'], + '', + 30, + 100, + true + ) ); - $t->data[2][0] = __('Gotty ssh port'); - $t->data[2][1] = html_print_input_text( - 'gotty_ssh_port', - $config['gotty_ssh_port'], - '', - 30, - 100, - true + $t->data[1][] = html_print_label_input_block( + __('Gotty ssh port'), + html_print_input_text( + 'gotty_ssh_port', + $config['gotty_ssh_port'], + '', + 30, + 100, + true + ) ); - $t->data[3][0] = __('Gotty telnet port'); - $t->data[3][1] = html_print_input_text( - 'gotty_telnet_port', - $config['gotty_telnet_port'], - '', - 30, - 100, - true + $t->data[1][] = html_print_label_input_block( + __('Gotty telnet port'), + html_print_input_text( + 'gotty_telnet_port', + $config['gotty_telnet_port'], + '', + 30, + 100, + true + ) ); - $hidden = new StdClass(); + $hidden = new stdClass(); $hidden->data = []; $hidden->width = '100%'; - $hidden->class = 'databox filters'; + $hidden->class = 'filter-table-adv'; $hidden->data = []; - $hidden->style[0] = 'font-weight: bold;width: 40%;'; + $hidden->style[0] = 'width: 50%;'; - $hidden->data[0][0] = __('Gotty user'); - $hidden->data[0][1] = html_print_input_text( - 'gotty_user', - $config['gotty_user'], - '', - 30, - 100, - true + $hidden->data[0][] = html_print_label_input_block( + __('Gotty user'), + html_print_input_text( + 'gotty_user', + $config['gotty_user'], + '', + 30, + 100, + true + ) ); - $hidden->data[1][0] = __('Gotty password'); - $hidden->data[1][1] = html_print_input_password( - 'gotty_pass', - io_output_password($config['gotty_pass']), - '', - 30, - 100, - true + $hidden->data[0][] = html_print_label_input_block( + __('Gotty password'), + html_print_input_password( + 'gotty_pass', + io_output_password($config['gotty_pass']), + '', + 30, + 100, + true + ) ); - $hidden->data[1][1] .= ui_print_reveal_password('gotty_pass', true); html_print_table($t); diff --git a/pandora_console/godmode/setup/setup_websocket_engine.php b/pandora_console/godmode/setup/setup_websocket_engine.php index f6e05c09de..e042ae7788 100644 --- a/pandora_console/godmode/setup/setup_websocket_engine.php +++ b/pandora_console/godmode/setup/setup_websocket_engine.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -32,68 +32,70 @@ $url = ui_get_full_url( 'index.php?sec=gsetup&sec2=godmode/setup/setup&section=websocket_engine&pure='.$config['pure'] ); -echo '
'; +echo ''; -echo '
'; +echo '
'; echo ''.__('WebSocket settings').''; $t = new StdClass(); $t->data = []; $t->width = '100%'; -$t->class = 'databox filters'; +$t->class = 'databox filter-table-adv'; $t->data = []; -$t->style[0] = 'font-weight: bold'; -$t->data[0][0] = __('Bind address'); -$t->data[0][1] = html_print_input_text( - 'ws_bind_address', - $config['ws_bind_address'], - '', - 30, - 100, - true +$t->data[0][] = html_print_label_input_block( + __('Bind address'), + html_print_input_text( + 'ws_bind_address', + $config['ws_bind_address'], + '', + 30, + 100, + true + ) ); -$t->data[1][0] = __('Bind port'); -$t->data[1][2] = html_print_input_text( - 'ws_port', - $config['ws_port'], - '', - 30, - 100, - true +$t->data[0][] = html_print_label_input_block( + __('Bind port'), + html_print_input_text( + 'ws_port', + $config['ws_port'], + '', + 30, + 100, + true + ) ); -$t->data[2][0] = __('WebSocket proxy url'); -$t->data[2][2] = html_print_input_text( - 'ws_proxy_url', - $config['ws_proxy_url'], - '', - 30, - 100, - true +$t->data[1][] = html_print_label_input_block( + __('WebSocket proxy url'), + html_print_input_text( + 'ws_proxy_url', + $config['ws_proxy_url'], + '', + 30, + 100, + true + ) ); html_print_input_hidden('update_config', 1); html_print_table($t); - echo '
'; if (function_exists('quickShellSettings') === true) { quickShellSettings(); } -html_print_div( - [ - 'class' => 'action-buttons w100p', - 'content' => html_print_submit_button( - __('Update'), - 'update_button', - false, - [ 'icon' => 'update' ], - true - ), - ] +html_print_action_buttons( + html_print_submit_button( + __('Update'), + 'update_button', + false, + [ 'icon' => 'update' ], + true + ) ); + echo ''; From 3f09fd16a757e678756334ea92b480239b063a21 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 16 Mar 2023 18:51:54 +0100 Subject: [PATCH 22/22] fixed styles --- pandora_console/godmode/setup/os.builder.php | 2 +- pandora_console/godmode/setup/os.list.php | 2 +- pandora_console/include/class/TipsWindow.class.php | 5 ++++- pandora_console/include/styles/pandora.css | 6 +++--- pandora_console/include/styles/tables.css | 9 ++++----- pandora_console/index.php | 2 -- pandora_console/operation/agentes/status_monitor.php | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pandora_console/godmode/setup/os.builder.php b/pandora_console/godmode/setup/os.builder.php index f54eea5834..4c79ae4c07 100644 --- a/pandora_console/godmode/setup/os.builder.php +++ b/pandora_console/godmode/setup/os.builder.php @@ -55,7 +55,7 @@ $iconData[] = html_print_select( $iconData[] = html_print_div( [ 'id' => 'icon_image', - 'class' => 'inverse_filter main_menu_icon', + 'class' => 'invert_filter main_menu_icon', 'style' => 'margin-left: 10px', 'content' => ui_print_os_icon($idOS, false, true), ], diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index 2ae5096893..96223e8d09 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -133,7 +133,7 @@ foreach ($osList as $os) { $data[] = html_print_anchor( [ 'href' => $hrefDelete, - 'class' => 'inverse_filter main_menu_icon', + 'class' => 'invert_filter main_menu_icon', 'content' => html_print_image('images/delete.svg', true), ], true diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 34e9ce3e27..81b3c92017 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -121,7 +121,10 @@ class TipsWindow } ui_require_css_file('tips_window'); - ui_require_css_file('pandora_black'); + if ($config['style'] === 'pandora_black' && is_metaconsole() === false) { + ui_require_css_file('pandora_black'); + } + ui_require_css_file('jquery.bxslider'); ui_require_javascript_file('tipsWindow'); ui_require_javascript_file('jquery.bxslider.min'); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 862bc3d1ef..6516f34890 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -1423,7 +1423,7 @@ div#menu_container { div#menu { width: 45px; float: left; - z-index: 2; + z-index: 3; position: absolute; } @@ -1438,7 +1438,7 @@ div#head { min-width: 882px; background-color: #fff; color: #000; - z-index: 2; + z-index: 3; } .fixed_header { @@ -1795,7 +1795,7 @@ div.title_line { #menu_tab_frame_view_bc { position: sticky; top: 61px; - z-index: 1; + z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; diff --git a/pandora_console/include/styles/tables.css b/pandora_console/include/styles/tables.css index b4b4719088..4b13a2cd60 100644 --- a/pandora_console/include/styles/tables.css +++ b/pandora_console/include/styles/tables.css @@ -236,7 +236,8 @@ .table_action_buttons > a, .table_action_buttons > img, .table_action_buttons > button, -.table_action_buttons > form { +.table_action_buttons > form, +.table_action_buttons > div { visibility: hidden; } .info_table > tbody > tr:hover { @@ -248,7 +249,8 @@ .info_table > tbody > tr:hover .table_action_buttons > a, .info_table > tbody > tr:hover .table_action_buttons > img, .info_table > tbody > tr:hover .table_action_buttons > button, -.info_table > tbody > tr:hover .table_action_buttons > form { +.info_table > tbody > tr:hover .table_action_buttons > form, +.info_table > tbody > tr:hover .table_action_buttons > div { visibility: visible; } @@ -460,9 +462,6 @@ a.pandora_pagination.current:hover { .table_action_buttons input[type="image"], .action_button_img { border-radius: 4px; - /*border: 1px solid #dcdcdc !important;*/ - padding: 1px !important; - /*box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);*/ } /* This class is for only one icon to be a button type. */ diff --git a/pandora_console/index.php b/pandora_console/index.php index 9ba2482a85..441bcc63fa 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1522,8 +1522,6 @@ require 'include/php_to_js_values.php';