From 198ef7f1d578186e58f55325386512bb57243cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=B0=E6=9C=94?= <565183519@qq.com> Date: Sun, 16 Aug 2026 02:02:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BF=BB=E8=BD=AC=E8=88=B1=E5=8E=8B?= =?UTF-8?q?=E5=B9=B3bug=E2=80=94=E2=80=94backdrop-filter=E6=88=90=E7=BB=84?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E5=8E=8B=E5=B9=B3preserve-3d=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=BF=BB=E9=9D=A2=E7=B3=8A=E5=8F=A0=EF=BC=8C=E7=8E=BB?= =?UTF-8?q?=E7=92=83=E8=B4=A8=E6=84=9F=E4=BB=8E=E8=88=B1=E4=BD=93=E6=90=AC?= =?UTF-8?q?=E5=88=B0=E6=AD=A3=E5=8F=8D=E4=B8=A4=E9=9D=A2=EF=BC=8C=E8=88=B1?= =?UTF-8?q?=E4=BD=93=E6=94=B9=E9=80=8F=E6=98=8E3D=E9=AA=A8=E6=9E=B6?= =?UTF-8?q?=EF=BC=88=E5=86=B0=E6=9C=9420260816=E6=8A=A5bug=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- product-source/hololake-native-desktop/src/styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/product-source/hololake-native-desktop/src/styles.css b/product-source/hololake-native-desktop/src/styles.css index bbf55f0f2..9707f91dd 100644 --- a/product-source/hololake-native-desktop/src/styles.css +++ b/product-source/hololake-native-desktop/src/styles.css @@ -457,7 +457,8 @@ svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-lineca @keyframes pod-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } } /* 封存翻转舱:湖面上一枚封存徽舱,轻点一下翻转翻开表单面 */ -.gate-flip { display: grid; transform-style: preserve-3d; transition: transform .95s cubic-bezier(.32, .72, .3, 1); cursor: pointer; } +.gate-flip { display: grid; transform-style: preserve-3d; transition: transform .95s cubic-bezier(.32, .72, .3, 1); cursor: pointer; background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; } +.gate-flip .pod-face { border: 1px solid color-mix(in srgb, var(--accent-light) 22%, transparent); border-radius: 24px; background: color-mix(in srgb, var(--panel-bg) 62%, transparent); backdrop-filter: blur(26px) saturate(1.15); -webkit-backdrop-filter: blur(26px) saturate(1.15); box-shadow: 0 34px 90px rgba(0, 0, 0, .5), 0 0 70px color-mix(in srgb, var(--primitive-warm-glow) 9%, transparent), inset 0 1px 0 rgba(255, 255, 255, .07); } .gate-flip.open { transform: rotateY(180deg); cursor: default; } .pod-face { grid-area: 1 / 1; backface-visibility: hidden; -webkit-backface-visibility: hidden; } .pod-form { transform: rotateY(180deg); }