forked from Public/pics
PageIndexWidget: show first applicable wildcard link in responsive mode
This commit is contained in:
parent
56f21a6721
commit
f143b2ddcf
@ -92,13 +92,16 @@ a:hover {
|
||||
.pagination .page-link {
|
||||
border-radius: var(--bs-pagination-border-radius) !important;
|
||||
}
|
||||
.pagination > :first-child, .pagination > :last-child {
|
||||
.pagination > :first-child, .pagination > :last-child, .pagination .first-wildcard {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
}
|
||||
.pagination > :first-child {
|
||||
left: 0;
|
||||
}
|
||||
.pagination > .first-wildcard {
|
||||
left: 48%;
|
||||
}
|
||||
.pagination > :last-child {
|
||||
right: 0;
|
||||
}
|
||||
|
@ -47,9 +47,13 @@ class PageIndexWidget extends Template
|
||||
|
||||
if (!is_array($page))
|
||||
{
|
||||
$first_wildcard = $num_wildcards === 0;
|
||||
$num_wildcards++;
|
||||
echo '
|
||||
<li class="page-item page-padding wildcard" onclick="javascript:promptGoToPage(', self::$unique_index_count, ')"><a class="page-link">...</a></li>';
|
||||
<li class="page-item page-padding wildcard',
|
||||
$first_wildcard ? ' first-wildcard' : '',
|
||||
'" onclick="javascript:promptGoToPage(',
|
||||
self::$unique_index_count, ')"><a class="page-link">...</a></li>';
|
||||
}
|
||||
else
|
||||
echo '
|
||||
|
Loading…
Reference in New Issue
Block a user