diff options
author | FChannel <> | 2021-10-04 20:07:55 -0700 |
---|---|---|
committer | FChannel <> | 2021-10-04 20:07:55 -0700 |
commit | 4e26c41df1c90ec5fe4a782d74a81f937b1015f2 (patch) | |
tree | e0aeafb2f8a5ae7a1a800df9fc80d21f12ddc2f9 /static/bottom.html | |
parent | 1df965ee5a13921f30a453cd81be6def8f19c2b3 (diff) |
fix for reply box offset off screen
Diffstat (limited to 'static/bottom.html')
-rw-r--r-- | static/bottom.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/bottom.html b/static/bottom.html index 023deeb..ab8d88d 100644 --- a/static/bottom.html +++ b/static/bottom.html @@ -4,7 +4,7 @@ <form onsubmit="sessionStorage.setItem('element-closed-reply', true)" id="reply-post" action="/post" method="post" enctype="multipart/form-data"> <input id="reply-name" name="name" size="43" type="text" placeholder="Name" maxlength="100"> <input id="reply-options" name="options" size="43" type="text" placeholder="Options" maxlength="100"> - <textarea id="reply-comment" name="comment" rows="12" cols="54" maxlength="2000" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea> + <textarea id="reply-comment" name="comment" rows="12" cols="54" style="width: 396px;" maxlength="2000" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea> <input id="reply-file" name="file" type="file"> <input id="reply-submit" type="submit" value="Reply" style="float: right;"> <input type="hidden" id="inReplyTo-box" name="inReplyTo" value="{{ .Board.InReplyTo }}"> |