#9162 fixed configure colums in meta
This commit is contained in:
parent
042591c57b
commit
bdcb16e6f8
|
@ -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',
|
||||
|
|
|
@ -508,6 +508,7 @@ class EventsListWidget extends Widget
|
|||
'order' => true,
|
||||
'nothing' => false,
|
||||
'sort' => false,
|
||||
'style' => 'width: 93%;',
|
||||
],
|
||||
];
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue