feat(forums): add media css in forum list

This commit is contained in:
OldHawk
2017-07-06 11:55:43 +08:00
parent ddba101dfb
commit 772161081e
2 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@
tr {
td {
border-top: none;
border-bottom: dotted 1px @brand-primary;
border-bottom: solid 2px lighten(@brand-primary, 45%);
p {
margin-bottom: 5px;
&:last-child {

View File

@@ -40,7 +40,7 @@
<th class="col-md-7">{{'FORUMS.CATEGORY.'+cat.name | translate}}</th>
<th class="text-center">{{'FORUMS.FIELDS.TOPICS' | translate}}</th>
<th class="text-center">{{'FORUMS.FIELDS.REPLIES' | translate}}</th>
<th class="text-center">{{'FORUMS.FIELDS.LAST_REPLY' | translate}}</th>
<th class="text-center xs-hide sm-hide">{{'FORUMS.FIELDS.LAST_REPLY' | translate}}</th>
</tr>
</thead>
<tbody>
@@ -62,7 +62,7 @@
</td>
<td class="text-center">{{f.topicCount}}</td>
<td class="text-center">{{f.replyCount}}</td>
<td class="text-center">
<td class="text-center xs-hide sm-hide">
<div class="last-reply">
</div>
</td>