aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/field_select.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-03-31 16:13:58 +0200
committerMario Vavti <mario@mariovavti.com>2017-03-31 16:13:58 +0200
commit1bcee2f11c10ef6844383ea3ba8d15862604f8d1 (patch)
tree87e1ff404d44f705a6d94f39972d2df45f061ca7 /view/tpl/field_select.tpl
parent572a04b40acf39530e86175a71da898c851ca710 (diff)
downloadvolse-hubzilla-1bcee2f11c10ef6844383ea3ba8d15862604f8d1.tar.gz
volse-hubzilla-1bcee2f11c10ef6844383ea3ba8d15862604f8d1.tar.bz2
volse-hubzilla-1bcee2f11c10ef6844383ea3ba8d15862604f8d1.zip
various form css fixes
Diffstat (limited to 'view/tpl/field_select.tpl')
-rwxr-xr-xview/tpl/field_select.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/field_select.tpl b/view/tpl/field_select.tpl
index 762447290..cda9a823a 100755
--- a/view/tpl/field_select.tpl
+++ b/view/tpl/field_select.tpl
@@ -1,7 +1,7 @@
- <div class='form-group field select'>
- <label for='id_{{$field.0}}'>{{$field.1}}</label>
- <select class="form-control" name='{{$field.0}}' id='id_{{$field.0}}'>
+ <div class="form-group">
+ <label for="id_{{$field.0}}">{{$field.1}}</label>
+ <select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}">
{{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
</select>
- <span class='help-block'>{{$field.3}}</span>
+ <small class="form-text text-muted">{{$field.3}}</small>
</div>