diff --git a/hive-ag3nt/assets/screen.html b/hive-ag3nt/assets/screen.html index 8f076c8..29b7622 100644 --- a/hive-ag3nt/assets/screen.html +++ b/hive-ag3nt/assets/screen.html @@ -33,6 +33,18 @@ html, body { height: 100%; background: var(--base); color: var(--text); #status { margin-left: auto; font-size: 0.75rem; color: var(--subtext0); } #status.connected { color: var(--green); } #status.error { color: var(--red); } +#debug-log { + position: fixed; bottom: 0; left: 0; right: 0; max-height: 40vh; + overflow-y: auto; background: rgba(17,17,27,0.95); + border-top: 1px solid var(--surface1); + font-size: 0.72rem; font-family: ui-monospace, monospace; + padding: 0.4rem 0.6rem; z-index: 100; + display: none; /* hidden by default; toggled by toolbar button */ +} +#debug-log .dbg-line { color: var(--subtext0); margin: 1px 0; white-space: pre; } +#debug-log .dbg-line.err { color: var(--red); } +#debug-log .dbg-line.ok { color: var(--green); } +#debug-log .dbg-line.send { color: var(--blue); } #canvas-wrap { display: flex; justify-content: center; align-items: flex-start; width: 100%; height: calc(100% - 36px); overflow: auto; @@ -52,10 +64,15 @@ canvas { display: block; cursor: default; }