feat:자금계획일정 캘린더 날짜별 추가(+) 버튼 상시 표시

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-05 08:20:40 +09:00
parent 92f07a570f
commit 95c64dfa8f

View File

@@ -54,10 +54,10 @@
{{ $currentDate->day }}
</span>
@if($isCurrentMonth && count($daySchedules) === 0)
@if($isCurrentMonth)
<button type="button" onclick="openCreateModal('{{ $dateKey }}')"
class="opacity-0 hover:opacity-100 text-gray-400 hover:text-emerald-600 transition-opacity"
title="일정 추가">
class="text-gray-300 hover:text-emerald-600 hover:bg-emerald-50 rounded transition-colors"
title="{{ $currentDate->format('m/d') }} 일정 추가">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4"/>
</svg>
@@ -88,15 +88,6 @@ class="block w-full text-left px-1.5 py-0.5 rounded text-xs truncate border curs
</button>
@endforeach
@if($isCurrentMonth && count($daySchedules) > 0)
<button type="button" onclick="openCreateModal('{{ $dateKey }}')"
class="block w-full text-center text-gray-400 hover:text-emerald-600 py-0.5"
title="일정 추가">
<svg class="w-3 h-3 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4"/>
</svg>
</button>
@endif
</div>
</div>
</td>