From 5805ef34e7031ff3aa598c1955fc469a4dd19cdf Mon Sep 17 00:00:00 2001 From: Hermes CI Fix Date: Mon, 17 Aug 2026 16:04:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=9D=E5=AD=98=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE=20=E2=80=94=20ElMessage=20z-index=E6=8F=90?= =?UTF-8?q?=E5=88=B0=E5=BC=B9=E7=AA=97=E4=B9=8B=E4=B8=8A+=E9=A1=B6?= =?UTF-8?q?=E6=A0=8F=E4=B8=8B=E6=96=B970px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/style.css b/frontend/src/style.css index 1fbca0e9..8da7f958 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -344,6 +344,8 @@ html.dark .el-drawer__header { .el-overlay { z-index: 2000 !important; } .el-overlay-dialog { z-index: 2001 !important; position: fixed !important; } .el-message-box__wrapper { z-index: 2002 !important; } +/* 消息提示必须高于弹窗,避免在弹窗内操作时被遮挡;出现在顶栏下方(60px+间距) */ +.el-message { z-index: 3000 !important; top: 70px !important; } .el-message-box { margin: 0 !important; } .el-dialog { --el-dialog-margin-top: 1vh !important; }