fix: 修复审核管理页拒绝弹窗误显示

- audit.css 中 .modal-overlay 移除 display:flex 默认值,避免与 common.css 冲突导致页面加载时弹窗可见
- 弹窗显示由 JS openRejectModal/closeRejectModal 控制
This commit is contained in:
2026-06-02 20:49:54 +08:00
parent 72c08f3689
commit ee313675ca

View File

@ -136,12 +136,11 @@
grid-column: 1 / -1; grid-column: 1 / -1;
} }
/* 拒绝弹窗 */ /* 拒绝弹窗(显示由 JS 控制,此处不设置 display */
.modal-overlay { .modal-overlay {
position: fixed; position: fixed;
inset: 0; inset: 0;
background: rgba(0,0,0,.4); background: rgba(0,0,0,.4);
display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 999; z-index: 999;