Prevent hashtags from being clickable inside Composer

This commit is contained in:
Lim Chee Aun 2023-02-18 21:44:19 +08:00
parent ab2328f364
commit ce8e411cab

View file

@ -60,6 +60,11 @@
animation: appear-up 1s ease-in-out; animation: appear-up 1s ease-in-out;
overflow: auto; 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 * { #compose-container.standalone .status-preview * {
/* /*
For standalone mode (new window), prevent interacting with the status preview for now For standalone mode (new window), prevent interacting with the status preview for now