Polish Files UI and scope search to mobile-only transfers/files.
Deploy Ladill Transfer / deploy (push) Successful in 41s

Remove desktop header search, wire mobile search to the transfers and files page, refine file icons and Shared badge, and align Transfers toolbar with Files.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-08 21:47:33 +00:00
co-authored by Cursor
parent f9b16f6b61
commit f458dccd49
9 changed files with 99 additions and 125 deletions
@@ -166,7 +166,7 @@
<td class="px-4 py-3"></td>
<td class="px-4 py-3" colspan="4">
<a href="{{ route('transfer.files.index', ['folder' => $folder->id]) }}" class="flex items-center gap-3">
<img src="{{ $iconBase }}/folder.svg" alt="" class="h-8 w-8">
@include('transfer.files.partials.folder-list-icon', ['size' => 'xs'])
<div>
<p class="font-medium text-slate-900">{{ $folder->title }}</p>
<p class="text-xs text-slate-500">{{ $folder->files_count }} item{{ $folder->files_count === 1 ? '' : 's' }}</p>
@@ -185,7 +185,7 @@
</td>
<td class="px-4 py-3">
<div class="flex items-center gap-3">
<img src="{{ $iconBase }}/file.svg" alt="" class="h-8 w-8 shrink-0">
@include('transfer.files.partials.file-list-icon', ['size' => 'xs'])
<div class="min-w-0">
<p class="truncate font-medium text-slate-900">{{ $file->original_name }}</p>
</div>
@@ -198,7 +198,10 @@
<td class="px-4 py-3 text-slate-600">{{ $file->humanSize() }}</td>
<td class="hidden px-4 py-3 md:table-cell">
@if($file->transfer->recipient_email || $file->downloads_total > 0)
<span class="inline-flex items-center gap-1 text-xs text-slate-600">Shared</span>
<span class="inline-flex items-center gap-1 text-xs text-slate-600">
<svg class="h-3.5 w-3.5" fill="none" stroke="currentColor" stroke-width="1.8" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"/></svg>
Shared
</span>
@else
<span class="text-xs text-slate-400">Private</span>
@endif