fix(ui): B05 구조물 배치 컨테이너 외곽선 누락 — 공통 클래스 미부착
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 <noreply@anthropic.com>
This commit is contained in:
@@ -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 = "구조물 배치";
|
||||
|
||||
Reference in New Issue
Block a user