1
0
Fork 0

fixed layout problem with tooltip-box in METAR-decoding

main
Kim Huebel 4 years ago
parent 0d3de60439
commit a53a4028a7

@ -39,7 +39,8 @@
/* Position the tooltip text */ /* Position the tooltip text */
position: absolute; position: absolute;
z-index: 99; z-index: 99;
bottom: 125%; /*bottom: -450%;*/
top: 0%;
left: 50%; left: 50%;
margin-left: -60px; margin-left: -60px;
@ -52,12 +53,12 @@
.tooltip2 .tooltiptext::after { .tooltip2 .tooltiptext::after {
content: ""; content: "";
position: absolute; position: absolute;
top: 100%; top: 5%;
left: 50%; left: 0%;
margin-left: -5px; margin-left: -10px;
border-width: 5px; border-width: 5px;
border-style: solid; border-style: solid;
border-color: #555 transparent transparent transparent; border-color: transparent #555 transparent transparent;
} }
/* Show the tooltip text when you mouse over the tooltip container */ /* Show the tooltip text when you mouse over the tooltip container */

@ -330,13 +330,13 @@
} }
var ws1 = new WebSocket("ws://" + window.location.hostname + ":5678/MMDVM"); var ws1 = new WebSocket("ws://" + window.location.hostname + ":5678/MMDVM");
ws1.onmessage = function (event) { ws1.onmessage = function (event) {/*
if (lastheard > 0) if (lastheard > 0)
getLastHeard(document, event); getLastHeard(document, event);
if (localheard > 0) if (localheard > 0)
getLocalHeard(document, event); getLocalHeard(document, event);
if (allheard > 0) if (allheard > 0)
getAllHeard(document, event); getAllHeard(document, event);*/
}; };
var t_qso = $('#inQSO').DataTable( { var t_qso = $('#inQSO').DataTable( {

@ -1 +1 @@
var dashboard_version = "2021-02-04 18:24:29"; var dashboard_version = "2021-02-04 19:16:43";

Loading…
Cancel
Save