From 9ff8cccc364767ec60a4ff0eae291f1961202b8c Mon Sep 17 00:00:00 2001 From: Mike Repec Date: Sat, 13 Dec 2025 15:12:17 +0100 Subject: [PATCH] feat: Add config option to allow disabling styled tailwind scrollbar --- config/_default/params.toml | 1 + exampleSite/content/docs/configuration/index.md | 1 + layouts/_default/baseof.html | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/_default/params.toml b/config/_default/params.toml index de923249..63e3307b 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -13,6 +13,7 @@ enableA11y = false enableSearch = true enableCodeCopy = false enableStructuredBreadcrumbs = false +# enableStyledScrollbar = true # disable to use native scrollbar style (defaults to true) replyByEmail = false diff --git a/exampleSite/content/docs/configuration/index.md b/exampleSite/content/docs/configuration/index.md index 4d23e3ee..99f85282 100644 --- a/exampleSite/content/docs/configuration/index.md +++ b/exampleSite/content/docs/configuration/index.md @@ -177,6 +177,7 @@ Many of the article defaults here can be overridden on a per article basis by sp | `enableSearch` | `false` | Whether site search is enabled. Set to `true` to enable search functionality. Note that the search feature depends on the `outputs.home` setting in the [site configuration](#site-configuration) being set correctly. | | `enableCodeCopy` | `false` | Whether copy-to-clipboard buttons are enabled for `` blocks. The `highlight.noClasses` parameter must be set to `false` for code copy to function correctly. Read more about [other configuration files](#other-configuration-files) below. | | `enableStructuredBreadcrumbs` | `false` | Whether to add [BreadcrumbList](https://developers.google.com/search/docs/appearance/structured-data/breadcrumb) for SEO. Do NOT enable this if your content path does not match the URL, i.e., complex [URL setting](https://gohugo.io/content-management/urls/). | +| `enableStyledScrollbar` | `true` | Whether to enable styled scrollbar via tailwind-scrollbar. Set to `false` to use the browser's default scrollbar styling. | | `replyByEmail` | `false` | Whether the reply-by-email link is enabled after post. The `params.author.email` parameter in `config/_default/languages.en.toml` must be set. | | `forgejoDefaultServer` | _Not set_ | The default `server` parameter for the `forgejo` shortcode. | | `giteaDefaultServer` | _Not set_ | The default `server` parameter for the `gitea` shortcode. | diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index b09cfe90..6370e932 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -11,7 +11,7 @@ {{ $bodyLayout := "flex flex-col h-screen m-auto leading-7 max-w-7xl px-6 sm:px-14 md:px-24 lg:px-32" }} {{ $bodyColor := "text-lg bg-neutral text-neutral-900 dark:bg-neutral-800 dark:text-neutral" }} {{ $bodyScrollbar := "scrollbar-thin scrollbar-track-neutral-200 scrollbar-thumb-neutral-400 dark:scrollbar-track-neutral-800 dark:scrollbar-thumb-neutral-600" }} - +