mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2025-05-02 10:04:22 +00:00
Improve css for mobile devices
This commit is contained in:
parent
ebd6636167
commit
7c6097703c
4 changed files with 36 additions and 16 deletions
|
@ -1,6 +1,9 @@
|
|||
{{template "header.tmpl"}}
|
||||
<h1> Error </h1>
|
||||
<div> {{.}} </div>
|
||||
<a href="/timeline"> Home </a>
|
||||
<div class="page-title"> Error </div>
|
||||
<div class="error-text"> {{.}} </div>
|
||||
<div>
|
||||
<a href="/timeline">Home</a>
|
||||
<a href="/signin">Sign In</a>
|
||||
</div>
|
||||
{{template "footer.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}}
|
||||
|
|
|
@ -4,11 +4,12 @@
|
|||
|
||||
<form class="timeline-post-form" action="/post" method="POST" enctype="multipart/form-data">
|
||||
<label for="post-content"> New Post </label>
|
||||
<br/>
|
||||
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5"></textarea>
|
||||
<br/>
|
||||
Attachments <input id="post-file-picker" type="file" name="attachments" multiple>
|
||||
<br/>
|
||||
<div class="post-content-container">
|
||||
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5"></textarea>
|
||||
</div>
|
||||
<div class="post-attachment-div">
|
||||
Attachments <input id="post-file-picker" type="file" name="attachments" multiple>
|
||||
</div>
|
||||
<button type="submit"> Post </button>
|
||||
</form>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue