From 9fe97e1ad6182ca62913e405a7e85746366e25a5 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Tue, 26 May 2026 12:22:15 +0200 Subject: [PATCH] Accessibility: Mark pseudo element content in link footer as decorative (#39164) --- .../mastodon/features/ui/components/link_footer.module.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/javascript/mastodon/features/ui/components/link_footer.module.scss b/app/javascript/mastodon/features/ui/components/link_footer.module.scss index f2b094744e..beb0173ffd 100644 --- a/app/javascript/mastodon/features/ui/components/link_footer.module.scss +++ b/app/javascript/mastodon/features/ui/components/link_footer.module.scss @@ -41,6 +41,10 @@ &:not(:last-child)::after { content: ' · '; + + @supports (content: 'x' / 'y') { + content: ' · ' / ''; + } } }