diff options
| author | stonedDiscord <stoned@derpymail.org> | 2019-07-16 21:52:06 +0200 |
|---|---|---|
| committer | stonedDiscord <stoned@derpymail.org> | 2019-07-16 21:52:06 +0200 |
| commit | 4d7c108408e7a4c43701af62356d92e946aa23e9 (patch) | |
| tree | 20ba330635071e7a24ab247002fee57aa977cacc /webAO | |
| parent | 1549d1ce2d34fef96aadc4ae23865ff1b559251c (diff) | |
add padding to inputbox to make it easier to hit on touchscreens
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/client.css | 4 | ||||
| -rw-r--r-- | webAO/client.html | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/webAO/client.css b/webAO/client.css index f13f2fa..3e99262 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -243,6 +243,10 @@ img { color: white; } +#client_inputbox { + padding: 4px; +} + .long { width: 100%; background-color: #dddddd; diff --git a/webAO/client.html b/webAO/client.html index 73d9ec6..c4b3725 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -38,7 +38,7 @@ </div> <img id="client_testimony" alt="Testimony overlay" style="display: none;" onerror="imgError(this);"> </div> - <input id="client_inputbox" class="long" type="text" onkeypress="onEnter(event)" style="padding-left: 1px; padding-right: 1px;" placeholder="Say something…"> + <input id="client_inputbox" class="long" type="text" onkeypress="onEnter(event)" placeholder="Say something…"> <meta name="frame-title" lang="en" content="Miscellaneous"> <div id="client_bars"> <span id="client_defense_hp" class="health-box"> |
