fix lack of scroll in event view

pull/3680/head
Isaac Connor 2023-03-26 10:28:18 -04:00
parent 4030da1caf
commit 8f96f7de8b
2 changed files with 10 additions and 2 deletions

View File

@ -251,7 +251,13 @@ body.sticky #content {
flex-flow: column; flex-flow: column;
*/ */
overflow: hidden; overflow: hidden;
height: 100%; height: 100%;
}
#inner-content {
overflow: auto;
height: 100%;
width: 100%;
} }
/* /*

View File

@ -149,6 +149,7 @@ getBodyTopHTML();
?> ?>
<div id="page"> <div id="page">
<?php echo getNavBarHTML() ?> <?php echo getNavBarHTML() ?>
<div id="content">
<?php <?php
if ( !$Event->Id() ) { if ( !$Event->Id() ) {
echo '<div class="error">Event was not found.</div>'; echo '<div class="error">Event was not found.</div>';
@ -207,7 +208,7 @@ if ( $Event->Id() and !file_exists($Event->Path()) )
</div> </div>
<?php if ( $Event->Id() ) { ?> <?php if ( $Event->Id() ) { ?>
<!-- BEGIN VIDEO CONTENT ROW --> <!-- BEGIN VIDEO CONTENT ROW -->
<div id="content"> <div id="inner-content">
<div class="d-flex flex-row"> <div class="d-flex flex-row">
<div class="eventStats"> <div class="eventStats">
<!-- VIDEO STATISTICS TABLE --> <!-- VIDEO STATISTICS TABLE -->
@ -359,6 +360,7 @@ if ( (ZM_WEB_STREAM_METHOD == 'mpeg') && ZM_MPEG_LIVE_FORMAT ) {
<?php <?php
} // end if Event exists } // end if Event exists
?> ?>
</div><!--inner-content-->
</div><!--content--> </div><!--content-->
</div><!--page--> </div><!--page-->