summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-07-12 13:51:15 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-07-12 13:51:15 +0000
commit850bb6db2facf570a7e0933bbf555f764aeac601 (patch)
treecb994b9fd17a263449356b93e1ba58cdf3481bb5 /app/views/groups
parent97999fd4203846ad807de18eab5d7a2176344ce1 (diff)
parentde1578185ecc0a439d877dbe1bc39a15e653c04b (diff)
downloadgitlab-ce-850bb6db2facf570a7e0933bbf555f764aeac601.tar.gz
Merge branch 'dz-small-ui-improvements' into 'master'
Remove icons from some buttons which already has text Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/18324 * remove plus icon from new milestone button on group milestone page * remove plus icon from new project button on group projects page * remove plus icon from milestone page See merge request !5050
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/milestones/index.html.haml1
-rw-r--r--app/views/groups/projects.html.haml1
2 files changed, 0 insertions, 2 deletions
diff --git a/app/views/groups/milestones/index.html.haml b/app/views/groups/milestones/index.html.haml
index 121a7de3ad7..a8fdbd8c426 100644
--- a/app/views/groups/milestones/index.html.haml
+++ b/app/views/groups/milestones/index.html.haml
@@ -6,7 +6,6 @@
.nav-controls
- if can?(current_user, :admin_milestones, @group)
= link_to new_group_milestone_path(@group), class: "btn btn-new" do
- = icon('plus')
New Milestone
.row-content-block
diff --git a/app/views/groups/projects.html.haml b/app/views/groups/projects.html.haml
index c2f2d9912f7..33fee334d93 100644
--- a/app/views/groups/projects.html.haml
+++ b/app/views/groups/projects.html.haml
@@ -7,7 +7,6 @@
- if can? current_user, :admin_group, @group
.controls
= link_to new_project_path(namespace_id: @group.id), class: "btn btn-sm btn-success" do
- = icon('plus')
New Project
%ul.well-list
- @projects.each do |project|