BUGFIX: center title columns in basic topic lists

This commit is contained in:
Régis Hanol 2014-05-13 18:41:20 +02:00
parent 08dde3d881
commit b5239be2fa
1 changed files with 7 additions and 7 deletions

View File

@ -3,18 +3,18 @@
<table id="topic-list"> <table id="topic-list">
<thead> <thead>
<tr> <tr>
<th>{{i18n topic.title}}</th> <th class="default">{{i18n topic.title}}</th>
{{#unless controller.hideCategory}} {{#unless controller.hideCategory}}
<th>{{i18n category_title}}</th> <th class="category">{{i18n category_title}}</th>
{{/unless}} {{/unless}}
<th>{{i18n posts}}</th> <th class="num posts">{{i18n posts}}</th>
{{#if controller.showParticipants}} {{#if controller.showParticipants}}
<th>{{i18n users}}</th> <th class="posters">{{i18n users}}</th>
{{else}} {{else}}
<th>{{i18n likes}}</th> <th class="num likes">{{i18n likes}}</th>
{{/if}} {{/if}}
<th>{{i18n views}}</th> <th class="num views">{{i18n views}}</th>
<th>{{i18n activity}}</th> <th class="num activity" colspan="2">{{i18n activity}}</th>
</tr> </tr>
</thead> </thead>