fix(B07): 명령행 토글이 좌측 속성 패널 높이를 흔들지 않게 한다

.cad-inspector의 bottom이 --cad-command-height를 포함해서, 상태막대의
[명령행] 토글이 좌측 팔레트 높이까지 함께 바꿨다. 좌측 패널이 상위이므로
상태막대까지 내려 명령행 표시 여부와 무관하게 만든다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-31 10:35:13 +09:00
co-authored by Claude Opus 5
parent 8ab10967cf
commit fb0b49bf60
+2 -1
View File
@@ -367,7 +367,8 @@ body > canvas[data-id="canvas"] {
position: fixed; position: fixed;
z-index: 3; z-index: 3;
top: calc(var(--cad-title-height) + var(--cad-ribbon-height)); top: calc(var(--cad-title-height) + var(--cad-ribbon-height));
bottom: calc(var(--cad-command-height) + var(--cad-status-height)); /* 좌측 팔레트가 상위 — 명령행 토글에 높이가 흔들리지 않게 상태막대까지 내린다 */
bottom: var(--cad-status-height);
left: 0; left: 0;
width: var(--cad-panel-width); width: var(--cad-panel-width);
background: var(--cad-chrome); background: var(--cad-chrome);