diff options
| author | spiderr <spider@viovio.com> | 2014-05-30 12:03:53 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2014-05-30 12:03:53 -0400 |
| commit | 0edd6dc51be042fc87f910ec3c1f747878638d5f (patch) | |
| tree | 62beb900c5ca26a3c977e82cb5581443cb211f92 | |
| parent | 3cf8e0a187f83af2a5e911b80ebf9e0b12eb8562 (diff) | |
| download | tags-0edd6dc51be042fc87f910ec3c1f747878638d5f.tar.gz tags-0edd6dc51be042fc87f910ec3c1f747878638d5f.tar.bz2 tags-0edd6dc51be042fc87f910ec3c1f747878638d5f.zip | |
bootstrap3-css-changes-form-group
| -rw-r--r-- | templates/admin_tags.tpl | 12 | ||||
| -rw-r--r-- | templates/edit_tag.tpl | 6 | ||||
| -rw-r--r-- | templates/edit_tags.tpl | 2 | ||||
| -rw-r--r-- | templates/search_inc.tpl | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/templates/admin_tags.tpl b/templates/admin_tags.tpl index eee6b87..26a0b18 100644 --- a/templates/admin_tags.tpl +++ b/templates/admin_tags.tpl @@ -7,7 +7,7 @@ {legend legend="Display Location"} <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsDisplayOptions key=item item=output} - <div class="control-group"> + <div class="form-group"> {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} @@ -24,7 +24,7 @@ {/legend} {legend legend="Availability"} - <div class="control-group"> + <div class="form-group"> {formlabel label="Taggable Content"} {forminput} {formhelp note="Enabled content types can be tagged by users with appropriate permissions."} @@ -38,7 +38,7 @@ {legend legend="Santitation Settings"} <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsStripOptions key=item item=output} - <div class="control-group"> + <div class="form-group"> {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} @@ -59,7 +59,7 @@ {legend legend="Other Settings"} <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagsOtherOptions key=item item=output} - <div class="control-group"> + <div class="form-group"> {formlabel label=$output.label for=$item} {forminput} {if $output.type == 'numeric'} @@ -81,7 +81,7 @@ <input type="hidden" name="page" value="{$page}" /> {foreach from=$formTagLists key=item item=output} - <div class="control-group"> + <div class="form-group"> {formlabel label=$output.label for=$item} {forminput} {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} @@ -95,7 +95,7 @@ {/jstabs} - <div class="control-group submit"> + <div class="form-group submit"> <input type="submit" class="btn btn-default" name="tags_preferences" value="{tr}Change preferences{/tr}" /> </div> {/form} diff --git a/templates/edit_tag.tpl b/templates/edit_tag.tpl index 4ca7411..ae40334 100644 --- a/templates/edit_tag.tpl +++ b/templates/edit_tag.tpl @@ -15,18 +15,18 @@ <input type="hidden" name="tag_id" value="{if $tagData}{$tagData.tag_id}{/if}" /> {legend legend="Edit Tag"} - <div class="control-group"> + <div class="form-group"> {formlabel label="Tag" for="tag"} {forminput} <input type="text" name="tag" id="tag" value="{if $tagData}{$tagData.tag}{/if}" /> {/forminput} </div> - <div class="control-group submit"> + <div class="form-group submit"> <input type="submit" class="btn btn-default" name="save" value="{tr}Save{/tr}" /> </div> {/legend} {/form} </div><!-- end .body --> </div><!-- end .tag --> -{/strip}
\ No newline at end of file +{/strip} diff --git a/templates/edit_tags.tpl b/templates/edit_tags.tpl index b3db6d3..285e0a3 100644 --- a/templates/edit_tags.tpl +++ b/templates/edit_tags.tpl @@ -2,7 +2,7 @@ {if $gContent->mContentTypeGuid != 'bitcomment' || $gBitSystem->isFeatureActive('tags_on_comments')} - <div class="control-group"> + <div class="form-group"> {formlabel label="Tags" for="tags"} {forminput} <input type="text" name="tags" id="tags" value="{if $preview}{$smarty.post.tags}{elseif $tagList}{$tagList}{/if}" /> diff --git a/templates/search_inc.tpl b/templates/search_inc.tpl index 49a3366..cb049ca 100644 --- a/templates/search_inc.tpl +++ b/templates/search_inc.tpl @@ -1,4 +1,4 @@ -<div class="control-group"> +<div class="form-group"> {formlabel label="Tags:" for="tags"} {forminput} <input type="text" name="tags" id="search_tags" value="{$listInfo.tags}" /> |
