2021-12-06 12:45:12 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-12-06 12:45:12 +03:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 16:57:16 +03:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-12-06 12:45:12 +03:00
|
|
|
*/
|
|
|
|
|
2021-12-21 18:19:27 +03:00
|
|
|
.mx_MLocationBody {
|
2022-05-06 21:24:42 +03:00
|
|
|
max-width: 100%;
|
|
|
|
|
2021-12-21 18:19:27 +03:00
|
|
|
.mx_MLocationBody_map {
|
2022-05-06 21:24:42 +03:00
|
|
|
max-width: 100%;
|
2021-12-21 18:19:27 +03:00
|
|
|
width: 450px;
|
|
|
|
height: 300px;
|
2022-07-27 16:39:29 +03:00
|
|
|
z-index: 0; /* keeps the entire map under the message action bar */
|
2021-12-06 12:45:12 +03:00
|
|
|
|
2023-05-10 00:06:19 +03:00
|
|
|
border-radius: var(--MBody-border-radius);
|
2022-04-30 18:15:20 +03:00
|
|
|
cursor: pointer;
|
2021-12-21 18:19:27 +03:00
|
|
|
}
|
2021-12-06 12:45:12 +03:00
|
|
|
}
|
2022-02-02 14:41:33 +03:00
|
|
|
|
|
|
|
/* In the timeline, we fit the width of the container */
|
|
|
|
.mx_EventTile_line .mx_MLocationBody .mx_MLocationBody_map {
|
|
|
|
max-width: 450px;
|
2022-05-06 21:24:42 +03:00
|
|
|
width: 100%;
|
2022-02-02 14:41:33 +03:00
|
|
|
}
|
2022-02-08 15:59:08 +03:00
|
|
|
|
2022-05-06 21:24:42 +03:00
|
|
|
.mx_EventTile[data-layout="bubble"] .mx_EventTile_line .mx_MLocationBody .mx_MLocationBody_map {
|
2022-02-08 15:59:08 +03:00
|
|
|
max-width: 100%;
|
2022-05-06 21:24:42 +03:00
|
|
|
width: 450px;
|
2022-02-08 15:59:08 +03:00
|
|
|
}
|
2022-05-09 09:33:34 +03:00
|
|
|
|
|
|
|
.mx_DisambiguatedProfile ~ .mx_MLocationBody {
|
2022-07-27 16:39:29 +03:00
|
|
|
margin-top: 6px; /* See: https://github.com/matrix-org/matrix-react-sdk/pull/8442 */
|
2022-05-09 09:33:34 +03:00
|
|
|
}
|
2022-06-28 10:34:48 +03:00
|
|
|
|
|
|
|
.mx_ReplyTile .mx_MLocationBody {
|
2022-07-27 16:39:29 +03:00
|
|
|
/* Prevent clicking a location within a reply */
|
2022-06-28 10:34:48 +03:00
|
|
|
pointer-events: none;
|
|
|
|
}
|