From 2121a5eef68faf4f0651a8727a8c5f4423875bd3 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 8 Aug 2026 08:00:14 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20B05=20=EA=B5=AC=EC=A1=B0=EB=AC=BC=20?= =?UTF-8?q?=EB=B0=B0=EC=B9=98=20=EC=BB=A8=ED=85=8C=EC=9D=B4=EB=84=88=20?= =?UTF-8?q?=EC=99=B8=EA=B3=BD=EC=84=A0=20=EB=88=84=EB=9D=BD=20=E2=80=94=20?= =?UTF-8?q?=EA=B3=B5=ED=86=B5=20=ED=81=B4=EB=9E=98=EC=8A=A4=20=EB=AF=B8?= =?UTF-8?q?=EB=B6=80=EC=B0=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2026-08-08 사용자 보고: B05 좌측 사이드 패널에서 "구조물 배치" 컨테이너만 외곽 라인이 없었다. 원인은 이 섹션이 사이드 컨테이너 공통 외곽선 클래스 (ui-sidebar-section)를 붙이지 않은 것 — 같은 페이지의 다른 섹션 생성부 (B05_wf2_Route_UI_Panel.ts:82)에는 이미 붙어 있었다. createIrregularStationsSection의 root className에 ui-sidebar-section을 추가해 나머지 컨테이너와 동일한 테두리(두께·색·테마 대응)를 갖게 했다. 형태(라운드· 패딩·배경)는 기존 b05-route__panel-section 그대로 둔다. 검증: prettier 무변경, npm run typecheck 통과. Co-Authored-By: Claude Fable 5 --- B05_wf2_Route/B05_wf2_Route_UI_IrregularStations.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/B05_wf2_Route/B05_wf2_Route_UI_IrregularStations.ts b/B05_wf2_Route/B05_wf2_Route_UI_IrregularStations.ts index 8a35b54b..8f076d46 100644 --- a/B05_wf2_Route/B05_wf2_Route_UI_IrregularStations.ts +++ b/B05_wf2_Route/B05_wf2_Route_UI_IrregularStations.ts @@ -156,7 +156,8 @@ export function createIrregularStationsSection( callbacks: IrregularStationsCallbacks, ): IrregularStationsSection { const root = document.createElement("section"); - root.className = "b05-route__panel-section ui-collapsible"; + // ui-sidebar-section: 사이드 컨테이너 공통 외곽선(진하게, 2026-08-05 사용자 지시). + root.className = "b05-route__panel-section ui-collapsible ui-sidebar-section"; const heading = document.createElement("h3"); heading.className = "ui-collapsible__title"; heading.textContent = "구조물 배치";