2020-11-04 17:00:07 +00:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-11-04 17:00:07 +00:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-11-04 17:00:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_EventTileBubble {
|
2023-06-06 14:03:52 +00:00
|
|
|
--EventTileBubble_margin-block: 10px;
|
2022-07-08 08:58:49 +00:00
|
|
|
|
2020-11-04 17:00:07 +00:00
|
|
|
background-color: $dark-panel-bg-color;
|
2023-06-06 14:03:52 +00:00
|
|
|
padding: 10px;
|
2020-11-04 17:00:07 +00:00
|
|
|
border-radius: 8px;
|
2022-07-27 14:39:29 +01:00
|
|
|
/* Reserve space for external timestamps, but also cap the width */
|
2023-05-04 12:19:26 +00:00
|
|
|
max-width: min(calc(100% - 2 * var(--MessageTimestamp-width)), 600px);
|
2020-11-04 17:00:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: grid;
|
2022-01-25 13:10:17 +00:00
|
|
|
grid-template-columns: 24px minmax(0, 1fr) min-content min-content;
|
2020-11-04 17:00:07 +00:00
|
|
|
|
2026-01-05 17:14:51 +00:00
|
|
|
svg {
|
2020-11-04 17:00:07 +00:00
|
|
|
position: relative;
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
grid-row: 1 / 3;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
content: "";
|
2022-07-07 09:24:24 +00:00
|
|
|
inset: 0;
|
2020-11-04 17:00:07 +00:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
|
mask-position: center;
|
|
|
|
|
mask-size: contain;
|
2022-07-07 09:24:24 +00:00
|
|
|
margin-top: $spacing-4;
|
2020-11-04 17:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
2022-07-07 09:24:24 +00:00
|
|
|
.mx_EventTileBubble_title,
|
|
|
|
|
.mx_EventTileBubble_subtitle {
|
|
|
|
|
grid-column: 2;
|
2020-11-04 17:00:07 +00:00
|
|
|
overflow-wrap: break-word;
|
2023-10-26 12:37:32 +05:30
|
|
|
min-inline-size: 50px;
|
2020-11-04 17:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_EventTileBubble_title {
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-11-04 17:00:07 +00:00
|
|
|
font-size: $font-15px;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_EventTileBubble_subtitle {
|
2020-11-05 15:54:21 +00:00
|
|
|
font-size: $font-12px;
|
2020-11-04 17:00:07 +00:00
|
|
|
grid-row: 2;
|
|
|
|
|
}
|
2022-01-25 13:10:17 +00:00
|
|
|
|
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
|
grid-column: 4;
|
|
|
|
|
grid-row: 1 / 3;
|
|
|
|
|
align-self: center;
|
2022-07-07 09:24:24 +00:00
|
|
|
margin-left: $spacing-16;
|
2022-01-25 13:10:17 +00:00
|
|
|
}
|
2020-11-04 17:00:07 +00:00
|
|
|
}
|