From 982ecdfefcbee3c5b47fd472c091b3f6aa0cda48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 3 Feb 2026 06:24:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EB=B2=95=EC=9D=B8=EC=B0=A8=EB=9F=89?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=20=EB=B2=84=ED=8A=BC=20=EC=83=89=EC=83=81=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0=20(slate=20=E2=86=92=20blue)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 배경색과 구분되도록 slate 색상을 blue로 변경 - 차량 등록, 저장 버튼 등이 더 눈에 띄게 표시 Co-Authored-By: Claude Opus 4.5 --- .../finance/corporate-vehicles.blade.php | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/views/finance/corporate-vehicles.blade.php b/resources/views/finance/corporate-vehicles.blade.php index d252fef8..618a8822 100644 --- a/resources/views/finance/corporate-vehicles.blade.php +++ b/resources/views/finance/corporate-vehicles.blade.php @@ -279,12 +279,12 @@ function CorporateVehiclesManagement() {
-
+

법인차량관리

Corporate Vehicles

- +
@@ -317,7 +317,7 @@ function CorporateVehiclesManagement() {
- setSearchTerm(e.target.value)} className="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-slate-500" /> + setSearchTerm(e.target.value)} className="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500" />
{ownershipTypes.map(t => ( @@ -328,7 +328,7 @@ function CorporateVehiclesManagement() {
{['all', 'active', 'maintenance'].map(status => ( - ))} @@ -351,22 +351,22 @@ function CorporateVehiclesManagement() { {/* 차량 목록 */} {loading ? (
-
+

차량 목록을 불러오는 중...

) : filteredVehicles.length === 0 ? (

등록된 차량이 없습니다.

- +
) : ( filteredVehicles.map(item => ( -
handleEdit(item)} className={`grid grid-cols-12 gap-4 px-4 py-3 border-b border-gray-100 cursor-pointer transition-colors hover:bg-slate-50 ${item.status !== 'active' ? 'opacity-60 bg-gray-50' : ''}`}> +
handleEdit(item)} className={`grid grid-cols-12 gap-4 px-4 py-3 border-b border-gray-100 cursor-pointer transition-colors hover:bg-blue-50 ${item.status !== 'active' ? 'opacity-60 bg-gray-50' : ''}`}> {/* 차량 (모델 + 종류/연식) */}
-
- +
+

{item.model}

@@ -487,7 +487,7 @@ function CorporateVehiclesManagement() {
{modalMode === 'edit' && } -