commit
305a1485cc
|
@ -589,6 +589,7 @@ body.sticky #page {
|
||||||
|
|
||||||
#contentButtons {
|
#contentButtons {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
margin-bottom: 8px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,14 @@ form[name="monitorForm"] {
|
||||||
}
|
}
|
||||||
#monitorList {
|
#monitorList {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
overflow-y: auto;
|
/* overflow-y: scroll; */
|
||||||
|
}
|
||||||
|
body.sticky #monitorList {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
body.sticky #monitorList thead {
|
||||||
|
position: sticky;
|
||||||
|
top: -1px;
|
||||||
}
|
}
|
||||||
#toolbar,
|
#toolbar,
|
||||||
#contentButtons {
|
#contentButtons {
|
||||||
|
|
|
@ -169,7 +169,7 @@ echo $navbar ?>
|
||||||
<?php echo $filterbar ?>
|
<?php echo $filterbar ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container-fluid pt-2" id="toolbar">
|
<div id="toolbar" class="container-fluid pt-2">
|
||||||
<div class="statusBreakdown">
|
<div class="statusBreakdown">
|
||||||
<?php
|
<?php
|
||||||
$html = '';
|
$html = '';
|
||||||
|
@ -231,7 +231,7 @@ echo $navbar ?>
|
||||||
<?php
|
<?php
|
||||||
ob_start();
|
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"
|
<table id="consoleTable" class="table table-striped table-hover table-condensed consoleTable"
|
||||||
style="display:none;"
|
style="display:none;"
|
||||||
data-toolbar="#toolbar"
|
data-toolbar="#toolbar"
|
||||||
|
|
Loading…
Reference in New Issue