From 188c6f326b991793239c47751ef45226c0cd8890 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Oct 2016 00:26:00 +0200 Subject: Making public pages responsive, removing reblogs/favs counts from them --- app/views/stream_entries/_status.html.haml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'app/views/stream_entries') 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 -- cgit