From 780c7c7184c2690eb5a9e7a1ab73755e7503d4b3 Mon Sep 17 00:00:00 2001 From: Nico Athanassiadis <nico@dsv.su.se> Date: Mon, 13 Jan 2025 12:10:01 +0100 Subject: [PATCH] Fixed an issue with the css for the table-wrapper class The section that uses this class was not working properly due to the missing overflow-y: scroll statement. The idea was to only show 3 of the uploaded files at a time, when the overflow statement was missing the other uploaded files where bleeding through and over the transcribed files section. This should fix that issue so that the uploaded file section does not bleed over the transcribed section content. --- src/main/resources/static/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/static/css/styles.css b/src/main/resources/static/css/styles.css index 4f81baa..57fd3bb 100644 --- a/src/main/resources/static/css/styles.css +++ b/src/main/resources/static/css/styles.css @@ -35,6 +35,7 @@ .table-wrapper { max-height: 160px; + overflow-y: scroll; } .table thead th {