removed dark mod and applied fixes for text colors

This commit is contained in:
Naser Mansour
2026-01-08 19:15:02 +02:00
parent ddbb224d07
commit dfee2ff5c8
64 changed files with 744 additions and 711 deletions
@@ -27,21 +27,21 @@ new class extends Component
</div>
@forelse ($pendingBookings as $booking)
<div wire:key="pending-{{ $booking->id }}" class="border-b border-zinc-100 py-2 last:border-0 dark:border-zinc-700">
<div class="font-medium text-zinc-900 dark:text-zinc-100">{{ $booking->user?->full_name ?? __('widgets.unknown_client') }}</div>
<div class="flex items-center gap-2 text-sm text-zinc-500 dark:text-zinc-400">
<div wire:key="pending-{{ $booking->id }}" class="border-b border-zinc-100 py-2 last:border-0">
<div class="font-medium text-zinc-900">{{ $booking->user?->full_name ?? __('widgets.unknown_client') }}</div>
<div class="flex items-center gap-2 text-sm text-zinc-500">
<span>{{ $booking->booking_date->translatedFormat('M j') }}</span>
<flux:badge size="sm">{{ $booking->consultation_type->label() }}</flux:badge>
</div>
</div>
@empty
<flux:text class="text-zinc-500 dark:text-zinc-400">{{ __('widgets.no_pending_bookings') }}</flux:text>
<flux:text class="text-zinc-500">{{ __('widgets.no_pending_bookings') }}</flux:text>
@endforelse
@if ($pendingCount > 5)
<a
href="{{ route('admin.bookings.pending') }}"
class="mt-4 block text-sm text-blue-600 hover:underline dark:text-blue-400"
class="mt-4 block text-sm text-blue-600 hover:underline"
wire:navigate
>
{{ __('widgets.view_all_pending', ['count' => $pendingCount]) }}