From 46ac54257efff46ae4f8c6fbb33ed64166ed50d0 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Mon, 31 Aug 2026 15:48:08 +0900 Subject: [PATCH] =?UTF-8?q?fix(B07):=20=EC=88=98=EB=9F=89=20=EC=82=B0?= =?UTF-8?q?=EC=B6=9C=ED=91=9C=20=ED=8C=A8=EB=84=90=EC=9D=B4=20=EB=AA=85?= =?UTF-8?q?=EB=A0=B9=20=EC=9E=85=EB=A0=A5=EC=B9=B8=EC=9D=84=20=EB=8D=AE?= =?UTF-8?q?=EB=8D=98=20=EA=B2=83=EC=9D=84=20=EC=98=AC=EB=A6=B0=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 패널이 상태막대 바로 위에 떠 있어 명령행과 겹쳤고, 명령 입력칸을 클릭으로 누를 수 없었다. bottom에 --cad-command-height를 더해 명령행 위로 띄운다. 명령행을 접으면 이 값이 0이라 예전처럼 상태막대 위에 붙는다. Co-Authored-By: Claude Opus 5 (1M context) --- B07_DesignDetail/openwebcad/src/App.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/B07_DesignDetail/openwebcad/src/App.css b/B07_DesignDetail/openwebcad/src/App.css index bf5f6458..4d73ce79 100644 --- a/B07_DesignDetail/openwebcad/src/App.css +++ b/B07_DesignDetail/openwebcad/src/App.css @@ -631,7 +631,9 @@ body > canvas[data-id="canvas"] { .cad-qtable { position: fixed; z-index: 3; - bottom: calc(var(--cad-status-height) + 8px); + /* 명령행 위로 띄운다 — 겹치면 명령 입력칸을 클릭으로 누를 수 없다(2026-08-31). + 명령행을 접으면 --cad-command-height가 0이라 예전처럼 상태막대 위에 붙는다. */ + bottom: calc(var(--cad-status-height) + var(--cad-command-height) + 8px); left: calc(var(--cad-panel-width) + (100vw - var(--cad-panel-width)) / 2); transform: translateX(-50%); /* 표(가장 넓은 자식) 기준 폭 고정 → 접었다 펴도 폭이 변하지 않는다 */