kinda fix button positions on firefox
This commit is contained in:
parent
6ddcb16694
commit
880334d701
|
@ -15,36 +15,18 @@
|
||||||
<textarea id="post-content" name="content" class="post-content" cols="34" rows="5" accesskey="E" title="Edit post (E)">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
|
<textarea id="post-content" name="content" class="post-content" cols="34" rows="5" accesskey="E" title="Edit post (E)">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{if gt (len .Formats) 0}}
|
<select id="post-visilibity" name="visibility" {{if .ReplyContext}}{{if .ReplyContext.ForceVisibility}}disabled{{end}}{{end}} accesskey="S" title="Scope (S)">
|
||||||
<span class="post-form-field">
|
<option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option>
|
||||||
{{$defFormat := .DefaultFormat}}
|
<option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option>
|
||||||
<select id="post-format" name="format" accesskey="F" title="Format (F)">
|
<option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option>
|
||||||
{{range .Formats}}
|
<option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option>
|
||||||
<option value="{{.Type}}" {{if eq $defFormat .Type}}selected{{end}}>{{.Name}}</option>
|
</select>
|
||||||
{{end}}
|
<label for="nsfw-checkbox"> NSFW </label>
|
||||||
</select>
|
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on" accesskey="N" title="NSFW (N)">
|
||||||
</span>
|
<br>
|
||||||
{{end}}
|
<button type="submit" accesskey="P" title="Post (P)"> Post </button>
|
||||||
<span class="post-form-field">
|
<input id="post-file-picker" type="file" name="attachments" multiple accesskey="A" title="Attachments (A)">
|
||||||
<select id="post-visilibity" name="visibility" {{if .ReplyContext}}{{if .ReplyContext.ForceVisibility}}disabled{{end}}{{end}} accesskey="S" title="Scope (S)">
|
|
||||||
<option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option>
|
|
||||||
<option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option>
|
|
||||||
<option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option>
|
|
||||||
<option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option>
|
|
||||||
</select>
|
|
||||||
</span>
|
|
||||||
<span class="post-form-field">
|
|
||||||
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on" accesskey="N" title="NSFW (N)">
|
|
||||||
<label for="nsfw-checkbox"> NSFW </label>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<span class="post-form-field">
|
|
||||||
<input id="post-file-picker" type="file" name="attachments" multiple accesskey="A" title="Attachments (A)">
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<button type="submit" accesskey="P" title="Post (P)"> Post </button>
|
|
||||||
<button type="reset" title="Reset"> Reset </button>
|
|
||||||
</form>
|
</form>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue