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:
authorWolfgang Faust <wolfgangmcq@gmail.com>2019-08-29 18:53:01 +0300
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-08-29 18:53:01 +0300
commite5be205a2384435a67ccff72f8b33df37efd54e7 (patch)
treedfd75d8b9a0d5e602af2e420b8cf5f3a9178b865 /app
parentb51770c66acf4ed7f1aa1df0019abcdb0e4cc130 (diff)
Make some buttons green again
Fix missing .btn-success class on the following buttons: * 'Create milestone' button * Secondary button on profile tabs `btn-create` was an old class which was was removed in !23232 and replaced with `btn-success`, but these two seem to have been missed in the process.
Diffstat (limited to 'app')
-rw-r--r--app/views/shared/empty_states/_profile_tabs.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/empty_states/_profile_tabs.html.haml b/app/views/shared/empty_states/_profile_tabs.html.haml
index 6da40e1b059..98a5a5953d0 100644
--- a/app/views/shared/empty_states/_profile_tabs.html.haml
+++ b/app/views/shared/empty_states/_profile_tabs.html.haml
@@ -12,7 +12,7 @@
%p= current_user_empty_message_description
- if secondary_button_link.present?
- = link_to secondary_button_label, secondary_button_link, class: 'btn btn-create btn-inverted'
+ = link_to secondary_button_label, secondary_button_link, class: 'btn btn-success btn-inverted'
= link_to primary_button_label, primary_button_link, class: 'btn btn-success'
- else