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
@@ -221,7 +221,7 @@ new class extends Component {
<div class="mb-6 flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
<div>
<flux:heading size="xl">{{ __('admin.blocked_times') }}</flux:heading>
<flux:text class="mt-1 text-zinc-500 dark:text-zinc-400">
<flux:text class="mt-1 text-zinc-500">
{{ __('admin.blocked_times_description') }}
</flux:text>
</div>
@@ -248,11 +248,11 @@ new class extends Component {
</div>
{{-- List --}}
<div class="rounded-lg border border-zinc-200 bg-white dark:border-zinc-700 dark:bg-zinc-800">
<div class="rounded-lg border border-zinc-200 bg-white">
@forelse($blockedTimes as $blocked)
<div
wire:key="blocked-{{ $blocked->id }}"
class="flex flex-col gap-4 border-b border-zinc-200 p-4 last:border-b-0 dark:border-zinc-700 sm:flex-row sm:items-center sm:justify-between"
class="flex flex-col gap-4 border-b border-zinc-200 p-4 last:border-b-0 sm:flex-row sm:items-center sm:justify-between"
>
<div class="flex-1">
<div class="flex items-center gap-3">
@@ -268,14 +268,14 @@ new class extends Component {
{{ __('admin.all_day') }}
</flux:badge>
@else
<span class="text-sm text-zinc-600 dark:text-zinc-400">
<span class="text-sm text-zinc-600">
{{ $blocked->start_time }} - {{ $blocked->end_time }}
</span>
@endif
</div>
@if ($blocked->reason)
<p class="mt-2 text-sm text-zinc-500 dark:text-zinc-400">
<p class="mt-2 text-sm text-zinc-500">
{{ $blocked->reason }}
</p>
@endif
@@ -297,7 +297,7 @@ new class extends Component {
@empty
<div class="p-8 text-center">
<flux:icon name="calendar-days" class="mx-auto h-12 w-12 text-zinc-400" />
<flux:text class="mt-2 text-zinc-500 dark:text-zinc-400">
<flux:text class="mt-2 text-zinc-500">
{{ __('admin.no_blocked_times') }}
</flux:text>
</div>