2019-10-13 20:08:50 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-04-10 21:27:39 +08:00
|
|
|
Copyright 2020 Tulir Asokan <tulir@maunium.net>
|
2019-10-13 20:08:50 +08:00
|
|
|
|
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.
|
2019-10-13 20:08:50 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ReplyTile {
|
|
|
|
position: relative;
|
2021-07-17 01:26:04 +08:00
|
|
|
padding: 2px 0;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2021-07-14 16:14:44 +08:00
|
|
|
|
2021-07-15 21:17:41 +08:00
|
|
|
&.mx_ReplyTile_audio .mx_MFileBody_info_icon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/speaker.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_ReplyTile_video .mx_MFileBody_info_icon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/call/video-call.svg");
|
|
|
|
}
|
|
|
|
|
2021-07-17 01:26:04 +08:00
|
|
|
> a {
|
2022-12-05 20:50:51 +08:00
|
|
|
display: grid;
|
|
|
|
grid-template:
|
2022-12-12 19:24:14 +08:00
|
|
|
"sender" auto
|
2022-12-05 20:50:51 +08:00
|
|
|
"message" auto
|
2023-01-18 09:57:58 +08:00
|
|
|
/ 100%;
|
2021-07-17 01:26:04 +08:00
|
|
|
text-decoration: none;
|
2022-11-29 15:49:43 +08:00
|
|
|
color: $secondary-content;
|
|
|
|
transition: color ease 0.15s;
|
|
|
|
gap: 2px;
|
2024-01-03 02:56:39 +08:00
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
// avoid overflow with wide content
|
2022-11-29 15:49:43 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RedactedBody {
|
|
|
|
line-height: $font-18px;
|
2021-07-02 21:09:02 +08:00
|
|
|
}
|
2019-10-13 20:08:50 +08:00
|
|
|
|
2022-01-17 23:04:37 +08:00
|
|
|
.mx_RedactedBody,
|
|
|
|
.mx_HiddenBody {
|
2021-07-17 01:26:04 +08:00
|
|
|
padding: 4px 0 2px 20px;
|
2020-04-10 21:03:27 +08:00
|
|
|
|
2021-07-17 01:26:04 +08:00
|
|
|
&::before {
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
2022-11-29 15:49:43 +08:00
|
|
|
top: 3px;
|
2021-07-17 01:26:04 +08:00
|
|
|
}
|
2019-10-13 20:08:50 +08:00
|
|
|
}
|
2021-07-15 21:38:07 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* We do reply size limiting with CSS to avoid duplicating the TextualBody component. */
|
2021-07-17 01:26:04 +08:00
|
|
|
.mx_EventTile_content {
|
2022-12-05 20:50:51 +08:00
|
|
|
grid-area: message;
|
2021-07-17 01:26:04 +08:00
|
|
|
$reply-lines: 2;
|
2022-11-29 15:49:43 +08:00
|
|
|
$line-height: $font-18px;
|
2021-07-17 01:26:04 +08:00
|
|
|
|
2020-04-10 21:18:06 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: $reply-lines;
|
2021-07-17 01:26:04 +08:00
|
|
|
|
|
|
|
.mx_EventTile_body.mx_EventTile_bigEmoji {
|
2022-07-27 21:39:29 +08:00
|
|
|
line-height: $font-22px !important; /* Same as var(--EventTile_group_line-line-height) */
|
|
|
|
font-size: $font-14px !important; /* Override the big emoji override */
|
2021-07-17 01:26:04 +08:00
|
|
|
}
|
|
|
|
|
2024-08-28 17:45:07 +08:00
|
|
|
// in order to keep the message on two lines, we need to make the body inline
|
|
|
|
.mx_EventTile_body {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2022-11-29 15:49:43 +08:00
|
|
|
// Hide line numbers and edited indicator
|
2022-12-12 19:24:14 +08:00
|
|
|
.mx_EventTile_lineNumbers,
|
|
|
|
.mx_EventTile_edited {
|
2021-07-17 01:26:04 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Hack to cut content in <pre> tags too */
|
2021-07-17 01:26:04 +08:00
|
|
|
.mx_EventTile_pre_container > pre {
|
2021-10-25 17:42:32 +08:00
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
2021-07-17 01:26:04 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: $reply-lines;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdown-body blockquote,
|
|
|
|
.markdown-body dl,
|
|
|
|
.markdown-body ol,
|
|
|
|
.markdown-body p,
|
|
|
|
.markdown-body pre,
|
|
|
|
.markdown-body table,
|
|
|
|
.markdown-body ul {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2020-04-10 21:18:06 +08:00
|
|
|
}
|
2021-07-13 14:24:18 +08:00
|
|
|
|
2021-07-17 01:26:04 +08:00
|
|
|
&.mx_ReplyTile_info {
|
|
|
|
padding-top: 0;
|
2020-04-10 21:18:06 +08:00
|
|
|
}
|
2019-10-13 20:08:50 +08:00
|
|
|
|
2022-12-05 20:50:51 +08:00
|
|
|
&.mx_ReplyTile_inline > a {
|
|
|
|
/* Render replies to emotes inline with the sender avatar */
|
|
|
|
grid-template:
|
|
|
|
"sender message" auto
|
2022-12-12 19:24:14 +08:00
|
|
|
/ max-content auto;
|
2024-01-03 02:56:39 +08:00
|
|
|
gap: 4px; /* increase spacing */
|
2022-12-05 20:50:51 +08:00
|
|
|
}
|
|
|
|
|
2022-11-29 15:49:43 +08:00
|
|
|
.mx_ReplyTile_sender {
|
2022-12-05 20:50:51 +08:00
|
|
|
grid-area: sender;
|
2022-11-29 15:49:43 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
|
|
|
|
|
|
|
.mx_DisambiguatedProfile {
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2022-11-29 15:49:43 +08:00
|
|
|
|
2024-01-03 02:56:39 +08:00
|
|
|
display: inline-block; /* anti-zalgo, with overflow hidden */
|
2022-11-29 15:49:43 +08:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
2024-01-03 02:56:39 +08:00
|
|
|
/* truncate long display names */
|
2022-11-29 15:49:43 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_BaseAvatar {
|
2024-01-03 02:56:39 +08:00
|
|
|
line-height: 14px; /* To match size */
|
2022-11-29 15:49:43 +08:00
|
|
|
}
|
2021-07-17 01:26:04 +08:00
|
|
|
}
|
2019-10-13 20:08:50 +08:00
|
|
|
}
|