Add styling to disabled pagination buttons

This commit is contained in:
BBaoVanC 2021-11-02 17:22:29 -05:00
parent 99f53a386e
commit 13db8825a4
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 12 additions and 1 deletions

View File

@ -278,9 +278,20 @@ h1 svg.icon {
}
.page-link:hover {
text-decoration: none;
}
:not(li.disabled) > .page-link:hover {
background-color: #444;
color: white;
text-decoration: none;
}
li.disabled {
opacity: .5;
}
li.disabled > .page-link:hover {
cursor: not-allowed;
}