aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/channel.tpl
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-01 08:02:03 +1000
committerredmatrix <git@macgirvin.com>2016-05-01 08:02:03 +1000
commit9446d0cbb463af6a256efebf97e10618469f1193 (patch)
tree3704de63c7188086ea6a5399094dfde170afaa69 /view/tpl/channel.tpl
parent8a41e2a011bd1c69c138fb75d138ed2bb4bf779f (diff)
parent3fe8fc0aa80a03fc63905e1e80999e6ccb8672e8 (diff)
downloadvolse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.tar.gz
volse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.tar.bz2
volse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.zip
Merge pull request #362 from Treer/fontawesome
Update Font-Awesome to 4.6.1
Diffstat (limited to 'view/tpl/channel.tpl')
-rwxr-xr-xview/tpl/channel.tpl12
1 files changed, 6 insertions, 6 deletions
diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl
index d306f0aa0..1a84f1e66 100755
--- a/view/tpl/channel.tpl
+++ b/view/tpl/channel.tpl
@@ -3,11 +3,11 @@
{{if $channel.default_links}}
{{if $channel.default}}
<div>
- <i class="icon-check"></i>&nbsp;{{$msg_default}}
+ <i class="fa fa-check-square-o"></i>&nbsp;{{$msg_default}}
</div>
{{else}}
<a href="manage/{{$channel.channel_id}}/default" class="make-default-link">
- <i class="icon-check-empty"></i>&nbsp;{{$msg_make_default}}
+ <i class="fa fa-square-o"></i>&nbsp;{{$msg_make_default}}
</a>
{{/if}}
{{/if}}
@@ -17,10 +17,10 @@
</div>
<h3>
{{if $selected == $channel.channel_id}}
- <i class="selected-channel icon-circle" title="{{$msg_selected}}"></i>
+ <i class="selected-channel fa fa-circle" title="{{$msg_selected}}"></i>
{{/if}}
{{if $channel.delegate}}
- <i class="icon-circle-arrow-right" title="{{$delegated_desc}}"></i>
+ <i class="fa fa-arrow-circle-right" title="{{$delegated_desc}}"></i>
{{/if}}
{{if $selected != $channel.channel_id}}<a href="{{$channel.link}}" title="{{$channel.channel_name}}">{{/if}}
{{$channel.channel_name}}
@@ -37,11 +37,11 @@
<div class="channel-notifications-wrapper">
{{if !$channel.delegate}}
<div class="channel-notification">
- <i class="icon-envelope{{if $channel.mail != 0}} new-notification{{/if}}"></i>
+ <i class="fa fa-envelope{{if $channel.mail != 0}} new-notification{{/if}}"></i>
{{if $channel.mail != 0}}<a href="manage/{{$channel.channel_id}}/mail/combined">{{/if}}{{$channel.mail|string_format:$mail_format}}{{if $channel.mail != 0}}</a>{{/if}}
</div>
<div class="channel-notification">
- <i class="icon-user{{if $channel.intros != 0}} new-notification{{/if}}"></i>
+ <i class="fa fa-user{{if $channel.intros != 0}} new-notification{{/if}}"></i>
{{if $channel.intros != 0}}<a href='manage/{{$channel.channel_id}}/connections/ifpending'>{{/if}}{{$channel.intros|string_format:$intros_format}}{{if $channel.intros != 0}}</a>{{/if}}
</div>
{{/if}}