fix(cupang): ③ 센터 분배는 내용만큼 늘어나게 (클리핑 제거)

혼합 상자를 추가하면 칸이 아래로 늘어나야 하는데 카드/목록에 걸어둔
max-height + overflow:hidden 이 잘라내고 있었다. ③ 은 높이 제한과
클리핑을 없애고 넘치면 페이지가 스크롤되게 한다.
①(입력 표) ②(요약 목록) 의 내부 스크롤은 그대로 유지.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-01 17:29:37 +09:00
parent 5339ee4538
commit 1047175346
7 changed files with 24 additions and 22 deletions
+14 -4
View File
@@ -1494,10 +1494,10 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
.cpg-dist-card::-webkit-scrollbar-thumb:hover { background: var(--color-midtone-gray); }
/* ── 스크롤 최종 보정 — id 선택자 + !important 로 확정 ── */
/* ③ 센터 목록은 내용만큼 늘어난다(자르지 않음). 넘치면 페이지가 스크롤. */
#cpg-dist-list {
max-height: 60vh !important;
overflow-y: auto !important;
min-height: 0 !important;
max-height: none !important;
overflow: visible !important;
}
.cpg-calc-card .erp-table-wrap {
max-height: 52vh !important;
@@ -1507,4 +1507,14 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
max-height: 52vh !important;
overflow-y: auto !important;
}
.cpg-calc3 > .erp-card { max-height: 86vh !important; }
.cpg-calc3 > .cpg-dist-card { max-height: none !important; overflow: visible !important; }
/* ③ 센터 분배 — 내용에 따라 높이가 늘어나도록 (클리핑/스크롤 제거) */
.cpg-dist-card,
.cpg-calc3 > .cpg-dist-card { max-height: none !important; overflow: visible !important; }
.cpg-dist-card .cpg-dist-list,
#cpg-dist-list {
max-height: none !important;
overflow: visible !important;
min-height: 0;
}