Skip to content
Snippets Groups Projects
Commit 50f20254 authored by syuilo's avatar syuilo
Browse files

fix(client): オートコンプリートがダイアログの裏に隠れる問題を修正

parent 1894df88
No related branches found
No related tags found
No related merge requests found
<template>
<div class="swhvrteh _popup _shadow" @contextmenu.prevent="() => {}">
<div class="swhvrteh _popup _shadow" :style="{ zIndex }" @contextmenu.prevent="() => {}">
<ol v-if="type === 'user'" ref="suggests" class="users">
<li v-for="user in users" tabindex="-1" class="user" @click="complete(type, user)" @keydown="onKeydown">
<img class="avatar" :src="user.avatarUrl"/>
......@@ -157,6 +157,7 @@ export default defineComponent({
items: [],
mfmTags: [],
select: -1,
zIndex: os.claimZIndex(true),
}
},
......@@ -403,7 +404,6 @@ export default defineComponent({
<style lang="scss" scoped>
.swhvrteh {
position: fixed;
z-index: 65535;
max-width: 100%;
margin-top: calc(1em + 8px);
overflow: hidden;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment