[RAPID-fix] Select2 x(초기화) 버튼을 드롭다운 화살표 왼쪽으로 이동

- x 버튼이 텍스트와 붙어있어 품번 일부로 오인되는 문제 해결
- position: absolute로 화살표 왼쪽에 고정 배치
- 텍스트 영역에 padding-right 추가하여 겹침 방지

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 14:58:20 +09:00
parent ece276673a
commit d5259fb635
2 changed files with 30 additions and 0 deletions

View File

@@ -78,6 +78,21 @@
user-select: text !important;
-webkit-user-select: text !important;
cursor: text;
padding-right: 36px !important;
}
/* x(초기화) 버튼을 드롭다운 화살표 왼쪽에 배치 */
#itemListTable .select2-selection__clear {
position: absolute !important;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 14px;
color: #999;
cursor: pointer;
user-select: none;
}
#itemListTable .select2-selection--single {
position: relative;
}
</style>

View File

@@ -78,6 +78,21 @@
user-select: text !important;
-webkit-user-select: text !important;
cursor: text;
padding-right: 36px !important;
}
/* x(초기화) 버튼을 드롭다운 화살표 왼쪽에 배치 */
#itemListTable .select2-selection__clear {
position: absolute !important;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 14px;
color: #999;
cursor: pointer;
user-select: none;
}
#itemListTable .select2-selection--single {
position: relative;
}
</style>