diff options
author | Marin Jankovski <marin@gitlab.com> | 2015-02-24 08:06:22 +0000 |
---|---|---|
committer | Marin Jankovski <marin@gitlab.com> | 2015-02-24 08:06:22 +0000 |
commit | 7561b1c2a486ae57e9fbebadadbe1269bfdba6a0 (patch) | |
tree | 7fa0050ee54f5ba92ab476732a5b8b9e5d3f52bf | |
parent | 5e2098feb4b8ecbae3854172d28c816827669d53 (diff) | |
parent | 5ce2d44b136aae8e9e42397474a0e75bc6b32ded (diff) | |
download | gitlab-ce-7561b1c2a486ae57e9fbebadadbe1269bfdba6a0.tar.gz |
Merge branch 'profile_tooltip_addition' into 'master'
Added Profile tooltip
For consistency sake, the profile in the navbar has a tooltip.
Fixes #2007
See merge request !1572
-rw-r--r-- | app/views/layouts/_head_panel.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_head_panel.html.haml b/app/views/layouts/_head_panel.html.haml index 77bfe4f996e..d5928d2ed25 100644 --- a/app/views/layouts/_head_panel.html.haml +++ b/app/views/layouts/_head_panel.html.haml @@ -42,7 +42,7 @@ = link_to destroy_user_session_path, class: "logout", method: :delete, title: "Logout", class: 'has_bottom_tooltip', 'data-original-title' => 'Logout' do %i.fa.fa-sign-out %li.hidden-xs - = link_to current_user, class: "profile-pic", id: 'profile-pic' do + = link_to current_user, class: "profile-pic has_bottom_tooltip", id: 'profile-pic', 'data-original-title' => 'Your profile' do = image_tag avatar_icon(current_user.email, 60), alt: 'User activity' = render 'shared/outdated_browser' |