diff --git a/app/assets/stylesheets/application.css.sass b/app/assets/stylesheets/application.css.sass index 262023718..9b7d2609c 100644 --- a/app/assets/stylesheets/application.css.sass +++ b/app/assets/stylesheets/application.css.sass @@ -622,6 +622,17 @@ form.new_comment h4 :font-weight bold + #sharing_message + :font-size smaller + :align middle + + span + :vertical-align middle + + img + :vertical-align middle + :margin 0.5em + #photo_container :text :align center diff --git a/app/helpers/people_helper.rb b/app/helpers/people_helper.rb index c823f4a8e..bf019f997 100644 --- a/app/helpers/people_helper.rb +++ b/app/helpers/people_helper.rb @@ -90,7 +90,7 @@ module PeopleHelper def sharing_message(person, contact) if contact.sharing? - content_tag(:div, :class => 'info') do + content_tag(:div, :id => 'sharing_message') do image_tag('icons/check_yes_ok.png') + content_tag(:span, I18n.t('people.helper.is_sharing', :name => person.name)) end