Remove shadow and disable hovering on mobile view

This commit is contained in:
2025-06-02 23:42:49 +02:00
parent 7090254658
commit 64fd123a85
2 changed files with 13 additions and 3 deletions

View File

@ -123,12 +123,19 @@
{% block script %}
<script>
const menuItems = document.querySelectorAll(".navbar details[name='navbar'].menu");
const isMobile = () => {
return window.innerWidth >= 500;
}
for (const item of menuItems){
item.addEventListener("mouseover", () => {
item.setAttribute("open", "");
if (isMobile()){
item.setAttribute("open", "");
}
})
item.addEventListener("mouseout", () => {
item.removeAttribute("open");
if (isMobile()){
item.removeAttribute("open");
}
})
}