From d5259fb635b36ba8b7de45813de7d74166c115e1 Mon Sep 17 00:00:00 2001 From: syc0123 Date: Thu, 26 Mar 2026 14:58:20 +0900 Subject: [PATCH] =?UTF-8?q?[RAPID-fix]=20Select2=20x(=EC=B4=88=EA=B8=B0?= =?UTF-8?q?=ED=99=94)=20=EB=B2=84=ED=8A=BC=EC=9D=84=20=EB=93=9C=EB=A1=AD?= =?UTF-8?q?=EB=8B=A4=EC=9A=B4=20=ED=99=94=EC=82=B4=ED=91=9C=20=EC=99=BC?= =?UTF-8?q?=EC=AA=BD=EC=9C=BC=EB=A1=9C=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - x 버튼이 텍스트와 붙어있어 품번 일부로 오인되는 문제 해결 - position: absolute로 화살표 왼쪽에 고정 배치 - 텍스트 영역에 padding-right 추가하여 겹침 방지 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../estimateAndOrderRegistFormPopup.jsp | 15 +++++++++++++++ .../view/contractMgmt/estimateRegistFormPopup.jsp | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/WebContent/WEB-INF/view/contractMgmt/estimateAndOrderRegistFormPopup.jsp b/WebContent/WEB-INF/view/contractMgmt/estimateAndOrderRegistFormPopup.jsp index 278c234..51cbaab 100644 --- a/WebContent/WEB-INF/view/contractMgmt/estimateAndOrderRegistFormPopup.jsp +++ b/WebContent/WEB-INF/view/contractMgmt/estimateAndOrderRegistFormPopup.jsp @@ -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; } diff --git a/WebContent/WEB-INF/view/contractMgmt/estimateRegistFormPopup.jsp b/WebContent/WEB-INF/view/contractMgmt/estimateRegistFormPopup.jsp index a559624..ac3d322 100644 --- a/WebContent/WEB-INF/view/contractMgmt/estimateRegistFormPopup.jsp +++ b/WebContent/WEB-INF/view/contractMgmt/estimateRegistFormPopup.jsp @@ -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; }