fix lack of scroll in event view
parent
4030da1caf
commit
8f96f7de8b
|
@ -251,7 +251,13 @@ body.sticky #content {
|
|||
flex-flow: column;
|
||||
*/
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#inner-content {
|
||||
overflow: auto;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -149,6 +149,7 @@ getBodyTopHTML();
|
|||
?>
|
||||
<div id="page">
|
||||
<?php echo getNavBarHTML() ?>
|
||||
<div id="content">
|
||||
<?php
|
||||
if ( !$Event->Id() ) {
|
||||
echo '<div class="error">Event was not found.</div>';
|
||||
|
@ -207,7 +208,7 @@ if ( $Event->Id() and !file_exists($Event->Path()) )
|
|||
</div>
|
||||
<?php if ( $Event->Id() ) { ?>
|
||||
<!-- BEGIN VIDEO CONTENT ROW -->
|
||||
<div id="content">
|
||||
<div id="inner-content">
|
||||
<div class="d-flex flex-row">
|
||||
<div class="eventStats">
|
||||
<!-- VIDEO STATISTICS TABLE -->
|
||||
|
@ -359,6 +360,7 @@ if ( (ZM_WEB_STREAM_METHOD == 'mpeg') && ZM_MPEG_LIVE_FORMAT ) {
|
|||
<?php
|
||||
} // end if Event exists
|
||||
?>
|
||||
</div><!--inner-content-->
|
||||
</div><!--content-->
|
||||
|
||||
</div><!--page-->
|
||||
|
|
Loading…
Reference in New Issue