From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 22 Nov 2020 04:04:51 +0000 (+0100)
Subject: Fix terminal link coloring.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bprefix%7D%7D/all?a=commitdiff_plain;h=4839d55d29f092d74d10597232ec0f3fe08936f2;p=plomrogue2

Fix terminal link coloring.
---

diff --git a/rogue_chat_nocanvas_monochrome.html b/rogue_chat_nocanvas_monochrome.html
index c04e362..59d03a9 100644
--- a/rogue_chat_nocanvas_monochrome.html
+++ b/rogue_chat_nocanvas_monochrome.html
@@ -1,13 +1,19 @@
 <!DOCTYPE html>
 <html><head>
 <style>
+  pre {
+      display: inline-block;
+  }
+  pre a {
+      color: white;
+  }
 </style>
 </head><body>
 <div>
 terminal rows: <input id="n_rows" type="number" step=4 min=24 value=24 />
 terminal columns: <input id="n_cols" type="number" step=4 min=80 value=80 />
 </div>
-<pre id="terminal" style="display: inline-block;"></pre>
+<pre id="terminal"></pre>
 <textarea id="input" style="opacity: 0; width: 0px;"></textarea>
 <div>
 <a href="https://plomlompom.com/repos/?p=plomrogue2;a=summary">source code</a> (includes proper terminal / curses client)