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
@@ -24,22 +24,22 @@ new class extends Component
<a
wire:key="update-{{ $update->id }}"
href="{{ route('admin.timelines.show', $update->timeline_id) }}"
class="block border-b border-zinc-100 py-2 last:border-0 hover:bg-zinc-50 dark:border-zinc-700 dark:hover:bg-zinc-700/50"
class="block border-b border-zinc-100 py-2 last:border-0 hover:bg-zinc-50"
wire:navigate
>
<div class="text-sm text-zinc-900 dark:text-zinc-100">
<div class="text-sm text-zinc-900">
{{ Str::limit($update->update_text, 50) }}
</div>
<div class="mt-1 flex items-center gap-2 text-xs text-zinc-500 dark:text-zinc-400">
<div class="mt-1 flex items-center gap-2 text-xs text-zinc-500">
<span>{{ $update->timeline?->case_name ?? __('widgets.unknown_case') }}</span>
<span>&bull;</span>
<span>{{ $update->timeline?->user?->full_name ?? __('widgets.unknown_client') }}</span>
</div>
<div class="mt-1 text-xs text-zinc-400 dark:text-zinc-500">
<div class="mt-1 text-xs text-zinc-400">
{{ $update->created_at->diffForHumans() }}
</div>
</a>
@empty
<flux:text class="text-zinc-500 dark:text-zinc-400">{{ __('widgets.no_recent_updates') }}</flux:text>
<flux:text class="text-zinc-500">{{ __('widgets.no_recent_updates') }}</flux:text>
@endforelse
</div>