diff options
| author | r <r@freesoftwareextremist.com> | 2020-01-01 09:40:47 +0000 | 
|---|---|---|
| committer | r <r@freesoftwareextremist.com> | 2020-01-01 09:40:47 +0000 | 
| commit | 2f4cd260fd624f964be09f1dad20331c418fdf42 (patch) | |
| tree | 0e3fa864fbd1138dfbb1abdb13cea608b41210b4 /templates | |
| parent | ecf284453a3d165231688368153e556e5776028b (diff) | |
| download | bloat-2f4cd260fd624f964be09f1dad20331c418fdf42.tar.gz bloat-2f4cd260fd624f964be09f1dad20331c418fdf42.zip  | |
Use png icons instead of font icons
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/header.tmpl | 1 | ||||
| -rw-r--r-- | templates/notification.tmpl | 18 | ||||
| -rw-r--r-- | templates/postform.tmpl | 8 | ||||
| -rw-r--r-- | templates/status.tmpl | 26 | ||||
| -rw-r--r-- | templates/user.tmpl | 2 | 
5 files changed, 27 insertions, 28 deletions
diff --git a/templates/header.tmpl b/templates/header.tmpl index 8d05014..1ff15d6 100644 --- a/templates/header.tmpl +++ b/templates/header.tmpl @@ -8,6 +8,5 @@  	{{if .CustomCSS}}  	<link rel="stylesheet" href="{{.CustomCSS}}">  	{{end}} -	<link rel="stylesheet" href="/static/fonts/fork-awesome.css">  </head>  <body> diff --git a/templates/notification.tmpl b/templates/notification.tmpl index c4f6f28..d68382f 100644 --- a/templates/notification.tmpl +++ b/templates/notification.tmpl @@ -12,10 +12,10 @@  			</a>  		</div>  		<div> -			<div> +			<div class="notification-info-text">  				<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>   -				<i class="fa fa-user-plus"></i> -				followed you +				<img class="icon" src="/static/icons/user-plus.png" alt="followed" /> +				<span> followed you </span>  			</div>  			<div class="notification-follow-uname">  				@{{.Account.Acct}} @@ -34,10 +34,10 @@  			</a>  		</div>  		<div> -			<div> +			<div class="notification-info-text">  				<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>   -				<i class="fa fa-retweet retweeted"></i> -				retweeted your post +				<img class="icon" src="/static/icons/retweeted.png" alt="retweeted" /> +				<span> retweeted your post </span>  			</div>  			{{template "status" .Status}}  		</div> @@ -51,10 +51,10 @@  			</a>  		</div>  		<div> -			<div> +			<div class="notification-info-text">  				<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>   -				<i class="fa fa-star liked"></i> -				liked your post +				<img class="icon" src="/static/icons/liked.png" alt="liked" /> +				<span> liked your post </span>  			</div>  			{{template "status" .Status}}  		</div> diff --git a/templates/postform.tmpl b/templates/postform.tmpl index a79f86b..4e2d4a4 100644 --- a/templates/postform.tmpl +++ b/templates/postform.tmpl @@ -1,12 +1,12 @@  <form class="post-form" action="/post" method="POST" enctype="multipart/form-data">  	{{if .ReplyContext}}  	<input type="hidden" name="reply_to_id" value="{{.ReplyContext.InReplyToID}}" /> -	<label for="post-content"> Reply to {{.ReplyContext.InReplyToName}} </label> +	<label for="post-content" class="post-form-title"> Reply to {{.ReplyContext.InReplyToName}} </label>  	{{else}} -	<label for="post-content"> New post </label> +	<label for="post-content" class="post-form-title"> New post </label>  	{{end}} -	<a class="post-form-emoji-link" href="/emojis" target="_blank"> -		<i class="fa fa-smile-o" title="emoji reference"></i> +	<a class="post-form-emoji-link" href="/emojis" target="_blank" title="emoji reference"> +		<img class="icon post-emoji" src="/static/icons/smile-o.png" alt="emojis" />  	</a>  	<div class="post-form-content-container">  		<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea> diff --git a/templates/status.tmpl b/templates/status.tmpl index 2013f47..7facba2 100644 --- a/templates/status.tmpl +++ b/templates/status.tmpl @@ -5,7 +5,7 @@  			<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />  		</a>  		<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>   -		<i class="fa fa-retweet retweeted"></i> +		<img class="icon" src="/static/icons/retweeted.png" alt="retweeted" />  		retweeted  	</div>  	{{template "status" .Reblog}} @@ -28,23 +28,23 @@  				</a>  				<a class="status-visibility">  					{{if eq .Visibility "public"}} -					<i class="fa fa-globe" title="Public"></i> +					<img class="icon" src="/static/icons/globe.png" alt="Public" title="Public" />  					{{else if eq .Visibility "unlisted"}} -					<i class="fa fa-unlock-alt" title="Unlisted"></i> +					<img class="icon" src="/static/icons/unlock-alt.png" alt="Unlisted" title="Unlisted" />  					{{else if eq .Visibility "private"}} -					<i class="fa fa-lock" title="Private"></i> +					<img class="icon" src="/static/icons/lock.png" alt="Private" title="Private" />  					{{else if eq .Visibility "direct"}} -					<i class="fa fa-envelope" title="Direct"></i> +					<img class="icon" src="/static/icons/envelope.png" alt="Direct" title="Direct" />  					{{end}}  				</a>  				<a class="remote-link" href="{{.URL}}" target="_blank" title="source"> -					<i class="fa fa-link"></i> +					<img class="icon" src="/static/icons/link.png" alt="source" />  				</a>  			</div>  			{{end}}  			<div class="status-reply-container">  				{{if .InReplyToID}} -				<i class="fa fa-mail-forward"></i> +				<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>  				{{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}  				{{end}} @@ -88,7 +88,7 @@  			<div class="status-action-container">   				<div class="status-action">  					<a class="status-you" href="/thread/{{.ID}}?reply=true#status-{{.ID}}" title="reply">  -						<i class="fa fa-reply"></i> +						<img class="icon" src="/static/icons/reply.png" alt="reply" />  					</a>  					<a class="status-action-count" href="/thread/{{.ID}}#status-{{.ID}}" {{if .ThreadInNewTab}}target="_blank"{{end}}>  						<span> {{DisplayInteractionCount .RepliesCount}} </span> @@ -97,16 +97,16 @@  				<div class="status-action">  					{{if or (eq .Visibility "private") (eq .Visibility "direct")}}  					<a class="status-retweet" title="this status cannot be retweeted">  -						<i class="fa fa-retweet"></i> +						<img class="icon" src="/static/icons/retweet.png" alt="retweet" />  					</a>  					{{else}}  					{{if .Reblogged}}  					<a class="status-retweet" href="/unretweet/{{.ID}}" title="undo retweet">  -						<i class="fa fa-retweet retweeted"></i> +						<img class="icon" src="/static/icons/retweeted.png" alt="undo retweet" />  					</a>  					{{else}}  					<a class="status-retweet" href="/retweet/{{.ID}}" title="retweet">  -						<i class="fa fa-retweet"></i> +						<img class="icon" src="/static/icons/retweet.png" alt="retweet" />  					</a>  					{{end}}  					{{end}} @@ -117,11 +117,11 @@  				<div class="status-action">  					{{if .Favourited}}  					<a class="status-like" href="/unlike/{{.ID}}" title="unlike">  -						<i class="fa fa-star liked"></i> +						<img class="icon" src="/static/icons/liked.png" alt="unlike" />  					</a>  					{{else}}  					<a class="status-like" href="/like/{{.ID}}" title="like">  -						<i class="fa fa-star-o"></i> +						<img class="icon" src="/static/icons/star-o.png" alt="like" />  					</a>  					{{end}}  					<a class="status-action-count" href="/likedby/{{.ID}}" title="click to see the the list">  diff --git a/templates/user.tmpl b/templates/user.tmpl index 0c134af..53de635 100644 --- a/templates/user.tmpl +++ b/templates/user.tmpl @@ -14,7 +14,7 @@  			<span class="status-dname"> {{EmojiFilter .User.DisplayName .User.Emojis}} </span>    			<span class="status-uname"> {{.User.Acct}} </span>  			<a class="remote-link" href="{{.User.URL}}" target="_blank" title="remote profile"> -				<i class="fa fa-link"></i> +				<img class="icon" src="/static/icons/link.png" alt="link" />  			</a>  		</div>  		<div>  | 
