change to class instead of id to work with firefox

This commit is contained in:
Rodney Ewing 2013-06-26 08:45:59 -07:00
parent f7998c3326
commit a937ea9efd
2 changed files with 3 additions and 3 deletions

View File

@ -334,8 +334,8 @@ text-align: center;
width: 20px; width: 20px;
} }
#boolean { .boolean {
margin-bottom: 4px; margin-bottom: 8px;
} }
textarea#description, textarea#bio { textarea#description, textarea#bio {

View File

@ -89,7 +89,7 @@
{# Render a boolean field #} {# Render a boolean field #}
{% macro render_bool(field) %} {% macro render_bool(field) %}
<div id="boolean"> <div class="boolean">
<label for="{{ field.label.field_id }}"> <label for="{{ field.label.field_id }}">
{{ field }}</input> {{ field }}</input>
{{ field.description|safe }} {{ field.description|safe }}