feat(cupang): 선택일 출고 항목 hover 툴팁(제품명+수량, 커서 따라감)

- index sel_shipments 에 품목 요약(name/qty) 첨부
- 리스트 항목 hover 시 커서 왼쪽에 따라다니는 툴팁 표시
- 캐시 버전 m

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-05-30 06:55:52 +09:00
parent 5c7730d4a1
commit 652e53c3e8
9 changed files with 83 additions and 10 deletions
+14
View File
@@ -83,6 +83,20 @@
.cpg-list-meta { font-size: 12px; margin-top: 4px; }
.cpg-empty { padding: 16px 0; }
/* 선택일 출고 hover 툴팁 (마우스 따라다님) */
.cpg-hover-tip {
position: fixed; z-index: 60; pointer-events: none;
background: var(--color-deep-black); color: #fff;
border-radius: 10px; padding: 8px 10px;
min-width: 160px; max-width: 280px;
box-shadow: 0 6px 20px rgba(0,0,0,.22);
font-size: 12px;
}
.cpg-tip-row { display: flex; justify-content: space-between; gap: 12px; padding: 2px 0; }
.cpg-tip-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cpg-tip-qty { font-weight: 600; flex: 0 0 auto; }
.cpg-tip-empty { color: #d4d4d4; }
/* ── 폼 ── */
.cpg-form-card { padding: 16px; margin-bottom: 16px; }