feat(cupang): 혼합 박스 그림에 박스 호수 표시

상자 SVG 안에 "2호"처럼 호수만 넣는다("쿠팡 " 접두어 제거).
채움 색 위에서도 읽히도록 흰색 외곽선(paint-order: stroke)을 준다.
aria-label 도 "2호 박스"로 바꿔 스크린리더에서 구분 가능하게 함.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-28 13:41:33 +09:00
parent c36ba70a16
commit 07f71d1df0
8 changed files with 29 additions and 11 deletions
+12
View File
@@ -561,3 +561,15 @@
}
.cpg-prod-manual-row .erp-field { flex: 1 1 160px; min-width: 0; }
.cpg-prod-manual-row .erp-input { min-width: 0; width: 100%; }
/* 상자 그림 안 박스 호수 라벨 (예: 2호) */
.cpg-box-label {
font-family: inherit;
font-size: 15px;
font-weight: 700;
fill: #8a5a1e;
paint-order: stroke;
stroke: rgba(255, 255, 255, .85);
stroke-width: 3px;
stroke-linejoin: round;
}