summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/assets/stylesheets/sections/dashboard.scss3
-rw-r--r--app/views/admin/projects/show.html.haml4
2 files changed, 3 insertions, 4 deletions
diff --git a/app/assets/stylesheets/sections/dashboard.scss b/app/assets/stylesheets/sections/dashboard.scss
index 15bfad96f6c..61331cee413 100644
--- a/app/assets/stylesheets/sections/dashboard.scss
+++ b/app/assets/stylesheets/sections/dashboard.scss
@@ -66,7 +66,7 @@
}
.project-row, .group-row {
- padding: 12px 15px !important;
+ padding: 10px 15px !important;
.namespace-name {
color: #666;
@@ -77,7 +77,6 @@
font-size: 16px;
}
-
.arrow {
float: right;
padding: 10px 5px;
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml
index 4544a9aa190..cecc84fe093 100644
--- a/app/views/admin/projects/show.html.haml
+++ b/app/views/admin/projects/show.html.haml
@@ -99,7 +99,7 @@
%ul.well-list.team_members
- @project.users_projects.each do |users_project|
- user = users_project.user
- %li
+ %li.users_project
%strong
= link_to user.name, admin_user_path(user)
.pull-right
@@ -107,5 +107,5 @@
%span.light Owner
- else
%span.light= users_project.human_access
- = link_to admin_project_member_path(@project, user), confirm: remove_from_project_team_message(@project, user), method: :delete, class: "btn btn-small btn-remove" do
+ = link_to project_team_member_path(@project, user), confirm: remove_from_project_team_message(@project, user), method: :delete, remote: true, class: "btn btn-small btn-remove" do
%i.icon-remove