fix submenu positioning
This commit is contained in:
parent
b51d24d31a
commit
06b37eccdd
|
@ -1,6 +1,5 @@
|
|||
<template>
|
||||
<div tabindex="-1" v-focus>
|
||||
<FocusTrap v-bind:active="isActive">
|
||||
<div
|
||||
ref="itemsEl"
|
||||
class="rrevdjwt _popup _shadow"
|
||||
|
@ -8,6 +7,7 @@
|
|||
:style="{ width: (width && !asDrawer) ? width + 'px' : '', maxHeight: maxHeight ? maxHeight + 'px' : '' }"
|
||||
@contextmenu.self="e => e.preventDefault()"
|
||||
>
|
||||
<FocusTrap v-bind:active="isActive">
|
||||
<template v-for="(item, i) in items2">
|
||||
<div v-if="item === null" class="divider"></div>
|
||||
<span v-else-if="item.type === 'label'" class="label item">
|
||||
|
@ -49,8 +49,8 @@
|
|||
<span v-if="items2.length === 0" class="none item">
|
||||
<span>{{ i18n.ts.none }}</span>
|
||||
</span>
|
||||
</div>
|
||||
</FocusTrap>
|
||||
</div>
|
||||
<div v-if="childMenu" class="child">
|
||||
<XChild ref="child" :items="childMenu" :target-element="childTarget" :root-element="itemsEl" showing @actioned="childActioned"/>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue