From dffefdad95ffe1018293f85a6eb9bdf9ee3eed53 Mon Sep 17 00:00:00 2001 From: happo31 Date: Thu, 13 Apr 2023 15:43:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20#9998=20MkNote.vue,=20MkNoteDetailed.vue?= =?UTF-8?q?=20=E3=81=A7=E3=80=81=E7=89=B9=E5=AE=9A=E3=81=AEMFM=E3=81=AB?= =?UTF-8?q?=E3=82=88=E3=81=A3=E3=81=A6=E3=83=95=E3=83=83=E3=82=BF=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=8C=E6=8A=BC=E3=81=9B?= =?UTF-8?q?=E3=81=AA=E3=81=8F=E3=81=AA=E3=82=8B=20(#9999)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(client): add `overflow: clip;` * fix(client): add `overflow: clip;` * Revert "fix(client): add `overflow: clip;`" This reverts commit c43226afde4741d61088192cbbab09fe97e1f2fb. Revert "fix(client): add `overflow: clip;`" This reverts commit c7225151056ff15b953aae806e7a07fa13fab746. * feat(client): add z-index to .footer --- packages/frontend/src/components/MkNote.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 36ec778a1..cb4bb8f23 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -484,6 +484,11 @@ function showReactions(): void { } } + .footer { + position: relative; + z-index: 1; + } + &:hover > .article > .main > .footer > .footerButton { opacity: 1; }