diff options
author | Kushal Pandya <kushalspandya@gmail.com> | 2017-03-23 23:35:50 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2017-03-23 23:35:50 +0000 |
commit | c2fc50c291f05253444d04ef2a9f3df376370c60 (patch) | |
tree | 080669e472b08f2164f0efedaa57706467c6b65f /app/views/users | |
parent | 59f2724c1ffe1268e5bc778e285e143b0b82d07a (diff) | |
download | gitlab-ce-c2fc50c291f05253444d04ef2a9f3df376370c60.tar.gz |
Add tooltip and accessibility label for profile cover buttons
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/show.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 57125f36ed6..601187455b3 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -13,7 +13,7 @@ .cover-block.user-cover-block .cover-controls - if @user == current_user - = link_to profile_path, class: 'btn btn-gray' do + = link_to profile_path, class: 'btn btn-gray has-tooltip', title: 'Edit profile', 'aria-label': 'Edit profile' do = icon('pencil') - elsif current_user - if @user.abuse_report @@ -24,7 +24,7 @@ = link_to new_abuse_report_path(user_id: @user.id, ref_url: request.referrer), class: 'btn btn-gray', title: 'Report abuse', data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do = icon('exclamation-circle') - = link_to user_path(@user, rss_url_options), class: 'btn btn-gray' do + = link_to user_path(@user, rss_url_options), class: 'btn btn-gray has-tooltip', title: 'Subscribe', 'aria-label': 'Subscribe' do = icon('rss') - if current_user && current_user.admin? = link_to [:admin, @user], class: 'btn btn-gray', title: 'View user in admin area', |