remove box around previous arrow in bottom navigation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Aadil Ayub 2022-04-13 11:17:02 +05:00
parent dc81ff156c
commit c5a7ad38fe
2 changed files with 6 additions and 2 deletions

View File

@ -27,6 +27,7 @@
media.appendChild(iframe);
document.querySelector('#thumb-'+ id).remove();
}
document.querySelector('[aria-label="Previous"]').parentElement.classList.add('previous-page-link')
</script>
</html>

View File

@ -737,7 +737,8 @@ li.page-item.disabled {
li.page-item:first-child,
li.page-item:last-child,
li.page-item:nth-last-child(2) {
li.page-item:nth-last-child(2),
.previous-page-link {
border: none;
text-decoration: none;
}
@ -747,7 +748,9 @@ li.page-item:first-child::after,
li.page-item:last-child::before,
li.page-item:last-child::after,
li.page-item:nth-last-child(2)::before,
li.page-item:nth-last-child(2)::after {
li.page-item:nth-last-child(2)::after,
.previous-page-link::before,
.previous-page-link::after {
display: none;
}