diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php index 236183850d..f087bfe664 100644 --- a/pandora_console/godmode/alerts/alert_list.list.php +++ b/pandora_console/godmode/alerts/alert_list.list.php @@ -826,7 +826,7 @@ foreach ($simple_alerts as $alert) { __('Add'), 'addbutton', false, - ['class' => 'sub next right'], + ['icon' => 'next'], true ); $data[3] .= ''; @@ -981,11 +981,20 @@ if (isset($dont_display_alert_create_bttn)) { } if ($display_create && (check_acl($config['id_user'], 0, 'LW') || check_acl($config['id_user'], $template_group, 'LM')) && !$id_cluster) { - echo '
'; } ui_require_css_file('cluetip', 'include/styles/js/'); diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index be9d8faaa6..b2e2c5f619 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -1419,7 +1419,7 @@ $table_other->data[$row][3] = html_print_button( '', [ 'icon' => 'next', - 'mode' => 'secondary mini', + 'mode' => 'link', ], true ); @@ -1444,8 +1444,8 @@ $table_other->data[$row][3] = html_print_button( empty($count_custom_postprocess), '', [ - 'icon' => 'cancel', - 'mode' => 'secondary mini', + 'icon' => 'delete', + 'mode' => 'link', ], true ); @@ -1481,7 +1481,7 @@ $table_other->data[$row][3] = html_print_button( '', [ 'icon' => 'next', - 'mode' => 'secondary mini', + 'mode' => 'link', ], true ); @@ -1497,8 +1497,8 @@ $table_other->data[$row][3] = html_print_button( empty($config['interval_values']), '', [ - 'icon' => 'cancel', - 'mode' => 'secondary mini', + 'icon' => 'delete', + 'mode' => 'link', ], true ); @@ -1521,7 +1521,7 @@ $table_other->data[$row][3] = html_print_button( '', [ 'icon' => 'next', - 'mode' => 'secondary mini', + 'mode' => 'link', ], true ); @@ -1536,8 +1536,8 @@ $table_other->data[$row][3] = html_print_button( empty($count_custom_postprocess), '', [ - 'icon' => 'cancel', - 'mode' => 'secondary mini', + 'icon' => 'delete', + 'mode' => 'link', ], true ); diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index 3b19e13a52..d0ce0f5f3c 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -586,7 +586,7 @@ if ($load_filter_modal) { false, [ 'icon' => 'update', - 'mode' => 'secondary', + 'mode' => 'secondary mini', ], true ); @@ -834,7 +834,7 @@ if ($save_filter_modal) { false, [ 'icon' => 'update', - 'mode' => 'secondary', + 'mode' => 'secondary mini', 'onClick' => 'save_new_filter();', ], true diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index f8b17781f8..7152a7bc32 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -3327,7 +3327,7 @@ function events_page_responses($event) 'event_change_owner('.$event['id_evento'].', '.$event['server_id'].');', [ 'icon' => 'next', - 'mode' => 'mini secondary', + 'mode' => 'link', ], true ); @@ -3409,7 +3409,7 @@ function events_page_responses($event) 'event_change_status(\''.$event['similar_ids'].'\','.$event['server_id'].');', [ 'icon' => 'next', - 'mode' => 'mini secondary', + 'mode' => 'link', ], true ); @@ -3440,7 +3440,7 @@ function events_page_responses($event) '$(\'#link_comments\').trigger(\'click\');', [ 'icon' => 'next', - 'mode' => 'mini secondary', + 'mode' => 'link', ], true ); @@ -3467,7 +3467,7 @@ function events_page_responses($event) 'if(!confirm(\''.__('Are you sure?').'\')) { return false; } this.form.submit();', [ 'icon' => 'cancel', - 'mode' => 'mini secondary', + 'mode' => 'link', ], true ); @@ -3523,10 +3523,7 @@ function events_page_responses($event) 'custom_response_button', false, 'execute_response('.$event['id_evento'].','.$server_id.',0)', - [ - 'icon' => 'next', - 'mode' => 'mini secondary', - ], + ['mode' => 'link'], true ); } diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 7be7130935..26872cc478 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -3388,7 +3388,12 @@ function html_print_button($label='OK', $name='', $disabled=false, $script='', $ if ($attribute === 'icon') { $iconToUse = $value; } else if ($attribute === 'mode') { - $buttonMode = $value; + if ($value !== 'link') { + $buttonMode = $value; + } else { + $iconToUse = ''; + } + $classes .= ' '.$value; } else if ($attribute === 'type') { $buttonType = $value; diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 8b1ffe6535..0a73166d58 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -3394,7 +3394,7 @@ function ui_print_datatable(array $parameters) $button['onclick'], [ 'style' => ($button['style'] ?? ''), - 'mode' => 'mini secondary', + 'mode' => 'link', 'class' => $button['class'], ], true diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index b32714b819..aba17d5c63 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -665,13 +665,11 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) 'bars_graph', 'clock', ]; - $form_items['percentile_bar_row_1']['html'] = '