diff --git a/src/routes/_components/dialog/components/ModalDialog.html b/src/routes/_components/dialog/components/ModalDialog.html
index fe432651..1068b987 100644
--- a/src/routes/_components/dialog/components/ModalDialog.html
+++ b/src/routes/_components/dialog/components/ModalDialog.html
@@ -13,7 +13,7 @@
{title}
{/if}
-
diff --git a/src/routes/_components/settings/SettingsListButton.html b/src/routes/_components/settings/SettingsListButton.html
index a23ccca1..73092716 100644
--- a/src/routes/_components/settings/SettingsListButton.html
+++ b/src/routes/_components/settings/SettingsListButton.html
@@ -2,7 +2,7 @@
on:click="fire('click', event)"
rel="prefetch"
aria-label={ariaLabel || label}
- class="settings-list-button focus-after {className ? className : ''}"
+ class="settings-list-button focus-fix {className ? className : ''}"
>
{label}
diff --git a/src/routes/_components/status/Media.html b/src/routes/_components/status/Media.html
index 22ce7ea6..6902cc30 100644
--- a/src/routes/_components/status/Media.html
+++ b/src/routes/_components/status/Media.html
@@ -85,6 +85,10 @@
cursor: zoom-in;
}
+ .inline-media {
+ position: relative;
+ }
+
@media (max-width: 240px) {
.inline-media {
min-height: 100px; /* TODO: hack for KaiOS, which renders the grouped-images style as 0 height */
diff --git a/src/routes/_components/status/Notification.html b/src/routes/_components/status/Notification.html
index 0df641c8..7baf038e 100644
--- a/src/routes/_components/status/Notification.html
+++ b/src/routes/_components/status/Notification.html
@@ -70,7 +70,7 @@
className: ({ $underlineLinks }) => (classname(
'notification-article',
'shortcut-list-item',
- 'focus-after',
+ 'focus-fix',
$underlineLinks && 'underline-links'
))
},
diff --git a/src/routes/_components/status/Status.html b/src/routes/_components/status/Status.html
index 32bb78f1..bc309a43 100644
--- a/src/routes/_components/status/Status.html
+++ b/src/routes/_components/status/Status.html
@@ -294,7 +294,7 @@
className: ({ visibility, timelineType, isStatusInOwnThread, $underlineLinks, $disableTapOnStatus }) => (classname(
'status-article',
'shortcut-list-item',
- 'focus-after',
+ 'focus-fix',
timelineType !== 'direct' && visibility === 'direct' && 'status-direct',
timelineType !== 'search' && 'status-in-timeline',
isStatusInOwnThread && 'status-in-own-thread',
diff --git a/src/routes/_components/status/StatusPoll.html b/src/routes/_components/status/StatusPoll.html
index 5451e3c3..1bfa0d83 100644
--- a/src/routes/_components/status/StatusPoll.html
+++ b/src/routes/_components/status/StatusPoll.html
@@ -47,6 +47,7 @@