mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
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:
committed by
Tim Abbott
parent
79ec259209
commit
f1e6371bf8
@@ -816,6 +816,10 @@ of the base style defined for a read-only textarea in dark mode. */
|
|||||||
width: 40px;
|
width: 40px;
|
||||||
height: 5px;
|
height: 5px;
|
||||||
|
|
||||||
|
/* Avoid this animation element blocking clicks on .edit-notifications
|
||||||
|
to display the message's edit history. */
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
.y-animated-dot {
|
.y-animated-dot {
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
|
|||||||
Reference in New Issue
Block a user