mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 17:25:26 +02:00
#11768 Fixed the style of the checkbox in the modal save filter
This commit is contained in:
parent
0c6877e7d2
commit
03feeebbdf
@ -266,19 +266,31 @@ if ($save_filter_modal) {
|
|||||||
|
|
||||||
$data = [];
|
$data = [];
|
||||||
$table->rowid[0] = 'update_save_selector';
|
$table->rowid[0] = 'update_save_selector';
|
||||||
$data[0] = html_print_radio_button(
|
$data[0] = html_print_div(
|
||||||
'filter_mode',
|
[
|
||||||
'new',
|
'style' => 'display: flex;',
|
||||||
__('New filter'),
|
'content' => html_print_radio_button(
|
||||||
true,
|
'filter_mode',
|
||||||
|
'new',
|
||||||
|
__('New filter'),
|
||||||
|
true,
|
||||||
|
true
|
||||||
|
),
|
||||||
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
$data[1] = html_print_radio_button(
|
$data[1] = html_print_div(
|
||||||
'filter_mode',
|
[
|
||||||
'update',
|
'style' => 'display: flex;',
|
||||||
__('Update filter'),
|
'content' => html_print_radio_button(
|
||||||
false,
|
'filter_mode',
|
||||||
|
'update',
|
||||||
|
__('Update filter'),
|
||||||
|
false,
|
||||||
|
true
|
||||||
|
),
|
||||||
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -316,6 +316,7 @@ td input[type="checkbox"] {
|
|||||||
|
|
||||||
input[type="radio"] {
|
input[type="radio"] {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="image"] {
|
input[type="image"] {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user