From 436584742ac25c02bcb6abbac1bac199aea3fda1 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:21:10 -0600 Subject: [PATCH] Ensure textarea is always clickable for text stories Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com> --- stylesheets/components/TextAttachment.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stylesheets/components/TextAttachment.scss b/stylesheets/components/TextAttachment.scss index fc10e892eab..5dd5295d47a 100644 --- a/stylesheets/components/TextAttachment.scss +++ b/stylesheets/components/TextAttachment.scss @@ -49,6 +49,9 @@ &:disabled { color: inherit; cursor: inherit; + // By disabling pointer-events, we prevent the disabled textarea from swallowing + // all click events + pointer-events: none; } &:focus {