Fix broken pointer-events on nav-bar

This commit is contained in:
MrOtherGuy 2020-06-08 05:14:40 +03:00
parent d60d8f618a
commit 0385fbec50

View file

@ -15,9 +15,10 @@ See the above repository for updates as well as full license text. */
height: var(--uc-menubar-height); height: var(--uc-menubar-height);
position: relative; position: relative;
z-index: 2; z-index: 2;
pointer-events: none;
} }
#menubar-items{ -moz-box-pack: center } #menubar-items{ -moz-box-pack: center; pointer-events: initial }
/* Adjust to fit menubar items - 300px works for English locale */ /* Adjust to fit menubar items - 300px works for English locale */
#nav-bar{ padding-left: 300px; } #nav-bar{ padding-left: 300px; }