From 03feeebbdf35e298f67ab1148395306a3ccc847e Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 27 Jul 2023 11:09:24 +0200 Subject: [PATCH] #11768 Fixed the style of the checkbox in the modal save filter --- pandora_console/include/ajax/audit_log.php | 32 +++++++++++++++------- pandora_console/include/styles/pandora.css | 1 + 2 files changed, 23 insertions(+), 10 deletions(-) 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 018cd7a0a6..e660cf9c74 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -316,6 +316,7 @@ td input[type="checkbox"] { input[type="radio"] { height: 15px; + margin-right: 15px; } input[type="image"] {