Fix CSS for "Cancel" button in workflow execution

This patch fixes wrong font type and size for the button appearing
on workflow execution. Style used right now is consistent with the
one used by buttons in workflow creation.

Change-Id: I807ab8ada2fc98ac5e1ff8ae7e11b8c8d95497c1
Closes-bug: #1716943
This commit is contained in:
Mateusz Kowalski 2017-09-13 17:10:19 +02:00
parent c028617044
commit 4cc6d18a22
1 changed files with 1 additions and 1 deletions

View File

@ -20,5 +20,5 @@
{% block modal-footer %}
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Execute" %}" />
<a href="{% url 'horizon:mistral:workflows:index' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
<a href="{% url 'horizon:mistral:workflows:index' %}" class="btn btn-default cancel">{% trans "Cancel" %}</a>
{% endblock %}