2022-04-12 11:13:55 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-04-12 11:13:55 +03:00
|
|
|
Copyright 2022 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.
|
2022-04-12 11:13:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MBeaconBody {
|
|
|
|
position: relative;
|
|
|
|
height: 220px;
|
2022-06-02 18:43:19 +03:00
|
|
|
max-width: 325px;
|
|
|
|
width: 100%;
|
2022-04-12 11:13:55 +03:00
|
|
|
|
2023-05-10 00:06:19 +03:00
|
|
|
border-radius: var(--MBody-border-radius);
|
2022-04-12 11:13:55 +03:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2022-07-06 17:34:33 +03:00
|
|
|
.mx_MBeaconBody.mx_MBeaconBody_withoutMap {
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
.mx_MBeaconBody_chin {
|
|
|
|
position: relative;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MBeaconBody_withoutMapContent {
|
|
|
|
background-color: $panels;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MBeaconBody_withoutMapInfoLastUpdated {
|
2022-07-27 16:39:29 +03:00
|
|
|
/* 48px lines up with icon in BeaconStatus */
|
2022-07-06 17:34:33 +03:00
|
|
|
margin-top: -$spacing-8;
|
|
|
|
padding: 0 $spacing-8 $spacing-8 48px;
|
|
|
|
|
|
|
|
color: $tertiary-content;
|
|
|
|
font-size: $font-10px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 11:13:55 +03:00
|
|
|
.mx_MBeaconBody_map {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2022-07-27 16:39:29 +03:00
|
|
|
z-index: 0; /* keeps the entire map under the message action bars */
|
2022-04-14 16:14:05 +03:00
|
|
|
|
2022-05-20 12:49:01 +03:00
|
|
|
cursor: pointer;
|
2022-04-12 11:13:55 +03:00
|
|
|
}
|
|
|
|
|
2022-07-06 17:34:33 +03:00
|
|
|
.mx_MBeaconBody_mapFallback,
|
|
|
|
.mx_MBeaconBody_mapError {
|
2022-07-27 16:39:29 +03:00
|
|
|
/* pushes spinner/icon up */
|
|
|
|
/* to appear more centered with the footer */
|
2022-07-06 17:34:33 +03:00
|
|
|
padding-bottom: 50px !important;
|
|
|
|
}
|
2022-04-12 11:13:55 +03:00
|
|
|
|
2022-07-06 17:34:33 +03:00
|
|
|
.mx_MBeaconBody_mapErrorInteractive {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MBeaconBody_mapFallback {
|
2022-05-20 12:49:01 +03:00
|
|
|
cursor: default;
|
2022-04-12 11:13:55 +03:00
|
|
|
}
|
|
|
|
|
2022-04-13 11:44:15 +03:00
|
|
|
.mx_MBeaconBody_chin {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2024-06-20 13:18:26 +03:00
|
|
|
background-color: var(--cpd-color-bg-canvas-default);
|
|
|
|
opacity: 0.85;
|
2022-04-13 11:44:15 +03:00
|
|
|
}
|
|
|
|
|
2022-04-12 11:13:55 +03:00
|
|
|
.mx_EventTile[data-layout="bubble"] .mx_EventTile_line .mx_MBeaconBody {
|
|
|
|
max-width: 100%;
|
|
|
|
width: 450px;
|
|
|
|
}
|
2022-06-28 10:34:48 +03:00
|
|
|
|
|
|
|
.mx_ReplyTile .mx_MBeaconBody {
|
2022-07-27 16:39:29 +03:00
|
|
|
/* Prevent clicking a beacon within a reply */
|
2022-06-28 10:34:48 +03:00
|
|
|
pointer-events: none;
|
|
|
|
}
|