Dashboard pagination visual position
This commit is contained in:
parent
434aa1dbc3
commit
54e6a99cc3
|
@ -7535,6 +7535,9 @@ div.graph div.legend table {
|
|||
.pdd_t_0px {
|
||||
padding-top: 0px;
|
||||
}
|
||||
.pdd_t_0px_important {
|
||||
padding-top: 0px !important;
|
||||
}
|
||||
|
||||
.pdd_t_3px {
|
||||
padding-top: 3px;
|
||||
|
|
|
@ -48,6 +48,7 @@ $inputs = [
|
|||
'class' => 'search_input',
|
||||
'autofocus' => true,
|
||||
],
|
||||
'class' => 'pdd_t_0px_important',
|
||||
],
|
||||
];
|
||||
|
||||
|
@ -58,9 +59,8 @@ HTML::printForm(
|
|||
]
|
||||
);
|
||||
|
||||
ui_pagination($total, '#', $offset, 9);
|
||||
|
||||
$output = '<div class="container-list-widgets" >';
|
||||
$output = '<div class="container-list-widgets mrgn_top_50px">';
|
||||
|
||||
foreach ($widgets as $widget) {
|
||||
$urlWidgets = $config['homedir'];
|
||||
|
@ -97,3 +97,5 @@ foreach ($widgets as $widget) {
|
|||
|
||||
$output .= '</div>';
|
||||
echo $output;
|
||||
|
||||
ui_pagination($total, '#', $offset, 9, false, 'offset', false, 'center mrgn_top_10px');
|
||||
|
|
Loading…
Reference in New Issue