fixed layout problem with tooltip-box in METAR-decoding
This commit is contained in:
parent
0d3de60439
commit
a53a4028a7
3 changed files with 9 additions and 8 deletions
|
@ -39,7 +39,8 @@
|
|||
/* Position the tooltip text */
|
||||
position: absolute;
|
||||
z-index: 99;
|
||||
bottom: 125%;
|
||||
/*bottom: -450%;*/
|
||||
top: 0%;
|
||||
left: 50%;
|
||||
margin-left: -60px;
|
||||
|
||||
|
@ -52,12 +53,12 @@
|
|||
.tooltip2 .tooltiptext::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
top: 5%;
|
||||
left: 0%;
|
||||
margin-left: -10px;
|
||||
border-width: 5px;
|
||||
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 */
|
||||
|
|
|
@ -330,13 +330,13 @@
|
|||
}
|
||||
|
||||
var ws1 = new WebSocket("ws://" + window.location.hostname + ":5678/MMDVM");
|
||||
ws1.onmessage = function (event) {
|
||||
ws1.onmessage = function (event) {/*
|
||||
if (lastheard > 0)
|
||||
getLastHeard(document, event);
|
||||
if (localheard > 0)
|
||||
getLocalHeard(document, event);
|
||||
if (allheard > 0)
|
||||
getAllHeard(document, event);
|
||||
getAllHeard(document, event);*/
|
||||
};
|
||||
|
||||
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…
Reference in a new issue