From 81397bfd9fa54c60a8568812fc0ad99802a4e360 Mon Sep 17 00:00:00 2001 From: Kristian Lyngstol Date: Wed, 18 May 2016 18:34:28 +0200 Subject: Add basic oplog It still needs to be integrated with switches/info box, but this is a good start. Shows the last 5 log messages in an overlay on the map, with the rest visible in an oplog tab. Fixes #20 --- web/index.html | 40 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 37 insertions(+), 3 deletions(-) (limited to 'web/index.html') diff --git a/web/index.html b/web/index.html index 9362418..0bd7ade 100644 --- a/web/index.html +++ b/web/index.html @@ -62,6 +62,14 @@ color: white; text-shadow: 4px 4px 5px black; } + .logbook { + background-color: rgba(255,255,255,0.7); + color: black; + } + .nightmode .logbook { + background-color: rgba(0,0,0,0.7); + color: white; + } .tvmode #topCanvas { display: none; } @@ -74,6 +82,9 @@ #admin { display: none; } + #oplog { + display: none; + } .vertical div.map-mode-legend { top: -10px; right: 30px; @@ -104,6 +115,7 @@