diff options
author | jpope <jpope@jpope.org> | 2014-01-07 18:21:51 -0600 |
---|---|---|
committer | jpope <jpope@jpope.org> | 2014-01-07 18:21:51 -0600 |
commit | 87ce1e9e63811029a107ffbdb095f976a64a0d15 (patch) | |
tree | e6e779f3d6ae151ac6ced8f21f02466295f2caef /mediagoblin/templates | |
parent | 297983f7be5664e5d7fb004af427d5f13b421ad8 (diff) | |
download | mediagoblin-87ce1e9e63811029a107ffbdb095f976a64a0d15.tar.lz mediagoblin-87ce1e9e63811029a107ffbdb095f976a64a0d15.tar.xz mediagoblin-87ce1e9e63811029a107ffbdb095f976a64a0d15.zip |
add warning color to delete buttons.
Diffstat (limited to 'mediagoblin/templates')
4 files changed, 4 insertions, 4 deletions
diff --git a/mediagoblin/templates/mediagoblin/edit/delete_account.html b/mediagoblin/templates/mediagoblin/edit/delete_account.html index 84d0b580..a7a3c3d2 100644 --- a/mediagoblin/templates/mediagoblin/edit/delete_account.html +++ b/mediagoblin/templates/mediagoblin/edit/delete_account.html @@ -41,7 +41,7 @@ 'mediagoblin.user_pages.user_home', user=user.username) }}">{% trans %}Cancel{% endtrans %}</a> {{ csrf_token }} - <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form" /> + <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form button_warning" /> </div> </div> </form> diff --git a/mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html b/mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html index 694eb979..209cd491 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html +++ b/mediagoblin/templates/mediagoblin/user_pages/collection_confirm_delete.html @@ -45,7 +45,7 @@ {{- collection.url_for_self(request.urlgen) }}"> {%- trans %}Cancel{% endtrans -%} </a> - <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form" /> + <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form button_warning" /> {{ csrf_token }} </div> </div> diff --git a/mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html b/mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html index dc31d90f..cb4fd1a2 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html +++ b/mediagoblin/templates/mediagoblin/user_pages/collection_item_confirm_remove.html @@ -51,7 +51,7 @@ {{- collection_item.in_collection.url_for_self(request.urlgen) }}"> {%- trans %}Cancel{% endtrans -%} </a> - <input type="submit" value="{% trans %}Remove{% endtrans %}" class="button_form" /> + <input type="submit" value="{% trans %}Remove{% endtrans %}" class="button_form button_warning" /> {{ csrf_token }} </div> </div> diff --git a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html index 1d7dcc17..c948ccec 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media_confirm_delete.html @@ -46,7 +46,7 @@ <div class="form_submit_buttons"> {# TODO: This isn't a button really... might do unexpected things :) #} <a class="button_action" href="{{ media.url_for_self(request.urlgen) }}">{% trans %}Cancel{% endtrans %}</a> - <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form" /> + <input type="submit" value="{% trans %}Delete permanently{% endtrans %}" class="button_form button_warning" /> {{ csrf_token }} </div> </div> |