From 6828067a8973b0cadbc696805646b06c29952df1 Mon Sep 17 00:00:00 2001 From: Mars <3361409208a@gmail.com> Date: Mon, 6 Jul 2026 09:56:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(player):=20theme-2=20=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E9=87=8D=E5=A4=8D=E5=85=AC=E5=91=8A=E8=B5=B0?= =?UTF-8?q?=E9=A9=AC=E7=81=AF=EF=BC=8C=E4=BB=85=E4=BF=9D=E7=95=99=20Shell?= =?UTF-8?q?=20=E9=A1=B6=E9=83=A8=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/desktop/DesktopHomeView.vue | 43 +------------------ 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/apps/player/src/views/desktop/DesktopHomeView.vue b/apps/player/src/views/desktop/DesktopHomeView.vue index 327a0d0..ba23f65 100644 --- a/apps/player/src/views/desktop/DesktopHomeView.vue +++ b/apps/player/src/views/desktop/DesktopHomeView.vue @@ -4,7 +4,6 @@ import { useRouter } from 'vue-router'; import { useI18n } from 'vue-i18n'; import DesktopBanner3DCarousel from '../../components/desktop/DesktopBanner3DCarousel.vue'; import HomeAnnouncementCard from '../../components/HomeAnnouncementCard.vue'; -import AnnouncementMarquee from '../../components/AnnouncementMarquee.vue'; import { usePlayerHome } from '../../composables/usePlayerHome'; import TeamEmblem from '../../components/TeamEmblem.vue'; import GoldSpinner from '../../components/GoldSpinner.vue'; @@ -36,13 +35,6 @@ const restHotMatches = computed(() => hotMatches.value.slice( const upcomingList = computed(() => upcomingMatches.value); const sideRecommendMatches = computed(() => hotMatches.value.slice(1, 5)); -const marqueeItems = computed(() => - announcementItems.value - .map((it) => it.translation?.title?.trim() || '') - .filter((s): s is string => Boolean(s)), -); - - onMounted(() => { void load(true); }); @@ -191,12 +183,7 @@ function getHoveredSideForMatch(match: PlayerHomeMatch | null, cardRootId: strin - -
- -
- - +
@@ -593,34 +580,6 @@ function getHoveredSideForMatch(match: PlayerHomeMatch | null, cardRootId: strin text-align: center; } -/* [C] 璺戦┈鐏噾鏉?*/ -.home-marquee-strip { - position: relative; - height: 34px; - border-radius: 8px; - overflow: hidden; - background: linear-gradient(90deg, - rgba(0, 102, 204, 0.02), - rgba(0, 102, 204, 0.14), - rgba(0, 102, 204, 0.02)); - border: 1px solid var(--border-gold-soft); - display: flex; - align-items: stretch; /* let child fill full height */ - padding: 0; /* no padding 鈥?child spans edge to edge */ - box-shadow: inset 0 0 12px rgba(0, 102, 204, 0.08); -} - -/* force the embedded button to fill the strip completely */ -.home-marquee-strip :deep(.marquee-bar.embedded) { - width: 100%; - height: 100%; - margin: 0; - padding: 0 12px; - border: none; - border-radius: 0; - background: transparent; -} - /* [D] Main Row */ .main-row { display: grid;