changeset 730:b5b7910d78df

Stupid IE10 overflowed the progress bar. Put in a work around.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Oct 2013 15:11:22 -0500
parents 99d7bf8cd712
children 796103a2215b
files sg101/templates/donations/monthly_goal_tag.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sg101/templates/donations/monthly_goal_tag.html	Sun Oct 06 14:48:42 2013 -0500
+++ b/sg101/templates/donations/monthly_goal_tag.html	Sun Oct 06 15:11:22 2013 -0500
@@ -3,7 +3,7 @@
 {% block block_content %}
 <p class="centered">Help us meet our monthly goal:</p>
 <div class="centered">
-   <progress max="100" value="{{ pct }}">{{ pct }}%</progress>
+   <progress max="100" value="{{ pct }}" style="width:90%">{{ pct }}%</progress>
 </div>
 <p class="centered"><strong>{{ pct }}%</strong></p>
 <p class="centered"><a href="{% url 'donations-index' %}">Donate Now</a></p>