From ce8e411cab44f3e3469e096223599a414aa5c794 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 18 Feb 2023 21:44:19 +0800 Subject: [PATCH] Prevent hashtags from being clickable inside Composer --- src/components/compose.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/compose.css b/src/components/compose.css index 433201e4..8c0d0956 100644 --- a/src/components/compose.css +++ b/src/components/compose.css @@ -60,6 +60,11 @@ animation: appear-up 1s ease-in-out; overflow: auto; } +#compose-container .status-preview .hashtag { + /* Prevent hashtags from being clickable */ + /* TODO: maybe use a different solution? */ + pointer-events: none; +} #compose-container.standalone .status-preview * { /* For standalone mode (new window), prevent interacting with the status preview for now