From ba1feb150bf50f01789906ad93f62bac454d0f0a Mon Sep 17 00:00:00 2001 From: shiyu Date: Wed, 17 Dec 2025 10:57:59 +0800 Subject: [PATCH] feat(VideoLibrary): update styling for video library header and statistics display --- web/src/apps/VideoPlayer/VideoLibrary.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/web/src/apps/VideoPlayer/VideoLibrary.tsx b/web/src/apps/VideoPlayer/VideoLibrary.tsx index f69bd98..b6acf12 100644 --- a/web/src/apps/VideoPlayer/VideoLibrary.tsx +++ b/web/src/apps/VideoPlayer/VideoLibrary.tsx @@ -545,17 +545,16 @@ export const VideoLibraryApp: React.FC = () => { style={{ padding: 14, borderRadius: 12, - background: 'linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.85) 40%, rgba(17,24,39,0.9) 100%)', - color: 'rgba(255,255,255,0.92)', - boxShadow: token.boxShadowTertiary, + background: token.colorBgContainer, + border: `1px solid ${token.colorBorderSecondary}`, }} >
- + {t('Video Library')} - + {t('Total')}: {stats.total} · {t('Movies')}: {stats.movie} · {t('TV')}: {stats.tv}