aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjpope777 <jpope@jpope.org>2014-12-01 10:56:18 -0600
committerjpope777 <jpope@jpope.org>2014-12-01 10:56:18 -0600
commitb5ced2db1bb133407bca328c8e43634c1e9319c8 (patch)
tree19a7deac8b68f87fe7a6f5060b96bd62d6cbc236
parent9d85dcdf11d3229625d1860a13db44d8d450347c (diff)
downloadmediagoblin-b5ced2db1bb133407bca328c8e43634c1e9319c8.tar.lz
mediagoblin-b5ced2db1bb133407bca328c8e43634c1e9319c8.tar.xz
mediagoblin-b5ced2db1bb133407bca328c8e43634c1e9319c8.zip
fix #1000 - Button style in Report file dialogue
-rw-r--r--mediagoblin/templates/mediagoblin/moderation/report.html4
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/report.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/templates/mediagoblin/moderation/report.html b/mediagoblin/templates/mediagoblin/moderation/report.html
index 2028f74c..496610ad 100644
--- a/mediagoblin/templates/mediagoblin/moderation/report.html
+++ b/mediagoblin/templates/mediagoblin/moderation/report.html
@@ -130,11 +130,11 @@
{% if not report.is_archived_report() and
not (report.reported_user.has_privilege('admin') and
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>
{{ wtforms_util.render_divs(form) }}
{{ 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>
<script>
$(document).ready(function() {
diff --git a/mediagoblin/templates/mediagoblin/user_pages/report.html b/mediagoblin/templates/mediagoblin/user_pages/report.html
index ce0fb1bc..6f25b996 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/report.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/report.html
@@ -78,6 +78,6 @@
{{- wtforms_util.render_divs(form) }}
{{ csrf_token }}
- <input type=submit value="{% trans %}File Report {% endtrans %}" />
+ <input type=submit class="button_action" value="{% trans %}File Report {% endtrans %}" />
</form>
{% endblock %}