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.
This commit is contained in:
Wolfgang Faust 2019-08-29 15:53:01 +00:00 committed by Annabel Dunstone Gray
parent b51770c66a
commit e5be205a23
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,5 @@
---
title: Fix style of secondary profile tab buttons.
merge_request: 32010
author: Wolfgang Faust
type: fixed