From 6fd049860e2403bf193ea1c6bef3cdfea05b3614 Mon Sep 17 00:00:00 2001 From: pbruun Date: Mon, 13 Jul 2026 13:06:22 +0200 Subject: [PATCH 1/6] Program placement. Background color changes. placement for header and breadcrumb --- src/components/global/nav/Breadcrumb.vue | 2 +- .../records/BroadcastVideoRecord.vue | 1 - src/components/search/Header.vue | 12 +----- .../viewers/AudioVideo/AudioPlayer.vue | 3 -- .../viewers/AudioVideo/VideoPlayer.vue | 1 - src/views/ShowRecord.vue | 38 ++----------------- 6 files changed, 5 insertions(+), 52 deletions(-) diff --git a/src/components/global/nav/Breadcrumb.vue b/src/components/global/nav/Breadcrumb.vue index a2619a18..c144d0a6 100644 --- a/src/components/global/nav/Breadcrumb.vue +++ b/src/components/global/nav/Breadcrumb.vue @@ -438,7 +438,7 @@ export default defineComponent({ .bg-container { position: relative; - top: 50px; + margin-top: 50px; } .breadcrumb-title { diff --git a/src/components/records/BroadcastVideoRecord.vue b/src/components/records/BroadcastVideoRecord.vue index 2ae6c07c..d4204aaf 100644 --- a/src/components/records/BroadcastVideoRecord.vue +++ b/src/components/records/BroadcastVideoRecord.vue @@ -258,7 +258,6 @@ temporary styling until patterns from design system are implemented --> diff --git a/src/components/viewers/AudioVideo/AudioPlayer.vue b/src/components/viewers/AudioVideo/AudioPlayer.vue index cdb1f501..9810d586 100644 --- a/src/components/viewers/AudioVideo/AudioPlayer.vue +++ b/src/components/viewers/AudioVideo/AudioPlayer.vue @@ -202,16 +202,13 @@ export default defineComponent({ } .audio-player-box { - background-color: black; display: flex; justify-content: center; align-items: center; width: 100%; margin-left: 0px; overflow-y: hidden; - padding-top: 31px; padding-bottom: 31px; - background-color: var(--bg-default); position: relative; } diff --git a/src/components/viewers/AudioVideo/VideoPlayer.vue b/src/components/viewers/AudioVideo/VideoPlayer.vue index 158f20c3..6d808c8a 100644 --- a/src/components/viewers/AudioVideo/VideoPlayer.vue +++ b/src/components/viewers/AudioVideo/VideoPlayer.vue @@ -204,7 +204,6 @@ export default defineComponent({ width: 100%; margin-left: 0px; overflow-y: hidden; - padding-top: 31px; padding-bottom: 31px; background-color: white; position: relative; diff --git a/src/views/ShowRecord.vue b/src/views/ShowRecord.vue index 5e05f83e..5d2e19c7 100644 --- a/src/views/ShowRecord.vue +++ b/src/views/ShowRecord.vue @@ -1,6 +1,6 @@