Modal: large centered spinner + kebab z-index fix #81
@@ -37,6 +37,7 @@
|
|||||||
/>
|
/>
|
||||||
<v-menu
|
<v-menu
|
||||||
v-model="menuOpen" activator="parent" :open-on-click="false"
|
v-model="menuOpen" activator="parent" :open-on-click="false"
|
||||||
|
:z-index="2400"
|
||||||
>
|
>
|
||||||
<v-list density="compact">
|
<v-list density="compact">
|
||||||
<v-list-item @click="$emit('alias', suggestion)">
|
<v-list-item @click="$emit('alias', suggestion)">
|
||||||
|
|||||||
@@ -21,7 +21,11 @@
|
|||||||
:aria-label="`More actions for ${tag.name}`"
|
:aria-label="`More actions for ${tag.name}`"
|
||||||
@click.stop="menuOpen = !menuOpen"
|
@click.stop="menuOpen = !menuOpen"
|
||||||
/>
|
/>
|
||||||
<v-menu v-model="menuOpen" activator="parent" :open-on-click="false">
|
<!-- :z-index above the modal's 2000 — the teleported menu otherwise lands
|
||||||
|
BEHIND .fc-viewer and gets blurred by its backdrop-filter (operator
|
||||||
|
saw it ghosted behind the sidebar, 2026-06-07). THIS is what made the
|
||||||
|
kebab look dead the whole time: it opened, just underneath. -->
|
||||||
|
<v-menu v-model="menuOpen" activator="parent" :open-on-click="false" :z-index="2400">
|
||||||
<v-list density="compact">
|
<v-list density="compact">
|
||||||
<v-list-item @click="$emit('rename', tag)">
|
<v-list-item @click="$emit('rename', tag)">
|
||||||
<v-list-item-title>Rename…</v-list-item-title>
|
<v-list-item-title>Rename…</v-list-item-title>
|
||||||
|
|||||||
Reference in New Issue
Block a user