diff options
author | Julien Dessaux | 2023-01-28 14:47:03 +0100 |
---|---|---|
committer | Julien Dessaux | 2023-01-28 14:47:03 +0100 |
commit | 9ab3804aecb4121c0b9723e4a33bd16e70b8e56a (patch) | |
tree | 57bead49fa133fbab9a1d7861d538479aca555a7 /layouts | |
parent | Update nav menu css (diff) | |
download | www-9ab3804aecb4121c0b9723e4a33bd16e70b8e56a.tar.gz www-9ab3804aecb4121c0b9723e4a33bd16e70b8e56a.tar.bz2 www-9ab3804aecb4121c0b9723e4a33bd16e70b8e56a.zip |
Hide theme switcher by default, only show it if javascript is enabled
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/themeSwitcher.html | 4 |
1 files changed, 3 insertions, 1 deletions
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; } })(); </script> |