Add My Activity icon mobile

This commit is contained in:
movilla 2012-10-26 22:47:43 +02:00
parent 6302181582
commit c9b58c9ff6
4 changed files with 18 additions and 16 deletions

View file

@ -19,6 +19,7 @@
## Features
* Add "My Activity" icon mobile. [#3687](https://github.com/diaspora/diaspora/pull/3687)
* Add password_confirmation field to registration page. [#3647](https://github.com/diaspora/diaspora/pull/3647)
## Bug Fixes

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

View file

@ -292,6 +292,8 @@ body {
#nav_badges {
display: inline-block;
float: right;
padding: 4px 12px;
}
#nav_badges a:hover {
text-decoration: none; }

View file

@ -49,12 +49,11 @@
.navbar-inner
.container{:style => "position: relative;"}
= link_to(image_tag('branding/header-logo2x.png', :height => 40, :width => 40, :id => 'header_title'), stream_path)
- if user_signed_in?
#header-nav
.activity-nav
= link_to(t('streams.activity.title'), activity_stream_path)
- if user_signed_in?
#nav_badges
.badge{:class => "badge-inverse", :id => "contacts_badge"}
= link_to(image_tag('icons/my_activity.png', :height => 16, :width => 16), activity_stream_path)
.badge{:class => "badge-inverse", :id => "notification_badge"}
= link_to(image_tag('icons/notifications_grey.png', :height => 16, :width => 16, :id => 'notification-flag'), notifications_path)
- if current_user.unread_notifications.count > 0
@ -69,9 +68,6 @@
= link_to(image_tag('icons/search_grey.png', :height => 14, :width => 14), people_path)
.badge{:class => "badge-inverse", :id => "contacts_badge"}
= link_to(image_tag('icons/user_grey.png', :height => 16, :width => 16), contacts_path)
- if user_signed_in?
.right
- if yield(:header_action).present?
= yield(:header_action)
- else
@ -79,6 +75,9 @@
#main.container{:role => "main"}
.row
- if current_page?(:activity_stream)
%h3
= t('streams.activity.title')
= yield
- if user_signed_in?