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/groups | |
| parent | b7225bead8ecf8664c898029648925556be8553d (diff) | |
| download | gitlab-ce-ce857b7cc983172e35dca36f950864d693cfdf2b.tar.gz | |
Improve alignment of labels in .well-list items
Diffstat (limited to 'app/views/admin/groups')
| -rw-r--r-- | app/views/admin/groups/show.html.haml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/admin/groups/show.html.haml b/app/views/admin/groups/show.html.haml index 252111875fa..6055865b4cb 100644 --- a/app/views/admin/groups/show.html.haml +++ b/app/views/admin/groups/show.html.haml @@ -70,8 +70,9 @@ - @group.users_groups.order('group_access DESC').each do |member| - user = member.user %li{class: dom_class(user)} - %strong - = link_to user.name, admin_user_path(user) + .list-item-name + %strong + = link_to user.name, admin_user_path(user) %span.pull-right.light = member.human_access = link_to group_users_group_path(@group, member), data: { confirm: remove_user_from_group_message(@group, user) }, method: :delete, remote: true, class: "btn-tiny btn btn-remove", title: 'Remove user from group' do |
