fix #1000 - Button style in Report file dialogue

This commit is contained in:
jpope777 2014-12-01 10:56:18 -06:00
parent 9d85dcdf11
commit b5ced2db1b
2 changed files with 3 additions and 3 deletions

View File

@ -130,11 +130,11 @@
{% if not report.is_archived_report() and {% if not report.is_archived_report() and
not (report.reported_user.has_privilege('admin') and not (report.reported_user.has_privilege('admin') and
not request.user.has_privilege('admin')) %} not request.user.has_privilege('admin')) %}
<input type=button value="{% trans %}Resolve{% endtrans %}" id=open_resolution_form /> <input type=button class="button_action" value="{% trans %}Resolve{% endtrans %}" id=open_resolution_form />
<form action="" method="POST" id=resolution_form> <form action="" method="POST" id=resolution_form>
{{ wtforms_util.render_divs(form) }} {{ wtforms_util.render_divs(form) }}
{{ csrf_token }} {{ csrf_token }}
<input type=submit id="submit_this_report" value="{% trans %}Resolve This Report{% endtrans %}"/> <input type=submit class="button_action_highlight" id="submit_this_report" value="{% trans %}Resolve This Report{% endtrans %}"/>
</form> </form>
<script> <script>
$(document).ready(function() { $(document).ready(function() {

View File

@ -78,6 +78,6 @@
{{- wtforms_util.render_divs(form) }} {{- wtforms_util.render_divs(form) }}
{{ csrf_token }} {{ csrf_token }}
<input type=submit value="{% trans %}File Report {% endtrans %}" /> <input type=submit class="button_action" value="{% trans %}File Report {% endtrans %}" />
</form> </form>
{% endblock %} {% endblock %}