Skip to content
Snippets Groups Projects
Commit 77a1f49e authored by Michael Kessler's avatar Michael Kessler
Browse files

[TASK] Adjust pagination styling

parent 5bf94c79
No related branches found
No related tags found
No related merge requests found
......@@ -32,8 +32,14 @@
<div class="panel panel-default recordlist">
<div class="table-fit">
<table data-table="tx_sgjobs_domain_model_job" class="table table-striped table-hover">
<thead>
<tr>
<td colspan="3">
<f:render partial="Pagination" arguments="{pagination: pagination, paginator: paginator, actionName: 'index', currentPage: currentPage}"/>
</td>
</tr>
</thead>
<tbody>
<f:render partial="Pagination" arguments="{pagination: pagination, paginator: paginator, actionName: 'index', currentPage: currentPage}"/>
<f:for each="{paginator.paginatedItems}" as="job">
<tr data-uid="{job.uid}">
<td nowrap="nowrap" class="col-icon">
......
......@@ -116,3 +116,12 @@ a.accordion-header-toggle.collapsed .fa-caret-up {
margin-bottom: 5px;
clear: both;
}
.table > thead > tr,
.table > thead > tr > td {
background-color: #ededed;
}
.pagination .paginator-input {
height: 26px;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment