#9162 fixed configure colums in meta

This commit is contained in:
Daniel Cebrian 2023-07-06 09:20:21 +02:00
parent 042591c57b
commit bdcb16e6f8
3 changed files with 8 additions and 2 deletions

View File

@ -6081,7 +6081,7 @@ function html_print_input($data, $wrapper='div', $input_only=false)
}
}
$output .= '<div class="row">';
$output .= '<div>';
$output .= html_print_select(
((isset($data['selected']) === true) ? $data['selected'] : ''),
$data['name'],
@ -6109,7 +6109,7 @@ function html_print_input($data, $wrapper='div', $input_only=false)
((isset($data['form']) === true) ? $data['form'] : ''),
((isset($data['order']) === true) ? $data['order'] : false)
);
$output .= '<div class="flex justify-content-between mt-2">';
$output .= '<div class="flex justify-content-between mrgn_top_5px">';
$output .= html_print_button(
__('Add'),
'add_column',

View File

@ -508,6 +508,7 @@ class EventsListWidget extends Widget
'order' => true,
'nothing' => false,
'sort' => false,
'style' => 'width: 93%;',
],
];

View File

@ -8353,6 +8353,11 @@ div.graph div.legend table {
justify-content: end;
}
.justify-content-between {
-ms-flex-pack: justify;
justify-content: space-between;
}
.span_priority {
width: 20px;
height: 10px;