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
@@ -182,7 +182,7 @@ new class extends Component
@endif
<!-- Filters -->
<div class="bg-white dark:bg-zinc-800 rounded-lg p-4 border border-zinc-200 dark:border-zinc-700 mb-6">
<div class="bg-white rounded-lg p-4 border border-zinc-200 mb-6">
<div class="flex flex-col sm:flex-row gap-4 items-end">
<flux:field class="flex-1">
<flux:label>{{ __('admin.date_from') }}</flux:label>
@@ -205,7 +205,7 @@ new class extends Component
<!-- Bookings List -->
<div class="space-y-4">
@forelse($bookings as $booking)
<div wire:key="booking-{{ $booking->id }}" class="bg-white dark:bg-zinc-800 rounded-lg p-4 border border-zinc-200 dark:border-zinc-700">
<div wire:key="booking-{{ $booking->id }}" class="bg-white rounded-lg p-4 border border-zinc-200">
<div class="flex flex-col lg:flex-row lg:items-start justify-between gap-4">
<!-- Booking Info -->
<div class="flex-1">
@@ -213,7 +213,7 @@ new class extends Component
@if($booking->isGuest())
<flux:badge color="amber" size="sm">{{ __('admin.guest') }}</flux:badge>
@endif
<span class="font-semibold text-zinc-900 dark:text-zinc-100">
<span class="font-semibold text-zinc-900">
{{ $booking->getClientName() }}
</span>
<flux:badge variant="warning" size="sm">
@@ -221,7 +221,7 @@ new class extends Component
</flux:badge>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-2 text-sm text-zinc-600 dark:text-zinc-400">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-2 text-sm text-zinc-600">
<div class="flex items-center gap-2">
<flux:icon name="calendar" class="w-4 h-4" />
{{ \Carbon\Carbon::parse($booking->booking_date)->translatedFormat('l, d M Y') }}
@@ -242,7 +242,7 @@ new class extends Component
</div>
</div>
<p class="mt-3 text-sm text-zinc-600 dark:text-zinc-400 line-clamp-2">
<p class="mt-3 text-sm text-zinc-600 line-clamp-2">
{{ Str::limit($booking->problem_summary, 150) }}
</p>
</div>
@@ -279,7 +279,7 @@ new class extends Component
</div>
</div>
@empty
<div class="text-center py-12 text-zinc-500 dark:text-zinc-400 bg-white dark:bg-zinc-800 rounded-lg border border-zinc-200 dark:border-zinc-700">
<div class="text-center py-12 text-zinc-500 bg-white rounded-lg border border-zinc-200">
<flux:icon name="inbox" class="w-12 h-12 mx-auto mb-4" />
<p>{{ __('admin.no_pending_bookings') }}</p>
</div>