Fix context-menu position

Fixes #233, #242, #246
This commit is contained in:
Guillaume AGNIERAY
2023-03-21 12:54:43 +01:00
parent cdbe0a187e
commit 2e7e3ceb54
4 changed files with 5 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -45,7 +45,7 @@ PurpleMine.SidebarToggler = (function () {
// Fix issue with context menu position
if (this.$main.css('position') === 'relative') {
$(window).on('load', function () {
$('#context-menu').appendTo('#wrapper3')
$('#context-menu').appendTo('#wrapper')
})
}

View File

@@ -8,6 +8,8 @@
}
#context-menu {
position: fixed;
> ul,
> ul > li > ul {
@include nice-shadow(2);

File diff suppressed because one or more lines are too long