feat(player): add file path display below video title

- Display the video file path in smaller, gray text below the title
- Apply drop shadow and truncate long paths for better readability
- Ensure consistent UI spacing with margin top on the path display
This commit is contained in:
tigeren 2025-10-19 13:16:43 +00:00
parent 301d315ed1
commit 2df4556772
2 changed files with 4 additions and 0 deletions

Binary file not shown.

View File

@ -765,6 +765,10 @@ export default function ArtPlayerWrapper({
</span>
)}
</div>
{/* File path display with smaller font */}
<div className="text-xs text-gray-300 mt-1 drop-shadow-md truncate">
{video.path}
</div>
</div>
{/* 5-Star Rating System - Always show if enabled, regardless of current values */}