summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-08 21:00:24 +0100
committerLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-08 21:00:24 +0100
commitf099e36c181d3f089a18dab20b5aa0cc982da0a1 (patch)
treea8745bada04806064a194364e646e29fb67c27b0
parentdbd6b2dc0ad4a379490cbb1ea23eee9d90526163 (diff)
downloadgitlab-ce-corrected-build-page-header-username-to-full-name.tar.gz
Change username full name back to only username on xs viewportscorrected-build-page-header-username-to-full-name
-rw-r--r--app/views/projects/builds/_user.html.haml8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/projects/builds/_user.html.haml b/app/views/projects/builds/_user.html.haml
index 75101b78652..83f299da651 100644
--- a/app/views/projects/builds/_user.html.haml
+++ b/app/views/projects/builds/_user.html.haml
@@ -1,5 +1,7 @@
by
%a{ href: user_path(@build.user) }
- = image_tag avatar_icon(@build.user, 24), class: "avatar s24"
- %strong{ data: { toggle: 'tooltip', placement: 'top', title: @build.user.to_reference } }
- = @build.user.name
+ %span.hidden-xs
+ = image_tag avatar_icon(@build.user, 24), class: "avatar s24"
+ %strong{ data: { toggle: 'tooltip', placement: 'top', title: @build.user.to_reference } }
+ = @build.user.name
+ %strong.visible-xs-inline= @build.user.to_reference