From 6578bcf2aec003e7c633e696282a67b9d64a6abc Mon Sep 17 00:00:00 2001 From: Linghong Date: Mon, 24 Aug 2026 06:38:27 +0000 Subject: [PATCH] =?UTF-8?q?=E7=AD=96=E5=88=92=E7=AA=84=E6=9D=A1=E4=B8=8D?= =?UTF-8?q?=E5=86=8D=E5=90=83=E8=B0=83=E8=AF=95=E9=9D=A2=E6=9D=BF=E7=9A=84?= =?UTF-8?q?=20240px=20=E5=A4=A9=E8=8A=B1=E6=9D=BF=EF=BC=8C=E6=94=BE?= =?UTF-8?q?=E5=AE=BD=E5=88=B0=2052dvh/640px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 截图里被压出内滚的是澄清卡所在的窄条:纯总控视图整个包在 game-workbench-chat 里,窄条带着 agent-runtime-status 类,继承了给做游戏链路常驻调试面板设的 clamp(120px, 24dvh, 240px)。窄条只在需要用户动手时出现,内容是要读完再回答的 题面,按审批卡同级放宽;小屏媒体查询里的 max-height: none 分支原样生效。 Co-Authored-By: Claude Opus 5 --- apps/ai-game-creator-shell/src/styles.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index 16423e0fa..dcd381095 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -6616,6 +6616,13 @@ iframe.preview-frame { scrollbar-gutter: stable; } +/* 上面 24dvh/240px 的天花板是给做游戏链路常驻的调试面板设的。策划链路的窄条只在 + 需要用户动手时出现(澄清卡 / 失败恢复),内容是要读完再回答的题面,给它和审批 + 卡同级的空间。 */ +.game-workbench-chat .planning-lane-runtime-strip { + max-height: clamp(240px, 52dvh, 640px); +} + .game-workbench-chat .project-runtime-summary { position: sticky; top: -10px;