Always show arrows on pagination

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-11-26 00:58:09 +01:00
parent 27eacf544e
commit 70cd9393e3
2 changed files with 18 additions and 8 deletions
+14
View File
@@ -33,6 +33,16 @@
color: $theme-pagination-color-selected;
}
.pager > .disabled,
.pager > .disabled:hover,
.pager > .disabled:focus,
.pager > .disabled.selected {
background: $theme-pagination-background;
box-shadow: $theme-pagination-shadow;
color: $theme-pagination-color;
opacity: 50%;
}
.pager > li > a {
display: block;
margin: 0;
@@ -42,3 +52,7 @@
width: 5rem;
height: 2.5rem;
}
.pager > .disabled > a {
cursor: default;
}