aboutsummaryrefslogtreecommitdiff
path: root/templates/thread.tmpl
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2019-12-19 16:19:44 +0000
committerr <r@freesoftwareextremist.com>2019-12-19 16:19:44 +0000
commit7c6097703cc357a133b34ed22d9d4da31d698860 (patch)
treeb707386fc29d84dd88d11ad2f4be5d8fead81e59 /templates/thread.tmpl
parentebd6636167f2868ec6b8174ff2ead185ed4ab1e1 (diff)
downloadbloat-7c6097703cc357a133b34ed22d9d4da31d698860.tar.gz
bloat-7c6097703cc357a133b34ed22d9d4da31d698860.zip
Improve css for mobile devices
Diffstat (limited to 'templates/thread.tmpl')
-rw-r--r--templates/thread.tmpl13
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/thread.tmpl b/templates/thread.tmpl
index 3ad5dae..d4c88de 100644
--- a/templates/thread.tmpl
+++ b/templates/thread.tmpl
@@ -8,12 +8,13 @@
{{if eq .ID $.ReplyToID}}
<form class="timeline-post-form" action="/post" method="POST" enctype="multipart/form-data">
<input type="hidden" name="reply_to_id" value="{{$.ReplyToID}}" />
- <label for="post-content"> Reply to {{.Account.DisplayName}} </label>
- <br/>
- <textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{$.ReplyContent}}</textarea>
- <br/>
- Attachments <input id="post-file-picker" type="file" name="attachments" multiple>
- <br/>
+ <label for="post-content"> reply to {{.Account.DisplayName}} </label>
+ <div class="post-form-content-container">
+ <textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{$.ReplyContent}}</textarea>
+ </div>
+ <div>
+ Attachments <input id="post-file-picker" type="file" name="attachments" multiple>
+ </div>
<button type="submit"> Post </button>
</form>
{{end}}