From be802be7fc81f7bf07460caec7974ad787c31a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=99=E8=BF=B0=E3=80=81=E5=88=AB=E7=A6=BB?= <93301500+xushubieli@users.noreply.github.com> Date: Mon, 31 Mar 2025 12:56:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=81=AE=E7=BD=A9=E5=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/static/web/css/admin.css | 6 +++--- src/static/web/js/admin.main.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/static/web/css/admin.css b/src/static/web/css/admin.css index 4edf4329..36cdd9e6 100644 --- a/src/static/web/css/admin.css +++ b/src/static/web/css/admin.css @@ -339,11 +339,11 @@ body.menu-show .admin-content { display:none } .fullpagediv { - position:absolute; + position:fixed; top:0; left:0; - width:100%; - height:100%; + width:100vw; + height:100vh; background:#000; opacity:0.5; z-index:1980 diff --git a/src/static/web/js/admin.main.js b/src/static/web/js/admin.main.js index 70a38efd..a0b98b85 100644 --- a/src/static/web/js/admin.main.js +++ b/src/static/web/js/admin.main.js @@ -116,7 +116,7 @@ function ChangeFullDiv(showhide, screenheigt) { if (!newobj) { newobj = document.createElement("div"); newobj.id = "fullpagediv"; - newobj.style.position = "absolute"; + newobj.style.position = "fixed"; newobj.className = "fullpagediv"; newobj.style.height = document.body.clientHeight + "px"; document.body.appendChild(newobj);