Merge branch 'ent-9662-Restyling-fuentes-colores-botones' of brutus.artica.es:artica/pandorafms into ent-9662-Restyling-fuentes-colores-botones

This commit is contained in:
Jose Gonzalez 2023-02-20 14:50:33 +01:00
commit 6808fb0655

View File

@ -948,6 +948,7 @@ $tableFilter->data[4][0] = html_print_button(
[ [
'icon' => 'wand', 'icon' => 'wand',
'mode' => 'mini secondary', 'mode' => 'mini secondary',
'class' => 'float-left margin-right-2 sub config',
], ],
true true
); );
@ -961,6 +962,7 @@ $tableFilter->data[4][1] = html_print_button(
[ [
'icon' => 'wand', 'icon' => 'wand',
'mode' => 'mini secondary', 'mode' => 'mini secondary',
'class' => 'float-left margin-right-2 sub wand',
], ],
true true
); );
@ -1405,6 +1407,16 @@ if ($autosearch) {
// Start Build List Result. // Start Build List Result.
if (empty($result) === false) { if (empty($result) === false) {
if (is_metaconsole() === true) {
html_print_action_buttons(
html_print_div(['style' => 'float:left; height: 55px;', 'class' => 'mrgn_top_15px'], true),
[
'type' => 'form_action',
'right_content' => $tablePagination,
]
);
}
$table = new StdClass(); $table = new StdClass();
$table->cellpadding = 0; $table->cellpadding = 0;
$table->cellspacing = 0; $table->cellspacing = 0;
@ -2120,7 +2132,6 @@ if (empty($result) === false) {
html_print_table($table); html_print_table($table);
if ($count_modules > $config['block_size']) { if ($count_modules > $config['block_size']) {
hd('patata');
$tablePagination = ui_pagination($count_modules, false, $offset, 0, true, 'offset', false); $tablePagination = ui_pagination($count_modules, false, $offset, 0, true, 'offset', false);
} }
} else { } else {
@ -2131,6 +2142,7 @@ if (empty($result) === false) {
} }
} }
if (is_metaconsole() !== true) {
html_print_action_buttons( html_print_action_buttons(
html_print_div(['style' => 'float:left; height: 55px;'], true), html_print_div(['style' => 'float:left; height: 55px;'], true),
[ [
@ -2138,6 +2150,7 @@ html_print_action_buttons(
'right_content' => $tablePagination, 'right_content' => $tablePagination,
] ]
); );
}
// End Build List Result. // End Build List Result.
echo "<div id='monitor_details_window' class='filter_table'></div>"; echo "<div id='monitor_details_window' class='filter_table'></div>";