From 9ab3804aecb4121c0b9723e4a33bd16e70b8e56a Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 28 Jan 2023 14:47:03 +0100 Subject: Hide theme switcher by default, only show it if javascript is enabled --- layouts/partials/themeSwitcher.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'layouts/partials/themeSwitcher.html') diff --git a/layouts/partials/themeSwitcher.html b/layouts/partials/themeSwitcher.html index 685bd82..902d8e3 100644 --- a/layouts/partials/themeSwitcher.html +++ b/layouts/partials/themeSwitcher.html @@ -8,7 +8,9 @@ const themeName = localStorage.getItem('theme'); if (themeName) { document.documentElement.className = themeName; - document.getElementById('themes').value = themeName; + const elt = document.getElementById('themes'); + elt.style.display = "block"; + elt.value = themeName; } })(); -- cgit v1.2.3