Merge pull request #3864 from IgorA100/patch-19

Fix page console
pull/3868/head
Isaac Connor 2024-03-14 16:44:21 -04:00 committed by GitHub
commit 305a1485cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 3 deletions

View File

@ -589,6 +589,7 @@ body.sticky #page {
#contentButtons {
margin-top: 8px;
margin-bottom: 8px;
float: right;
}

View File

@ -118,7 +118,14 @@ form[name="monitorForm"] {
}
#monitorList {
flex: 1 1 auto;
overflow-y: auto;
/* overflow-y: scroll; */
}
body.sticky #monitorList {
overflow: auto;
}
body.sticky #monitorList thead {
position: sticky;
top: -1px;
}
#toolbar,
#contentButtons {

View File

@ -169,7 +169,7 @@ echo $navbar ?>
<?php echo $filterbar ?>
</div>
<div class="container-fluid pt-2" id="toolbar">
<div id="toolbar" class="container-fluid pt-2">
<div class="statusBreakdown">
<?php
$html = '';
@ -231,7 +231,7 @@ echo $navbar ?>
<?php
ob_start();
?>
<div class="container-fluid table-responsive-sm pt-2" id="monitorList">
<div id="monitorList" class="container-fluid table-responsive">
<table id="consoleTable" class="table table-striped table-hover table-condensed consoleTable"
style="display:none;"
data-toolbar="#toolbar"