diff --git a/pandora_console/include/ajax/audit_log.php b/pandora_console/include/ajax/audit_log.php index 026d8ca881..c0d1c4f73e 100644 --- a/pandora_console/include/ajax/audit_log.php +++ b/pandora_console/include/ajax/audit_log.php @@ -266,19 +266,31 @@ if ($save_filter_modal) { $data = []; $table->rowid[0] = 'update_save_selector'; - $data[0] = html_print_radio_button( - 'filter_mode', - 'new', - __('New filter'), - true, + $data[0] = html_print_div( + [ + 'style' => 'display: flex;', + 'content' => html_print_radio_button( + 'filter_mode', + 'new', + __('New filter'), + true, + true + ), + ], true ); - $data[1] = html_print_radio_button( - 'filter_mode', - 'update', - __('Update filter'), - false, + $data[1] = html_print_div( + [ + 'style' => 'display: flex;', + 'content' => html_print_radio_button( + 'filter_mode', + 'update', + __('Update filter'), + false, + true + ), + ], true ); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 117f62c65d..713d7a1112 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -318,6 +318,7 @@ td input[type="checkbox"] { input[type="radio"] { height: 15px; + margin-right: 15px; } input[type="image"] {