[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:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user