diff --git a/app/views/shared/_answerbox.html.haml b/app/views/shared/_answerbox.html.haml index f558aa0e..17cb533c 100644 --- a/app/views/shared/_answerbox.html.haml +++ b/app/views/shared/_answerbox.html.haml @@ -10,11 +10,29 @@ .panel-body %p= a.content - if @user.nil? - %p.text-muted - Answered by - %a{href: show_user_profile_path(a.user.screen_name)} - %img.img-rounded.img-answerbox-small{src: gravatar_url(a.user)} - %span= a.user.screen_name - - if privileged? a.user - %button.btn.btn-sm.btn-danger{name: 'ab-destroy', 'data-a-id' => a.id} - Delete \ No newline at end of file + .row + .col-md-6.col-sm-4.col-xs-12.text-left.text-muted + Answered by + %a{href: show_user_profile_path(a.user.screen_name)} + %img.img-rounded.img-answerbox-small{src: gravatar_url(a.user)} + %span= a.user.screen_name + .col-md-6.col-sm-8.col-xs-12.text-right.text-muted + x users smiled at this + %a.btn.btn-info.btn-sm + %i.fa.fa-smile + %a.btn.btn-primary.btn-sm + %i.fa.fa-comments + - if privileged? a.user + %button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id} + %i.fa.fa-trash-o + - else + .row + .col-md-6.col-md-offset-6.col-sm-8.col-sm-offset-4.col-xs-12.text-right.text-muted + x users smiled at this + %a.btn.btn-info.btn-sm + %i.fa.fa-smile + %a.btn.btn-primary.btn-sm + %i.fa.fa-comments + - if privileged? a.user + %button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id} + %i.fa.fa-trash-o \ No newline at end of file