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
path: root/app
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-22 17:28:39 +0300
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-22 17:28:39 +0300
commit98cdeed44c90580a0e51be7614e57dc65f87240d (patch)
treec73c4bcb4e1feb67488dab041b842246b3822528 /app
parentbc4a18ecb9e85a5ee51541ed25b2cb9c4a2768b5 (diff)
parent6f9e94dfc1da63b99ba3d9319f177495afa9ac18 (diff)
Merge branch '61324-non-project-snippet-new-snippet-button-should-be-green-outline' into 'master'
Give 'New Snippet' button green outline Closes #61324 See merge request gitlab-org/gitlab-ce!28559
Diffstat (limited to 'app')
-rw-r--r--app/views/snippets/_actions.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/snippets/_actions.html.haml b/app/views/snippets/_actions.html.haml
index ef8664e6f47..9952f373156 100644
--- a/app/views/snippets/_actions.html.haml
+++ b/app/views/snippets/_actions.html.haml
@@ -7,7 +7,7 @@
- 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-inverted btn-remove", title: _('Delete Snippet') do
= _("Delete")
- = link_to new_snippet_path, class: "btn btn-grouped btn-inverted btn-create", title: _("New snippet") do
+ = link_to new_snippet_path, class: "btn btn-grouped btn-success btn-inverted", title: _("New snippet") do
= _("New snippet")
- if @snippet.submittable_as_spam_by?(current_user)
= link_to _('Submit as spam'), mark_as_spam_snippet_path(@snippet), method: :post, class: 'btn btn-grouped btn-spam', title: _('Submit as spam')