Widen the Age column on categories page to fit the new date format
This commit is contained in:
parent
0270ee0d98
commit
bb74c8b9cf
|
@ -1,6 +1,6 @@
|
||||||
<table id='topic-list'>
|
<table id='topic-list'>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th class="main-link">
|
||||||
{{categoryLink this}}
|
{{categoryLink this}}
|
||||||
|
|
||||||
<div class='posters'>
|
<div class='posters'>
|
||||||
|
@ -9,8 +9,8 @@
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th class='num'>{{i18n posts}}</th>
|
<th class='num posts'>{{i18n posts}}</th>
|
||||||
<th class='num'>{{i18n age}}</th>
|
<th class='num age'>{{i18n age}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
{{#if description_excerpt}}
|
{{#if description_excerpt}}
|
||||||
|
@ -51,8 +51,8 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class='num'><span class='badge-posts'>{{number posts_count}}</span></td>
|
<td class='num posts'><span class='badge-posts'>{{number posts_count}}</span></td>
|
||||||
<td class='num'><span {{bindAttr class=":age ageCold"}} title='{{unboundDate created_at}}'>{{{unboundAge created_at}}}</span></td>
|
<td class='num age'><span {{bindAttr class=":age ageCold"}} title='{{unboundDate created_at}}'>{{{unboundAge created_at}}}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
|
|
|
@ -181,6 +181,9 @@
|
||||||
.activity {
|
.activity {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
.age {
|
||||||
|
width: 60px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Category list
|
// Category list
|
||||||
|
|
Loading…
Reference in New Issue