diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 00:26:00 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 00:26:00 +0200 |
commit | 188c6f326b991793239c47751ef45226c0cd8890 (patch) | |
tree | ea0c2b7c4af03b793e1b08152e4b82953a265ea8 /app/views/stream_entries | |
parent | d74da1a89aef27ed78eb521a86b6412ef00acd0f (diff) |
Making public pages responsive, removing reblogs/favs counts from them
Diffstat (limited to 'app/views/stream_entries')
-rw-r--r-- | app/views/stream_entries/_status.html.haml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/app/views/stream_entries/_status.html.haml b/app/views/stream_entries/_status.html.haml index 6254d75e9..4e74fa131 100644 --- a/app/views/stream_entries/_status.html.haml +++ b/app/views/stream_entries/_status.html.haml @@ -23,18 +23,12 @@ = link_to TagManager.instance.url_for(proper_status(status).account), class: 'name' do %strong= display_name(proper_status(status).account) = "@#{proper_status(status).account.acct}" + + .header__right = link_to TagManager.instance.url_for(proper_status(status)), class: 'time' do %span{ title: proper_status(status).created_at } = relative_time(proper_status(status).created_at) - .header__right - .counter-btn{ class: reblogged_by_me_class(proper_status(status)) } - %i.fa.fa-retweet - %span.counter-number= proper_status(status).reblogs_count - .counter-btn{ class: favourited_by_me_class(proper_status(status)) } - %i.fa.fa-star - %span.counter-number= proper_status(status).favourites_count - .content= Formatter.instance.format(proper_status(status)) %ul.media-attachments |