From 94cd443c547ed1bc04b6d48e2bd0fe683053fead Mon Sep 17 00:00:00 2001 From: Troels Ugilt Jensen <6103205+tuj@users.noreply.github.com> Date: Wed, 22 Apr 2026 13:02:49 +0200 Subject: [PATCH 1/2] 7260: Fixed video overflow --- CHANGELOG.md | 1 + assets/shared/templates/video/video.scss | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a3b0151..36a5725a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ All notable changes to this project will be documented in this file. - Optimized release data fetching. - Optimized list loading. - Removed fixture length check from test. +- Fixed video overflow. ### NB! Prior to 3.x the project was split into separate repositories diff --git a/assets/shared/templates/video/video.scss b/assets/shared/templates/video/video.scss index 376dd5432..3254e3de8 100644 --- a/assets/shared/templates/video/video.scss +++ b/assets/shared/templates/video/video.scss @@ -1,8 +1,11 @@ .template-video { + width: 100%; + height: 100%; + overflow: hidden; + .video-container { width: auto; height: 100%; - overflow: hidden; } video { From f26adedf60a306b980fed863c199c56e71b871f1 Mon Sep 17 00:00:00 2001 From: Troels Ugilt Jensen <6103205+tuj@users.noreply.github.com> Date: Thu, 30 Apr 2026 13:16:12 +0200 Subject: [PATCH 2/2] 7260: Removed unused class --- assets/shared/templates/video.jsx | 2 +- assets/shared/templates/video/video.scss | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/assets/shared/templates/video.jsx b/assets/shared/templates/video.jsx index ffb43879c..bf22b7b3a 100644 --- a/assets/shared/templates/video.jsx +++ b/assets/shared/templates/video.jsx @@ -83,7 +83,7 @@ function Video({ slide, content, run, slideDone, executionId }) { return ( <> -