diff --git a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars index c687296bd..5fd7bccec 100644 --- a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars +++ b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars @@ -33,22 +33,20 @@ {{/unless}}
-
{{number posts_count numberKey="posts_long"}}
+
{{number posts_count numberKey="posts_long"}}
{{#if like_count}} -
{{number like_count numberKey="likes_long"}}
+
{{number like_count numberKey="likes_long"}}
{{/if}} -
- {{last_poster_username}} -
- {{#if bumped}}
+ {{last_poster_username}} {{unboundAge bumped_at}}
{{else}}
+ {{last_poster_username}} {{unboundAge created_at}}
{{/if}} diff --git a/app/assets/stylesheets/mobile/topic-list.scss b/app/assets/stylesheets/mobile/topic-list.scss index 1e99085ac..135b619bc 100644 --- a/app/assets/stylesheets/mobile/topic-list.scss +++ b/app/assets/stylesheets/mobile/topic-list.scss @@ -130,10 +130,19 @@ .topic-item-stats { .category, .num, .last-poster { float: left; - margin-right: 8px; + margin-right: 14px; } - .posts { - font-weight: bold; + .fa { + color: lighten($black, 50%); + } + .fa-heart{ + position: relative; + left: -1px; + } + .fa-comment{ + position: relative; + top: -1px; + left: 1px; } }