Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Add blur effect to hamburger menu when reload popup is shown
Browse files Browse the repository at this point in the history
  • Loading branch information
dodaucy committed Nov 18, 2023
1 parent ebea738 commit 0ba460d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions static/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ function show_reload_popup(show, text) {
if (save_popup_save) {
document.getElementById("save-popup").style.filter = show ? "blur(2px)" : "none";
}
document.getElementById("hamburger-menu").style.filter = show ? "blur(2px)" : "none";
document.getElementById("hamburger-menu-nav").style.filter = show ? "blur(2px)" : "none";
}


Expand Down

0 comments on commit 0ba460d

Please sign in to comment.