diff --git a/app/assets/javascripts/discourse/templates/list/post-count-or-badges.raw.hbs b/app/assets/javascripts/discourse/templates/list/post-count-or-badges.raw.hbs
index 88dfe8f00..4e41ba326 100644
--- a/app/assets/javascripts/discourse/templates/list/post-count-or-badges.raw.hbs
+++ b/app/assets/javascripts/discourse/templates/list/post-count-or-badges.raw.hbs
@@ -1,8 +1,5 @@
{{#if view.showBadges}}
{{raw "topic-post-badges" unread=topic.unread newPosts=topic.displayNewPosts unseen=topic.unseen url=topic.lastUnreadUrl}}
{{else}}
- {{#if topic.unseen}}
-
- {{/if}}
{{raw "list/posts-count-column" topic=topic tagName="div"}}
-{{/if}}
\ No newline at end of file
+{{/if}}
diff --git a/app/assets/javascripts/discourse/templates/mobile/components/basic-topic-list.hbs b/app/assets/javascripts/discourse/templates/mobile/components/basic-topic-list.hbs
index 06af1df5d..92a502662 100644
--- a/app/assets/javascripts/discourse/templates/mobile/components/basic-topic-list.hbs
+++ b/app/assets/javascripts/discourse/templates/mobile/components/basic-topic-list.hbs
@@ -8,7 +8,9 @@
{{topic-status topic=t}}
{{topic-link t}}
-
+ {{#if t.unseen}}
+
+ {{/if}}
{{#if t.hasExcerpt}}
{{{t.excerpt}}}
diff --git a/app/assets/javascripts/discourse/templates/mobile/discovery/categories.hbs b/app/assets/javascripts/discourse/templates/mobile/discovery/categories.hbs
index 44ac3d68a..86c7c6213 100644
--- a/app/assets/javascripts/discourse/templates/mobile/discovery/categories.hbs
+++ b/app/assets/javascripts/discourse/templates/mobile/discovery/categories.hbs
@@ -21,8 +21,10 @@
{{topic-status topic=t}}
{{topic-link t}}
+ {{#if t.unseen}}
+
+ {{/if}}
{{{format-age t.last_posted_at}}}
-
{{#if t.hasExcerpt}}
{{{t.excerpt}}}
diff --git a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.raw.hbs b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.raw.hbs
index 7e61ac956..0c1190703 100644
--- a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.raw.hbs
+++ b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.raw.hbs
@@ -10,6 +10,9 @@
{{raw "topic-status" topic=content}}
{{topic-link content}}
+ {{#if content.unseen}}
+
+ {{/if}}
{{raw "list/topic-excerpt" topic=content}}
diff --git a/app/assets/stylesheets/mobile/topic-list.scss b/app/assets/stylesheets/mobile/topic-list.scss
index c7340dcdc..7f70b260f 100644
--- a/app/assets/stylesheets/mobile/topic-list.scss
+++ b/app/assets/stylesheets/mobile/topic-list.scss
@@ -92,8 +92,8 @@
margin-right: 0;
}
&.new-topic {
- padding-right: 0;
- top: -3px;
+ padding: 0;
+ top: -2px;
}
}