summaryrefslogtreecommitdiff
path: root/app/views/snippets
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2016-12-07 15:22:16 -0600
committerMike Greiling <mike@pixelcog.com>2016-12-10 00:57:23 -0600
commitc41b7e8a2f4df9a3a320cbf1b5b60a43709ca9b6 (patch)
tree132e2495e97c0b8e55ccf4c05ceb292d8c6f3802 /app/views/snippets
parent12a8095cc7a30469c4546af1ed801c785b0ebace (diff)
downloadgitlab-ce-c41b7e8a2f4df9a3a320cbf1b5b60a43709ca9b6.tar.gz
invert snippet action buttons
Diffstat (limited to 'app/views/snippets')
-rw-r--r--app/views/snippets/_actions.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/snippets/_actions.html.haml b/app/views/snippets/_actions.html.haml
index ebb3dfe5a34..95fc7198104 100644
--- a/app/views/snippets/_actions.html.haml
+++ b/app/views/snippets/_actions.html.haml
@@ -3,10 +3,10 @@
= link_to edit_snippet_path(@snippet), class: "btn btn-grouped" do
Edit
- if can?(current_user, :admin_personal_snippet, @snippet)
- = link_to snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-danger", title: 'Delete Snippet' do
+ = link_to snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-inverted btn-remove", title: 'Delete Snippet' do
Delete
- if current_user
- = link_to new_snippet_path, class: "btn btn-grouped btn-create", title: "New snippet" do
+ = link_to new_snippet_path, class: "btn btn-grouped btn-inverted btn-create", title: "New snippet" do
New snippet
- if current_user
.visible-xs-block.dropdown