diff options
| author | r <r@freesoftwareextremist.com> | 2020-01-11 10:51:33 +0000 | 
|---|---|---|
| committer | r <r@freesoftwareextremist.com> | 2020-01-11 10:51:33 +0000 | 
| commit | 8607f16212c9537751030c717dbfb3454e66ca23 (patch) | |
| tree | 78dc7e4e08ca6b1d2b0a800a223973e8e05ff857 /templates | |
| parent | 2a777001022ec3f8618ce3a1c696b6317ed36111 (diff) | |
| download | bloat-8607f16212c9537751030c717dbfb3454e66ca23.tar.gz bloat-8607f16212c9537751030c717dbfb3454e66ca23.zip  | |
Add status reply preview in fluoride mode
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/status.tmpl | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/templates/status.tmpl b/templates/status.tmpl index d996eec..9c9d55d 100644 --- a/templates/status.tmpl +++ b/templates/status.tmpl @@ -44,14 +44,19 @@  			{{end}}  			<div class="status-reply-container">  				{{if .InReplyToID}} -				<img class="icon" src="/static/icons/mail-forward.png" alt="reply to" /> -				<a class="status-reply-to" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}"> reply to {{.Pleroma.InReplyToAccountAcct}} </a> +				<div class="status-reply-to"> +					<a class="status-reply-to-link" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}">  +						<img class="icon" src="/static/icons/mail-forward.png" alt="reply to" /> reply to {{.Pleroma.InReplyToAccountAcct}}  +					</a> +				</div>  				{{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}  				{{end}}  				{{if .ShowReplies}}  				{{if index .ReplyMap .ID}} <span class="status-reply-text"> replies: </span> {{end}}  				{{range index .ReplyMap .ID}} -				<a class="status-reply" href="#status-{{.ID}}">#{{.Number}}</a> +				<div class="status-reply"> +					<a class="status-reply-link" href="#status-{{.ID}}">#{{.Number}}</a> +				</div>  				{{end}}  				{{end}}  			</div>  | 
