diff --git a/routes/_components/Avatar.html b/routes/_components/Avatar.html
index 8181217..b0ac208 100644
--- a/routes/_components/Avatar.html
+++ b/routes/_components/Avatar.html
@@ -18,6 +18,11 @@
height: 48px;
}
+ :global(.avatar.size-medium) {
+ width: 64px;
+ height: 64px;
+ }
+
:global(.avatar.size-big) {
width: 100px;
height: 100px;
diff --git a/routes/_components/status/Status.html b/routes/_components/status/Status.html
index d84eb1d..846c9d9 100644
--- a/routes/_components/status/Status.html
+++ b/routes/_components/status/Status.html
@@ -5,10 +5,14 @@
{{#if (notification && (notification.type === 'reblog' || notification.type === 'favourite')) || status.reblog}}
{{/if}}
-
-
+
+
+ {{#if !isStatusInOwnThread}}
+
+ {{/if}}
+
{{#if originalStatus.spoiler_text}}
-
+
{{/if}}
{{#if !originalStatus.spoiler_text || spoilerShown}}
@@ -16,7 +20,10 @@
{{#if originalStatus.media_attachments && originalStatus.media_attachments.length}}
{{/if}}
-
+ {{#if isStatusInOwnThread}}
+
+ {{/if}}
+
+
\ No newline at end of file
diff --git a/routes/_components/status/StatusAuthor.html b/routes/_components/status/StatusAuthor.html
deleted file mode 100644
index 0a8998e..0000000
--- a/routes/_components/status/StatusAuthor.html
+++ /dev/null
@@ -1,99 +0,0 @@
-
- {{status.account.display_name || status.account.username}}
-
-
- {{'@' + status.account.acct}}
-
-{{#if isStatusInOwnThread}}
-
-
-
-{{else}}
-
-
-
-{{/if}}
-
-
\ No newline at end of file
diff --git a/routes/_components/status/StatusAuthorHandle.html b/routes/_components/status/StatusAuthorHandle.html
new file mode 100644
index 0000000..1398226
--- /dev/null
+++ b/routes/_components/status/StatusAuthorHandle.html
@@ -0,0 +1,20 @@
+
+ {{'@' + status.account.acct}}
+
+
\ No newline at end of file
diff --git a/routes/_components/status/StatusAuthorName.html b/routes/_components/status/StatusAuthorName.html
new file mode 100644
index 0000000..b9dd738
--- /dev/null
+++ b/routes/_components/status/StatusAuthorName.html
@@ -0,0 +1,57 @@
+
+ {{status.account.display_name || status.account.username}}
+
+
+
\ No newline at end of file
diff --git a/routes/_components/status/StatusRelativeDate.html b/routes/_components/status/StatusRelativeDate.html
new file mode 100644
index 0000000..4cedfa2
--- /dev/null
+++ b/routes/_components/status/StatusRelativeDate.html
@@ -0,0 +1,43 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/routes/_components/status/StatusSidebar.html b/routes/_components/status/StatusSidebar.html
index fcb6da2..6f1e4d1 100644
--- a/routes/_components/status/StatusSidebar.html
+++ b/routes/_components/status/StatusSidebar.html
@@ -1,6 +1,6 @@
+ size="{{isStatusInOwnThread ? 'medium' : 'small'}}" />