Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Bruijn <tom@tomdebruijn.com>2014-03-26 11:25:02 +0400
committerTom de Bruijn <tom@tomdebruijn.com>2014-03-28 16:22:43 +0400
commitce857b7cc983172e35dca36f950864d693cfdf2b (patch)
tree819e77d7d589e8424b82ab3499c450208bc1ab5d /app/views/admin/groups/show.html.haml
parentb7225bead8ecf8664c898029648925556be8553d (diff)
Improve alignment of labels in .well-list items
Diffstat (limited to 'app/views/admin/groups/show.html.haml')
-rw-r--r--app/views/admin/groups/show.html.haml5
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