diff --git a/routes/_components/AccountProfile.html b/routes/_components/AccountProfile.html
index b5ef408c..54054352 100644
--- a/routes/_components/AccountProfile.html
+++ b/routes/_components/AccountProfile.html
@@ -6,7 +6,9 @@
{{'@' + profile.acct}}
@@ -127,6 +129,14 @@
text-overflow: ellipsis;
min-width: 0;
}
+ .account-profile-name a {
+ color: var(--body-text-color);
+ text-decoration: none;
+ }
+ .account-profile-name a:hover {
+ color: var(--body-text-color);
+ text-decoration: underline;
+ }
.account-profile-note {
grid-area: note;
padding: 10px 0;
diff --git a/routes/_components/status/Status.html b/routes/_components/status/Status.html
index 4847e5ed..2c9a2a3f 100644
--- a/routes/_components/status/Status.html
+++ b/routes/_components/status/Status.html
@@ -7,22 +7,37 @@
-
- {{status.account.username}}
- boosted
+ {{#if timelineType === 'account' && timelineValue === status.account.id}}
+ {{status.account.username}}
+ {{else}}
+ {{status.account.username}}
+ {{/if}}
+ boosted
{{/if}}
{{#if originalStatus.spoiler_text}}
diff --git a/routes/_components/timeline/StatusListItem.html b/routes/_components/timeline/StatusListItem.html
index ad369acb..6b9635ec 100644
--- a/routes/_components/timeline/StatusListItem.html
+++ b/routes/_components/timeline/StatusListItem.html
@@ -1,4 +1,9 @@
-
+