UX: mobile /categories page new and unread styles match other topic lists

This commit is contained in:
Neil Lalonde 2015-09-16 11:43:35 -04:00
parent 24f09edbed
commit f321dd2046
2 changed files with 15 additions and 3 deletions

View file

@ -22,7 +22,6 @@
{{topic-status topic=t}}
{{topic-link t}}
{{topic-post-badges unread=t.unread newPosts=t.new_posts unseen=t.unseen url=t.lastUnreadUrl}}
{{#if t.hasExcerpt}}
<div class="topic-excerpt">
{{{t.excerpt}}}
@ -36,7 +35,7 @@
{{/if}}
</div>
</td>
<td class='num posts'>{{number t.posts_count}}</td>
<td class='num posts'>{{raw "list/post-count-or-badges" topic=t postBadgesEnabled="true"}}</td>
<td class='num age'><span class="{{cold-age-class t.last_posted_at}}" title='{{raw-date t.last_posted_at}}'>{{{format-age t.last_posted_at}}}</span></td>
</tr>

View file

@ -77,7 +77,7 @@
a.title {color: $primary;}
.badge-notification {
.badge-notification, .category-topic-link td.num .badge-notification {
position: relative;
top: -1px;
font-size: 1.071em;
@ -93,6 +93,12 @@
}
}
.category-topic-link td.num .badge-notification {
&.new-posts, &.unread-posts {
color: dark-light-choose($secondary, $secondary);
}
}
.topic-item-stats {
margin-top: 8px;
.category, .num, .last-poster {
@ -225,6 +231,13 @@ tr.category-topic-link {
font-size: 110%;
}
.category-topic-link .num {
white-space: nowrap;
.number {
font-size: 1.071em;
}
}
.posters {
float: left;