PageIndexWidget: show first applicable wildcard link in responsive mode

This commit is contained in:
2023-11-20 22:27:57 +01:00
parent 56f21a6721
commit f143b2ddcf
2 changed files with 9 additions and 2 deletions

View File

@@ -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;
}