diff options
| author | spiderr <spider@viovio.com> | 2013-04-24 13:23:57 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2013-04-24 13:23:57 -0400 |
| commit | a8f0ab22383336b9107140818169d2df78f8ce2c (patch) | |
| tree | e8ae01bf0f42e794c552f1a04ee50f1b487e61b0 | |
| parent | 20cec0de378a0070ef165cc2a5d15d316b806536 (diff) | |
| download | articles-a8f0ab22383336b9107140818169d2df78f8ce2c.tar.gz articles-a8f0ab22383336b9107140818169d2df78f8ce2c.tar.bz2 articles-a8f0ab22383336b9107140818169d2df78f8ce2c.zip | |
fix <label class=checkbox> wrapping to be bootstrap compliant; add .table to all table.data tags
| -rw-r--r-- | templates/admin_topics.tpl | 2 | ||||
| -rw-r--r-- | templates/admin_types.tpl | 2 | ||||
| -rw-r--r-- | templates/article_history.tpl | 4 | ||||
| -rw-r--r-- | templates/edit_topic.tpl | 7 | ||||
| -rw-r--r-- | templates/list_articles.tpl | 2 |
5 files changed, 8 insertions, 9 deletions
diff --git a/templates/admin_topics.tpl b/templates/admin_topics.tpl index 2b660a4..cc0453c 100644 --- a/templates/admin_topics.tpl +++ b/templates/admin_topics.tpl @@ -35,7 +35,7 @@ </div> {/form} - <table class="data"> + <table class="table data"> <caption>{tr}List of Topics{/tr}</caption> <tr> <th>{tr}Image{/tr}</th> diff --git a/templates/admin_types.tpl b/templates/admin_types.tpl index 136a15a..4dc4e7c 100644 --- a/templates/admin_types.tpl +++ b/templates/admin_types.tpl @@ -13,7 +13,7 @@ {jstabs} {jstab title="Article Types"} {form legend="Modify Article Types"} - <table class="data"> + <table class="table data"> <caption>{tr}Article Types{/tr}</caption> <tr> <th style="width:30%;" title="{tr}Name{/tr}">{tr}Name{/tr}</th> diff --git a/templates/article_history.tpl b/templates/article_history.tpl index d722fd4..f668e2a 100644 --- a/templates/article_history.tpl +++ b/templates/article_history.tpl @@ -19,7 +19,7 @@ {/if} {if $compare eq 'y'} - <table class="data"> + <table class="table data"> <caption>{tr}Comparing versions{/tr}</caption> <tr> <th width="50%">{tr}Version {$version_from}{/tr}</td> @@ -43,7 +43,7 @@ <input type="hidden" name="page_id" value="{$gContent->mInfo.page_id}" /> <input type="hidden" name="page" value="{$page}" /> - <table class="data"> + <table class="table data"> <caption>{tr}Article History{/tr}</caption> <tr> <th style="width:70%;">{tr}Date / Comment{/tr}</th> diff --git a/templates/edit_topic.tpl b/templates/edit_topic.tpl index 81430fb..0c9eb8e 100644 --- a/templates/edit_topic.tpl +++ b/templates/edit_topic.tpl @@ -23,11 +23,10 @@ </div> <div class="control-group"> - {formlabel label="Topic Enabled" for="topic_enabled"} - {forminput} - <input type="checkbox" id="topic_enabled" name="active_topic" {if $gContent->mInfo.active_topic == 'y'}checked="checked"{/if} /> + <label class="checkbox"> + <input type="checkbox" id="topic_enabled" name="active_topic" {if $gContent->mInfo.active_topic == 'y'}checked="checked"{/if} />Topic Enabled {formhelp note=""} - {/forminput} + </label> </div> <div class="control-group"> diff --git a/templates/list_articles.tpl b/templates/list_articles.tpl index cb4310a..c226567 100644 --- a/templates/list_articles.tpl +++ b/templates/list_articles.tpl @@ -37,7 +37,7 @@ {include file="bitpackage:articles/article_filter_inc.tpl"} {form} - <table class="data"> + <table class="table data"> <caption>{tr}Articles Listing{/tr}</caption> <tr> {counter name=cols start=0 print=false} |
