diff options
| author | stonedDiscord <Tukz@gmx.de> | 2021-02-08 00:55:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-08 00:55:08 +0100 |
| commit | fa7d03b900cd5f96a42dc98d5822334c7759df7e (patch) | |
| tree | 08fc5a8ab35e8bf130eb919d2c07ff812228104d /webAO/client.html | |
| parent | 891bca54f8ed848d180a716055c21af19046ef71 (diff) | |
| parent | e568aec6a5c65989b342a9ed186c138447c86c0e (diff) | |
Merge pull request #79 from craftxbox/patch-2
Fix OOC horizontal scrolling from typing too much in the input box.
Diffstat (limited to 'webAO/client.html')
| -rw-r--r-- | webAO/client.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webAO/client.html b/webAO/client.html index 1b6b9c2..40fea69 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -506,9 +506,9 @@ <meta name="frame-title" lang="en" content="Server"> <div style="height: 100%; display: flex; flex-direction: column;"> <textarea id="client_ooclog" style="flex: 1 auto" readonly></textarea> - <span id="client_oocinput" style="display: inline-block; white-space: nowrap;"> - <input id="OOC_name" style="width: 15%;" name="OOC_name" type="text"> - <input id="client_oocinputbox" style="width: 85%;" type="text" onkeypress="onOOCEnter(event)"> + <span id="client_oocinput"> + <input id="OOC_name" name="OOC_name" type="text"> + <input id="client_oocinputbox" type="text" onkeypress="onOOCEnter(event)"> </span> <span id="client_replaycontrols" style="display: none; white-space: nowrap;"> <input id="client_replaygo" style="width: 25%;" type="button" onclick="onReplayGo(event)" value="GO"> |
