From 876dec98d305c12d055381fafa87d562af28c413 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 16 May 2026 09:35:00 -0500 Subject: [PATCH 1/3] fix(lang): update pretty name to Joomla convention [skip ci] Co-Authored-By: Claude Opus 4.6 (1M context) --- src/language/en-GB/tpl_mokoonyx.sys.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/en-GB/tpl_mokoonyx.sys.ini b/src/language/en-GB/tpl_mokoonyx.sys.ini index 762c4cd..3038e6e 100644 --- a/src/language/en-GB/tpl_mokoonyx.sys.ini +++ b/src/language/en-GB/tpl_mokoonyx.sys.ini @@ -4,7 +4,7 @@ ; ; SPDX-License-Identifier: GPL-3.0-or-later ; -TPL_MOKOONYX="MokoOnyx Site template" +TPL_MOKOONYX="MokoOnyx" TPL_MOKOONYX_GOOGLE_FIELDSET_LABEL="Google" TPL_MOKOONYX_DRAWERS_FIELDSET_LABEL="Drawers" TPL_MOKOONYX_MOD_MENU_LAYOUT_COLLAPSE_METISMENU="Collapsible Dropdown" -- 2.52.0 From 318122b9c26081198b56863510cf3a2d524afcfa Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 16 May 2026 12:21:10 -0500 Subject: [PATCH 2/3] fix(css): use nav-bg-color for dropdown menu background Dropdown menus now use --nav-bg-color instead of --body-bg so they inherit the navigation theme colour rather than the page background. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/media/css/template.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/media/css/template.css b/src/media/css/template.css index d56ca4d..9896052 100644 --- a/src/media/css/template.css +++ b/src/media/css/template.css @@ -20074,7 +20074,7 @@ nav[data-toggle=toc] .nav-link.active+ul{ list-style: none; padding: 0.5rem 0; margin: 0; - background-color: var(--body-bg, #fff); + background-color: var(--nav-bg-color); border: 1px solid var(--border-color, #dfe3e7); border-radius: var(--border-radius, .25rem); box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); -- 2.52.0 From 152882190955147e19f3a1012ca3933a4adc5084 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 16 May 2026 12:21:40 -0500 Subject: [PATCH 3/3] docs: update CHANGELOG with unreleased fixes Co-Authored-By: Claude Opus 4.6 (1M context) --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 413aceb..6bfba8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- **Dropdown menu background** — Dropdown menus now use `--nav-bg-color` instead of `--body-bg` so they inherit the navigation theme colour +- **Language pretty name** — Updated template pretty name to follow Joomla naming convention + ### Added - **Article metadata footer** — Renders Joomla custom fields (`jcfields`) as a styled metadata footer on article layouts, grouped by field group with responsive grid and BEM styling - **Smart Visitor Detection** — Pushes anonymised visitor properties (login status, user group, page type) to the dataLayer for Google Analytics / Tag Manager. Sets GA4 `user_properties` for persistent session-scoped dimensions. No PII is sent. Default enabled when GTM or GA4 is active. -- 2.52.0