diff options
author | Tom de Bruijn <tom@tomdebruijn.com> | 2014-03-26 08:25:02 +0100 |
---|---|---|
committer | Tom de Bruijn <tom@tomdebruijn.com> | 2014-03-28 13:22:43 +0100 |
commit | ce857b7cc983172e35dca36f950864d693cfdf2b (patch) | |
tree | 819e77d7d589e8424b82ab3499c450208bc1ab5d /app/views/admin/users/show.html.haml | |
parent | b7225bead8ecf8664c898029648925556be8553d (diff) | |
download | gitlab-ce-ce857b7cc983172e35dca36f950864d693cfdf2b.tar.gz |
Improve alignment of labels in .well-list items
Diffstat (limited to 'app/views/admin/users/show.html.haml')
-rw-r--r-- | app/views/admin/users/show.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/admin/users/show.html.haml b/app/views/admin/users/show.html.haml index d66119e2712..764b34499ab 100644 --- a/app/views/admin/users/show.html.haml +++ b/app/views/admin/users/show.html.haml @@ -124,7 +124,8 @@ - @user.users_groups.each do |user_group| - group = user_group.group %li.users_group - %strong= link_to group.name, admin_group_path(group) + %span{class: ("list-item-name" unless user_group.owner?)} + %strong= link_to group.name, admin_group_path(group) .pull-right %span.light= user_group.human_access - unless user_group.owner? |