Fix pivot table pagination being to narrow when only one vertical level exists
This commit is contained in:
parent
ade2121302
commit
c03268414f
|
@ -36,8 +36,6 @@ $yAxisPages = $yAxisPaginator->getPages('all');
|
|||
$xAxisPage === $xAxisPages->last ? $xAxisPages->totalItemCount : $xAxisPage * $xAxisPages->itemCountPerPage,
|
||||
$xAxisPages->totalItemCount
|
||||
); ?>"></a>
|
||||
<?php else: ?>
|
||||
|
||||
<?php endif ?>
|
||||
</td>
|
||||
<?php endforeach ?>
|
||||
|
|
|
@ -497,14 +497,16 @@ div.pivot-pagination {
|
|||
margin: 1em;
|
||||
|
||||
table {
|
||||
table-layout: fixed;
|
||||
border-spacing: 0.2em;
|
||||
border-collapse: separate;
|
||||
border: 1px solid LightGrey;
|
||||
border-radius: 0.3em;
|
||||
|
||||
td {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0;
|
||||
line-height: 1em;
|
||||
background-color: #fbfbfb;
|
||||
|
||||
&:hover, &.active {
|
||||
|
|
Loading…
Reference in New Issue