diff options
author | Izaak Alpert <ialpert@blackberry.com> | 2013-06-06 12:02:58 -0400 |
---|---|---|
committer | Izaak Alpert <ialpert@blackberry.com> | 2013-06-26 08:53:03 -0400 |
commit | c1b05e7b8638e562ded689ae9a3ae1990fb1d5a7 (patch) | |
tree | f232cab84a53b1a4af03a3db5f0e19a1f6783b89 /app/views/users/show.html.haml | |
parent | 579c0b979190274ca51f50fea1cdfce31c3ec77a (diff) | |
download | gitlab-ce-c1b05e7b8638e562ded689ae9a3ae1990fb1d5a7.tar.gz |
Gravatar image fixes when gravatar unavailable
-Alt text to image was set to hash, which would make the page display hashes if the image/gravatar wasn't available, set the alt text to '', and made the main tool bar image follow the same or similar constraints as the other images (.avatar, .s26)
Conflicts:
app/assets/stylesheets/themes/ui_bb.scss
app/views/snippets/_snippet.html.haml
Change-Id: I42e1e86f535486fd2556d4b3e4591f3676eea033
Diffstat (limited to 'app/views/users/show.html.haml')
-rw-r--r-- | app/views/users/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 10bd90b166a..548458e0d3b 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -1,7 +1,7 @@ .row .span8 %h3.page_title - = image_tag gravatar_icon(@user.email, 90), class: "avatar s90" + = image_tag gravatar_icon(@user.email, 90), class: "avatar s90", alt: '' = @user.name - if @user == current_user .pull-right |