diff --git a/vnc_lite.html b/vnc_lite.html index 88e10797..2398bea2 100644 --- a/vnc_lite.html +++ b/vnc_lite.html @@ -36,14 +36,14 @@ height: 100%; } - #noVNC_status_bar { + #top_bar { background-color: #6e84a3; color: white; font: bold 12px Helvetica; padding: 6px 5px 4px 5px; border-bottom: 1px outset; } - #noVNC_status { + #status { text-align: center; } #sendCtrlAltDelButton { @@ -119,7 +119,7 @@ // Show a status text in the top bar function status(text) { - document.getElementById('noVNC_status').textContent = text; + document.getElementById('status').textContent = text; } // This function extracts the value of one variable from the @@ -188,9 +188,9 @@
-