diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/field_duration.qmc.tpl | 2 | ||||
-rw-r--r-- | view/tpl/field_input.tpl | 2 | ||||
-rw-r--r-- | view/tpl/field_select_grouped.tpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/field_duration.qmc.tpl b/view/tpl/field_duration.qmc.tpl index 5ef11a6b9..e38d4621c 100644 --- a/view/tpl/field_duration.qmc.tpl +++ b/view/tpl/field_duration.qmc.tpl @@ -23,7 +23,7 @@ </fieldset> -<span id="{{$qmc}}{{$field.name}}_help" class="form-text text-muted">{{$help}}</span> +<small id="{{$qmc}}{{$field.name}}_help" class="form-text text-muted">{{$help}}</small> {{if $wrapper!="no"}}</div>{{/if}} diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl index 53139a0e7..c7007c159 100644 --- a/view/tpl/field_input.tpl +++ b/view/tpl/field_input.tpl @@ -1,7 +1,7 @@ <div id="id_{{$field.0}}_wrapper" class="form-group"> <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}{{if $field.4}}<sup class="required zuiqmid"> {{$field.4}}</sup>{{/if}}</label> <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="text" value="{{$field.2}}"{{if $field.5}} {{$field.5}}{{/if}}> - <span id="help_{{$field.0}}" class="form-text text-muted">{{$field.3}}</span> + <small id="help_{{$field.0}}" class="form-text text-muted">{{$field.3}}</small> </div> {{* COMMENTS for this template: diff --git a/view/tpl/field_select_grouped.tpl b/view/tpl/field_select_grouped.tpl index ec067b8e7..eb228b086 100644 --- a/view/tpl/field_select_grouped.tpl +++ b/view/tpl/field_select_grouped.tpl @@ -8,5 +8,5 @@ {{/foreach}} </optgroup> </select> - <span class='help-block'>{{$field.3}}</span> + <small class='help-block'>{{$field.3}}</small> </div> |