aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-12-02 07:29:21 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-12-02 07:29:21 +0100
commit1e5d447fd74861e0d01306fe0b7fe46d066c843c (patch)
treec4279ec1741dbe7df641544a1f066740ceb374f0
parentUpdated version of Vagrant. (diff)
downloadnewspipe-1e5d447fd74861e0d01306fe0b7fe46d066c843c.tar.gz
newspipe-1e5d447fd74861e0d01306fe0b7fe46d066c843c.tar.bz2
newspipe-1e5d447fd74861e0d01306fe0b7fe46d066c843c.zip
Harmonization of buttons style.
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html2
-rw-r--r--pyaggr3g470r/templates/edit_feed.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index d8939844..25bd3883 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -54,7 +54,7 @@
{{ form.message(class_="form-control", rows=8) }} {% for error in form.message.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %}
<br />
- {{ form.submit(class_="btn") }}
+ {{ form.submit(class_="btn btn-default") }}
</form>
</div>
{% endblock %}
diff --git a/pyaggr3g470r/templates/edit_feed.html b/pyaggr3g470r/templates/edit_feed.html
index bcfdb0aa..f1a61b89 100644
--- a/pyaggr3g470r/templates/edit_feed.html
+++ b/pyaggr3g470r/templates/edit_feed.html
@@ -24,7 +24,7 @@
{{ form.enabled(class_="checkbox") }}
<br />
- {{ form.submit(class_="btn") }}
+ {{ form.submit(class_="btn btn-default") }}
</form>
</div>
</div><!-- /.container -->
bgstack15