From 04fb13f0269b7d77ec178a797599c3d9a54061a6 Mon Sep 17 00:00:00 2001 From: Christian Heller <c.heller@plomlompom.de> Date: Wed, 16 Dec 2020 16:43:33 +0100 Subject: [PATCH] Fix CSS bug that made URL links unclickable in web client history. --- rogue_chat.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogue_chat.html b/rogue_chat.html index b9673a1..212a1d6 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -16,7 +16,7 @@ terminal rows: <input id="n_rows" type="number" step=4 min=24 value=24 /> </div> <div style="position: relative; display: inline-block;"> <pre id="terminal"></pre> -<textarea id="input" style="position: absolute; left: 0; height: 100%; width: 100%; opacity: 0"></textarea> +<textarea id="input" style="position: absolute; left: 0; height: 100%; width: 100%; opacity: 0; z-index: -1;"></textarea> </div> <h3>button controls for hard-to-remember keybindings</h3> <table id="move_table" style="float: left"> -- 2.30.2