fix(cupang): 출고방식 드롭다운 목록을 흰 바탕·검은 글씨로

닫힌 버튼의 배경색(빨강/반투명 흰색)이 펼친 option 까지 번져 읽기 어려웠다.
option 에 흰 배경과 검은 글씨를 직접 지정한다.
This commit is contained in:
2026-08-31 16:42:42 +09:00
parent 5d84ae4874
commit 7f879d279a
8 changed files with 12 additions and 8 deletions
+5 -1
View File
@@ -828,7 +828,11 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
border-color: rgba(255, 255, 255, .3);
color: var(--color-canvas-white);
}
.cpg-dist-center.has-items .cpg-dist-method option { color: var(--color-rich-black); }
/* 펼친 목록은 항상 흰 바탕·검은 글씨 (닫힌 버튼 색이 옵션까지 번지지 않게) */
.cpg-dist-method option {
background-color: var(--color-canvas-white);
color: var(--color-rich-black);
}
/* 미선택은 눈에 띄게 — 확정 버튼이 막히는 이유 */
.cpg-dist-center.has-items .cpg-dist-method.is-unset {
background-color: var(--color-callout-red);