diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-06-22 16:04:35 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-06-22 16:04:35 -0300 |
commit | a5e6bb93032ee32f2fa19689455e6cb8dd9f3da9 (patch) | |
tree | daeeb81c7db2d8dca7593737516dc6ca5bb6c042 /src/content | |
parent | 895105507740f4015caa14d7b975b028088114f6 (diff) |
content: generatePreviousNextLinks: don't color prev/next links
Diffstat (limited to 'src/content')
-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'), }), |