Browse Source

Fixed inputs widths on posting page

Ralfp 12 years ago
parent
commit
296baccfb2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      templates/cranefly/threads/posting.html

+ 2 - 2
templates/cranefly/threads/posting.html

@@ -61,14 +61,14 @@
           <form action="{{ get_action() }}" method="post">
             <input type="hidden" name="{{ csrf_id }}" value="{{ csrf_token }}">
             {% if 'thread_name' in form.fields %}
-            {{ form_theme.row_widget(form.fields.thread_name) }}
+            {{ form_theme.row_widget(form.fields.thread_name, width=8) }}
             <hr>
             <h4>Message Body</h4>
             {% endif %}
             {{ editor.editor(form.fields.post, get_button(), rows=8, extra=get_extra()) }}
             {% if 'edit_reason' in form.fields %}
             <hr>
-            {{ form_theme.row_widget(form.fields.edit_reason) }}
+            {{ form_theme.row_widget(form.fields.edit_reason, width=8) }}
 
             <div class="form-actions">
               <button type="submit" class="btn btn-primary">{{ get_button() }}</button>