diff --git a/res/css/components/views/messages/_MBeaconBody.scss b/res/css/components/views/messages/_MBeaconBody.scss index 64d7908df0..aed1cb44d3 100644 --- a/res/css/components/views/messages/_MBeaconBody.scss +++ b/res/css/components/views/messages/_MBeaconBody.scss @@ -51,3 +51,8 @@ limitations under the License. max-width: 100%; width: 450px; } + +.mx_ReplyTile .mx_MBeaconBody { + // Prevent clicking a beacon within a reply + pointer-events: none; +} diff --git a/res/css/views/messages/_MLocationBody.scss b/res/css/views/messages/_MLocationBody.scss index cbbd34526d..2a8866c03b 100644 --- a/res/css/views/messages/_MLocationBody.scss +++ b/res/css/views/messages/_MLocationBody.scss @@ -42,3 +42,8 @@ limitations under the License. .mx_DisambiguatedProfile ~ .mx_MLocationBody { margin-top: 6px; // See: https://github.com/matrix-org/matrix-react-sdk/pull/8442 } + +.mx_ReplyTile .mx_MLocationBody { + // Prevent clicking a location within a reply + pointer-events: none; +}