message_editing: Fix unclickable area in bouncing "...".

The bug occurred because clicking on .message-editing-animation was
not triggering the click on .edit-notifications. This commit prevents
this behaviour by setting its property pointer-events to none.

Fixes: #33950
This commit is contained in:
harshbansal8705
2025-03-13 18:13:02 +05:30
committed by Tim Abbott
parent 79ec259209
commit f1e6371bf8

View File

@@ -816,6 +816,10 @@ of the base style defined for a read-only textarea in dark mode. */
width: 40px;
height: 5px;
/* Avoid this animation element blocking clicks on .edit-notifications
to display the message's edit history. */
pointer-events: none;
.y-animated-dot {
width: 4px;
height: 4px;