From 6f981b67c2aa321080fddb622ae475686f0aafe3 Mon Sep 17 00:00:00 2001 From: mtvpls Date: Thu, 7 May 2026 17:25:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9F=B3=E4=B9=90=E7=95=8C=E9=9D=A2=E9=80=82?= =?UTF-8?q?=E9=85=8D=E6=97=A5=E5=A4=9C=E9=97=B4=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/music/page.tsx | 106 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 101 insertions(+), 5 deletions(-) diff --git a/src/app/music/page.tsx b/src/app/music/page.tsx index abb6514..a6e57ea 100644 --- a/src/app/music/page.tsx +++ b/src/app/music/page.tsx @@ -1358,7 +1358,7 @@ export default function MusicPage() { }; return ( -
+
<> {resolvingCount > 0 && (
@@ -1447,9 +1447,11 @@ export default function MusicPage() { )} -
+
- +
@@ -1458,7 +1460,7 @@ export default function MusicPage() { value={searchKeyword} onChange={(e) => setSearchKeyword(e.target.value)} onKeyDown={handleSearchKeyDown} - className="w-full h-full bg-black/30 border border-white/10 rounded-lg pl-9 pr-4 text-sm text-white focus:outline-none focus:border-green-500 focus:ring-2 focus:ring-green-500/50 font-mono placeholder-zinc-500" + className="w-full h-full appearance-none border-0 bg-transparent pl-9 pr-4 text-sm text-white outline-none focus:outline-none focus:ring-0 font-mono placeholder:text-zinc-500" placeholder="搜索歌曲或艺术家..." />
@@ -2553,7 +2555,7 @@ export default function MusicPage() { {confirmModal.isOpen && createPortal(
@@ -2645,6 +2647,100 @@ export default function MusicPage() { onClose={() => setShowPiPLyrics(false)} /> )} +
);