更新wangeditor和header

This commit is contained in:
李志强 2025-10-31 10:48:37 +08:00
parent 8430eb509c
commit 931b999e1d
3 changed files with 10 additions and 1 deletions

1
.gitignore vendored
View File

@ -23,6 +23,7 @@ mobile/.cursor
dist
dist-ssr
*.local
server/uploads
# Editor directories and files
.vscode/*

View File

@ -136,7 +136,7 @@ const handleCommand = (command) => {
.r-content {
position: relative;
z-index: 1000;
// z-index: 1000;
display: flex;
align-items: center;
gap: 16px;

View File

@ -617,5 +617,13 @@ onBeforeUnmount(() => {
}
}
}
// Fix z-index for full-screen/maximize mode
:deep(.w-e-fullscreen),
:deep(.w-e-fullscreen *),
:deep(.w-e-modal),
:deep(.w-e-drop-panel) {
z-index: 99999 !important;
}
</style>