Build tweaks

This commit is contained in:
Herbert Wolverson
2024-06-21 14:05:03 -05:00
parent 3e3a301f86
commit 339480cce7
3 changed files with 10 additions and 7 deletions

View File

@@ -1,6 +1,9 @@
#!/bin/bash
cp -R src/node_manager/static2/* ../../bin/static2
set -e
echo "Copying static"
cp -v -R src/node_manager/static2/* ../../bin/static2/
echo "Done"
pushd src/node_manager/js_build || exit
./esbuild.sh
popd || exit
cp -R src/node_manager/js_build/out/* ../../bin/static2
cp -R src/node_manager/js_build/out/* ../../bin/static2/

View File

@@ -17,13 +17,13 @@
</div>
<div class="row">
<div class="col-5 dashbox">
<div class="col-6 dashbox">
<h5 class="dashbox-title">Last 5 Minutes Throughput</h5>
<div id="tpRing" class="dashgraph">
</div>
</div>
<div class="col-5 dashbox">
<div class="col-6 dashbox">
<h5 class="dashbox-title">Round-Trip Time Histogram</h5>
<div id="rttHisto" class="dashgraph">
</div>

View File

@@ -34,15 +34,15 @@ body.dark-mode {
.dashbox {
border: 1px solid #ccc;
padding: 0px;
margin: 0px;
padding: 0;
margin: 0;
}
.dashbox .dashbox-title {
font-size: 10pt;
background-color: rgb(6, 7, 59);
color: white;
text-align: center;
margin: 0px;
margin: 0;
font-variant: small-caps;
font-weight: bold;
}