From 5533c0ee373642bbef05fa4c810fc63938d1bf1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Z=C3=BCbeyde=20Civelek?= Date: Tue, 26 Aug 2025 14:29:13 +0200 Subject: [PATCH] fix: chapters height for small screens --- .../records/static/templates/cds_records/video/detail.html | 4 ++-- cds/modules/theme/assets/bootstrap3/scss/cds/cds.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cds/modules/records/static/templates/cds_records/video/detail.html b/cds/modules/records/static/templates/cds_records/video/detail.html index d8cec29bd..17bcaf145 100644 --- a/cds/modules/records/static/templates/cds_records/video/detail.html +++ b/cds/modules/records/static/templates/cds_records/video/detail.html @@ -92,7 +92,7 @@

Chapter {{ chapter.timestamp }}
@@ -328,7 +328,7 @@

Chapters

Chapter {{ chapter.timestamp }} diff --git a/cds/modules/theme/assets/bootstrap3/scss/cds/cds.scss b/cds/modules/theme/assets/bootstrap3/scss/cds/cds.scss index da324c5ef..f29a4cbfb 100644 --- a/cds/modules/theme/assets/bootstrap3/scss/cds/cds.scss +++ b/cds/modules/theme/assets/bootstrap3/scss/cds/cds.scss @@ -1400,9 +1400,9 @@ div[cds-search-results] { } } -@media(max-width: 768px) { +@media(max-width: 992px) { .in-this-video-panel { - max-height: calc(100vh - 120px); + min-height: 400px; } }