diff --git a/app/assets/images/rss.ico b/app/assets/images/rss.ico new file mode 100644 index 000000000..a4ef665db Binary files /dev/null and b/app/assets/images/rss.ico differ diff --git a/app/assets/stylesheets/design/custom.scss b/app/assets/stylesheets/design/custom.scss index bbb206a7d..78a929845 100644 --- a/app/assets/stylesheets/design/custom.scss +++ b/app/assets/stylesheets/design/custom.scss @@ -943,3 +943,7 @@ div#git_help_data p { display: block; font-size: 0.9em; } + +.atom_icon { + vertical-align: top; +} diff --git a/app/views/activity_feeds/index.html.haml b/app/views/activity_feeds/index.html.haml index f7ee1c901..a8bdf4758 100644 --- a/app/views/activity_feeds/index.html.haml +++ b/app/views/activity_feeds/index.html.haml @@ -1,5 +1,7 @@ -set_meta_tags :title => nil -%h3.fix= t("layout.activity_feed.header") +%h3.fix + = t("layout.activity_feed.header") + = link_to image_tag("rss.ico", :width => '15px', :height => '15px', :class => 'atom_icon'), atom_activity_feeds_path(:format => 'atom', :token => current_user.authentication_token) =render 'list' - content_for :sidebar, render('sidebar')