diff options
-rw-r--r-- | src/content/dependencies/generatePreviousNextLinks.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/dependencies/generatePreviousNextLinks.js b/src/content/dependencies/generatePreviousNextLinks.js index ab10b729..6cffcef4 100644 --- a/src/content/dependencies/generatePreviousNextLinks.js +++ b/src/content/dependencies/generatePreviousNextLinks.js @@ -15,6 +15,7 @@ export default { !html.isBlank(slots.previousLink) && slots.previousLink.slots({ tooltip: true, + color: false, attributes: {id: 'previous-button'}, content: language.$('misc.nav.previous'), }), @@ -22,6 +23,7 @@ export default { !html.isBlank(slots.nextLink) && slots.nextLink?.slots({ tooltip: true, + color: false, attributes: {id: 'next-button'}, content: language.$('misc.nav.next'), }), |