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