fix(cupang): 매출 조회 조건이 세로로 쌓이던 문제, 주차 없음 안내
- .cpg > form { flex-direction: column } 에 눌려 세로 배치되던 것을
form.cpg-sales-filter 로 가로(row) 고정, 높이도 내용만큼만
- 고른 주차에 자료가 없으면 "<주차> 주차에 등록된 매출 자료가 없습니다" 표시
- 주차 목록은 최근 주차(출고일 최댓값 기준)부터
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1508,7 +1508,12 @@ a.cpg-boxno-dl:hover { background: #1a5c38; border-color: #1a5c38; font-weight:
|
||||
.cpg-sales-pick { cursor: pointer; }
|
||||
.cpg-sales .cpg-po-file { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
|
||||
|
||||
/* 조회 조건 — 한 줄 고정(줄바꿈 없음), 좁으면 가로 스크롤 */
|
||||
/* 조회 조건 — 한 줄 고정(줄바꿈 없음), 좁으면 가로 스크롤.
|
||||
.cpg > form { flex-direction: column } (특이도 0,1,1) 을 이겨야 하므로
|
||||
form 태그까지 붙여서 선택한다. */
|
||||
.cpg > form.cpg-sales-filter {
|
||||
flex-direction: row; flex: 0 0 auto;
|
||||
}
|
||||
.cpg-sales-filter {
|
||||
display: flex; flex-wrap: nowrap; align-items: flex-end; gap: 8px;
|
||||
padding: 10px 12px;
|
||||
|
||||
Reference in New Issue
Block a user