2021-06-19 01:59:22 +08:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_RoomView_body[data-layout="bubble"] {
|
2022-01-17 18:01:31 +08:00
|
|
|
.mx_RoomView_timeline,
|
|
|
|
.mx_RoomView_statusArea,
|
|
|
|
.mx_MessageComposer {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2022-01-12 01:21:59 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile[data-layout="bubble"],
|
|
|
|
.mx_GenericEventListSummary[data-layout="bubble"] {
|
2021-06-19 01:59:22 +08:00
|
|
|
--avatarSize: 32px;
|
2021-07-05 22:22:18 +08:00
|
|
|
--gutterSize: 11px;
|
2021-07-01 00:04:07 +08:00
|
|
|
--cornerRadius: 12px;
|
2021-06-19 01:59:22 +08:00
|
|
|
--maxWidth: 70%;
|
2021-07-01 21:56:34 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* For both event tile and event list summary */
|
2022-06-10 16:21:22 +08:00
|
|
|
--EventTile_bubble-margin-inline-start: 49px;
|
|
|
|
--EventTile_bubble-margin-inline-end: 60px;
|
2022-07-06 18:16:24 +08:00
|
|
|
|
|
|
|
margin-inline-start: var(--EventTile_bubble-margin-inline-start);
|
|
|
|
margin-inline-end: var(--EventTile_bubble-margin-inline-end);
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile[data-layout="bubble"] {
|
2022-06-17 01:47:37 +08:00
|
|
|
--EventTile_bubble_line-margin-inline-start: -9px;
|
|
|
|
--EventTile_bubble_line-margin-inline-end: -12px;
|
2022-06-15 23:50:35 +08:00
|
|
|
--EventTile_bubble_gap-inline: 5px;
|
2022-06-10 16:21:22 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
position: relative;
|
2022-12-04 06:31:40 +08:00
|
|
|
/* Other half of the gutter is provided by margin-bottom on the last tile
|
|
|
|
of the section */
|
|
|
|
margin-top: calc(var(--gutterSize) / 2);
|
2022-06-10 16:21:22 +08:00
|
|
|
margin-left: var(--EventTile_bubble-margin-inline-start);
|
2021-09-14 11:32:01 +08:00
|
|
|
font-size: $font-14px;
|
2021-07-07 17:23:38 +08:00
|
|
|
|
2022-06-30 19:37:43 +08:00
|
|
|
.mx_MessageTimestamp {
|
2022-07-27 21:39:29 +08:00
|
|
|
width: unset; /* Cancel the default width */
|
2022-06-30 19:37:43 +08:00
|
|
|
max-width: var(--MessageTimestamp-max-width);
|
|
|
|
}
|
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary {
|
2021-10-19 16:31:28 +08:00
|
|
|
clear: both;
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
|
2022-01-24 21:51:57 +08:00
|
|
|
.mx_EventTile_content {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2021-08-26 22:19:46 +08:00
|
|
|
&.mx_EventTile_highlight {
|
|
|
|
&::before {
|
|
|
|
background-color: $event-highlight-bg-color;
|
|
|
|
}
|
2021-08-08 21:00:25 +08:00
|
|
|
}
|
|
|
|
|
2021-07-01 21:23:00 +08:00
|
|
|
/* For replies */
|
|
|
|
.mx_EventTile {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2021-07-29 17:12:07 +08:00
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: -1px;
|
|
|
|
bottom: -1px;
|
2022-06-10 16:21:22 +08:00
|
|
|
left: calc(-1 * var(--EventTile_bubble-margin-inline-start));
|
|
|
|
right: calc(-1 * var(--EventTile_bubble-margin-inline-end));
|
2021-07-29 17:12:07 +08:00
|
|
|
z-index: -1;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2021-07-22 22:48:55 +08:00
|
|
|
&:hover,
|
|
|
|
&.mx_EventTile_selected {
|
2021-07-07 17:23:38 +08:00
|
|
|
&::before {
|
|
|
|
background: $eventbubble-bg-hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
img {
|
|
|
|
box-shadow: 0 0 0 3px $eventbubble-bg-hover;
|
|
|
|
}
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
|
|
|
|
2022-03-23 06:14:55 +08:00
|
|
|
.mx_DisambiguatedProfile,
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_line {
|
2022-05-25 22:08:43 +08:00
|
|
|
--EventBubbleTile_line-max-width: 70%;
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
width: fit-content;
|
2022-07-27 21:39:29 +08:00
|
|
|
max-width: var(--EventBubbleTile_line-max-width); /* Align message bubble and displayName */
|
|
|
|
line-height: $font-18px; /* fixed line height to prevent emoji from being taller than text */
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* other users profile on bubble layout */
|
2022-05-22 15:07:29 +08:00
|
|
|
> .mx_DisambiguatedProfile {
|
2022-07-27 21:39:29 +08:00
|
|
|
white-space: normal; /* display mxid */
|
2022-05-22 15:07:29 +08:00
|
|
|
|
|
|
|
.mx_DisambiguatedProfile_displayName {
|
2022-07-27 21:39:29 +08:00
|
|
|
white-space: nowrap; /* truncate long display names */
|
2022-05-22 15:07:29 +08:00
|
|
|
margin-inline-end: 5px;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* For RTL displayName */
|
2022-05-22 15:07:29 +08:00
|
|
|
unicode-bidi: embed;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DisambiguatedProfile_mxid {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-inline-start: 0; /* Align mxid with truncated displayName
|
|
|
|
inside mx_EventTile[data-layout="bubble"] */
|
2022-05-22 15:07:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* inside mx_RoomView_MessageList, outside of mx_ReplyTile */
|
|
|
|
/* (on the main panel and the chat panel with a maximized widget) */
|
2022-05-03 21:28:17 +08:00
|
|
|
> .mx_DisambiguatedProfile,
|
2022-07-27 21:39:29 +08:00
|
|
|
/* inside a thread, outside of mx_ReplyTile */
|
2022-05-03 21:28:17 +08:00
|
|
|
.mx_EventTile_senderDetails > .mx_DisambiguatedProfile {
|
2021-07-07 21:13:58 +08:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
2021-07-13 16:15:12 +08:00
|
|
|
left: 2px;
|
2021-09-14 11:32:01 +08:00
|
|
|
font-size: $font-15px;
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
|
|
|
|
2021-12-23 23:48:00 +08:00
|
|
|
.mx_MessageActionBar {
|
|
|
|
top: -28px;
|
2022-07-27 21:39:29 +08:00
|
|
|
z-index: 9; /* above the avatar */
|
2021-12-23 23:48:00 +08:00
|
|
|
}
|
|
|
|
|
2022-01-12 00:04:39 +08:00
|
|
|
.mx_MediaBody {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* leave space for the timestamp */
|
2022-01-12 00:04:39 +08:00
|
|
|
padding-right: 48px;
|
|
|
|
}
|
|
|
|
|
2022-05-23 15:02:13 +08:00
|
|
|
.mx_MImageBody {
|
|
|
|
.mx_MImageBody_thumbnail_container {
|
|
|
|
justify-content: center;
|
|
|
|
min-height: calc(1.8rem + var(--gutterSize) + var(--gutterSize));
|
|
|
|
min-width: calc(1.8rem + var(--gutterSize) + var(--gutterSize));
|
|
|
|
}
|
2022-04-15 02:07:34 +08:00
|
|
|
}
|
|
|
|
|
2022-09-06 12:28:01 +08:00
|
|
|
.mx_LegacyCallEvent {
|
2022-01-12 01:11:08 +08:00
|
|
|
background-color: unset;
|
|
|
|
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-color: $quinary-content;
|
|
|
|
}
|
|
|
|
|
2022-06-17 01:47:37 +08:00
|
|
|
.mx_ReactionsRow {
|
|
|
|
margin-inline: var(--EventTile_bubble_line-margin-inline-start) var(--EventTile_bubble_line-margin-inline-end);
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-self="false"] {
|
2021-07-07 19:00:31 +08:00
|
|
|
.mx_EventTile_line {
|
|
|
|
border-bottom-right-radius: var(--cornerRadius);
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2022-01-25 03:01:20 +08:00
|
|
|
border-bottom-right-radius: var(--cornerRadius) !important;
|
2021-10-28 22:32:30 +08:00
|
|
|
}
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
2022-01-18 18:37:44 +08:00
|
|
|
|
2021-07-07 19:15:25 +08:00
|
|
|
.mx_EventTile_avatar {
|
2021-07-13 16:15:12 +08:00
|
|
|
left: -34px;
|
2021-07-07 19:15:25 +08:00
|
|
|
}
|
|
|
|
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_MessageActionBar {
|
2022-05-16 23:44:05 +08:00
|
|
|
inset-inline-start: calc(100% - var(--MessageActionBar-size-box));
|
2022-07-27 21:39:29 +08:00
|
|
|
right: initial; /* Reset the default value */
|
2022-01-19 09:48:07 +08:00
|
|
|
}
|
|
|
|
|
2022-05-11 01:01:46 +08:00
|
|
|
.mx_ThreadSummary {
|
|
|
|
margin-inline-start: calc(-1 * var(--gutterSize));
|
|
|
|
margin-inline-end: auto;
|
|
|
|
}
|
|
|
|
|
2022-06-17 01:47:37 +08:00
|
|
|
.mx_ReactionsRow {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2021-07-07 19:15:25 +08:00
|
|
|
--backgroundColor: $eventbubble-others-bg;
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
2022-01-18 18:37:44 +08:00
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-self="true"] {
|
2021-07-07 19:00:31 +08:00
|
|
|
.mx_EventTile_line {
|
2022-04-21 03:24:34 +08:00
|
|
|
margin-inline-start: auto;
|
2021-10-28 22:32:30 +08:00
|
|
|
border-bottom-left-radius: var(--cornerRadius);
|
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2022-01-25 03:01:20 +08:00
|
|
|
border-bottom-left-radius: var(--cornerRadius) !important;
|
2021-10-28 22:32:30 +08:00
|
|
|
}
|
2021-07-07 19:15:25 +08:00
|
|
|
}
|
2021-10-19 16:31:28 +08:00
|
|
|
|
2022-01-18 18:37:44 +08:00
|
|
|
.mx_EventTile_sticker {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* align timestamp with those inside bubbles */
|
2022-01-18 18:37:44 +08:00
|
|
|
margin-right: 32px;
|
|
|
|
}
|
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary {
|
2022-05-11 01:01:46 +08:00
|
|
|
margin-inline-start: auto;
|
|
|
|
margin-inline-end: calc(-1 * var(--gutterSize));
|
2021-10-19 16:31:28 +08:00
|
|
|
}
|
|
|
|
|
2022-03-23 06:14:55 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
2021-07-07 19:15:25 +08:00
|
|
|
display: none;
|
|
|
|
}
|
2021-07-22 21:22:18 +08:00
|
|
|
|
2022-03-23 06:14:55 +08:00
|
|
|
.mx_ReplyTile .mx_DisambiguatedProfile {
|
2021-07-22 21:22:18 +08:00
|
|
|
display: block;
|
2022-06-20 22:26:34 +08:00
|
|
|
max-width: 100%;
|
2021-07-22 21:22:18 +08:00
|
|
|
}
|
|
|
|
|
2021-07-07 19:15:25 +08:00
|
|
|
.mx_ReactionsRow {
|
2022-06-17 01:47:37 +08:00
|
|
|
justify-content: flex-end;
|
2021-07-07 19:15:25 +08:00
|
|
|
|
|
|
|
> :last-child {
|
2022-07-27 21:39:29 +08:00
|
|
|
order: -1; /* Moving the "add reaction button" before the reactions */
|
2021-07-07 19:15:25 +08:00
|
|
|
}
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
2022-05-16 23:44:05 +08:00
|
|
|
|
2021-07-07 19:15:25 +08:00
|
|
|
.mx_EventTile_avatar {
|
2022-07-27 21:39:29 +08:00
|
|
|
top: -19px; /* height of the sender block */
|
2021-07-07 21:13:58 +08:00
|
|
|
right: -35px;
|
2021-07-07 19:15:25 +08:00
|
|
|
}
|
|
|
|
|
2022-01-12 00:04:39 +08:00
|
|
|
.mx_MediaBody {
|
|
|
|
background: $eventbubble-self-bg;
|
|
|
|
}
|
|
|
|
|
2022-05-16 23:44:05 +08:00
|
|
|
.mx_MessageActionBar {
|
|
|
|
inset-inline-end: 0;
|
|
|
|
}
|
|
|
|
|
2021-07-07 19:15:25 +08:00
|
|
|
--backgroundColor: $eventbubble-self-bg;
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_line {
|
2021-07-07 18:04:28 +08:00
|
|
|
position: relative;
|
2021-07-01 00:04:07 +08:00
|
|
|
display: flex;
|
2022-06-15 23:50:35 +08:00
|
|
|
gap: 5px var(--EventTile_bubble_gap-inline);
|
2022-06-17 01:47:37 +08:00
|
|
|
margin-block: 0;
|
|
|
|
margin-inline: var(--EventTile_bubble_line-margin-inline-start) var(--EventTile_bubble_line-margin-inline-end);
|
2021-10-28 22:32:30 +08:00
|
|
|
border-top-left-radius: var(--cornerRadius);
|
|
|
|
border-top-right-radius: var(--cornerRadius);
|
2021-12-23 23:48:16 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* the selector here is quite weird because timestamps can appear linked & unlinked and in different places */
|
|
|
|
/* in the DOM depending on the specific rendering context */
|
|
|
|
> a, /* timestamp wrapper anchor */
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_MessageActionBar + .mx_MessageTimestamp {
|
2021-07-01 00:04:07 +08:00
|
|
|
position: absolute;
|
2021-12-23 23:48:16 +08:00
|
|
|
padding: 4px 8px;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2022-07-27 21:39:29 +08:00
|
|
|
z-index: 3; /* above media and location share maps */
|
2021-07-01 00:04:07 +08:00
|
|
|
}
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-05-24 15:06:04 +08:00
|
|
|
&.mx_EventTile_mediaLine {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* TODO: Use a common class name instead */
|
2022-05-24 15:06:04 +08:00
|
|
|
.mx_MFileBody,
|
|
|
|
.mx_MAudioBody {
|
2022-07-27 21:39:29 +08:00
|
|
|
max-width: 100%; /* avoid overflow */
|
2022-05-24 15:06:04 +08:00
|
|
|
}
|
2022-01-25 03:01:20 +08:00
|
|
|
|
2022-05-24 15:06:04 +08:00
|
|
|
.mx_MVoiceMessageBody {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* allow the event to be collapsed, this causes the waveform to get cropped */
|
2022-05-24 15:06:04 +08:00
|
|
|
min-width: 0;
|
2022-01-13 17:32:27 +08:00
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* we put the timestamps for media (other than stickers) atop the media */
|
2022-05-24 15:06:04 +08:00
|
|
|
&.mx_EventTile_image {
|
|
|
|
.mx_MessageTimestamp {
|
2022-09-08 22:54:35 +08:00
|
|
|
border-radius: $timeline-image-border-radius;
|
|
|
|
/* Hardcoded colours because it's the same on all themes */
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 0px 4px 0px 4px;
|
2022-05-24 15:06:04 +08:00
|
|
|
}
|
2022-01-13 17:32:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 18:37:44 +08:00
|
|
|
&.mx_EventTile_sticker {
|
2022-07-27 21:39:29 +08:00
|
|
|
> a, /* timestamp wrapper anchor */
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_MessageActionBar + .mx_MessageTimestamp {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* position timestamps for stickers to the right of the un-bubbled sticker */
|
2022-01-18 18:37:44 +08:00
|
|
|
right: unset;
|
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MStickerBody_wrapper {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 17:31:21 +08:00
|
|
|
.mx_MImageBody {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MImageBody_thumbnail.mx_MImageBody_thumbnail--blurhash {
|
|
|
|
position: unset;
|
2022-01-18 17:31:21 +08:00
|
|
|
}
|
2021-10-28 22:32:30 +08:00
|
|
|
}
|
2021-12-17 02:35:51 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* noinspection CssReplaceWithShorthandSafely */
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody {
|
|
|
|
border-radius: unset;
|
|
|
|
border-top-left-radius: var(--cornerRadius);
|
|
|
|
border-top-right-radius: var(--cornerRadius);
|
|
|
|
}
|
|
|
|
|
2021-12-17 02:35:51 +08:00
|
|
|
.mx_EventTile_e2eIcon {
|
2022-07-27 21:39:29 +08:00
|
|
|
flex-shrink: 0; /* keep it at full size */
|
2021-12-17 02:35:51 +08:00
|
|
|
}
|
2021-10-28 22:32:30 +08:00
|
|
|
}
|
|
|
|
|
2022-01-10 20:53:11 +08:00
|
|
|
&:not(.mx_EventTile_noBubble) .mx_EventTile_line:not(.mx_EventTile_mediaLine) {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* make the top and bottom padding 1px smaller so that we can pad
|
|
|
|
.mx_EventTile_content by 1px */
|
|
|
|
/* to avoid anti-zalgo cutting off our larger than text emojis. */
|
2022-01-27 17:45:52 +08:00
|
|
|
padding: calc(var(--gutterSize) - 1px);
|
2022-07-27 21:39:29 +08:00
|
|
|
padding-right: 60px; /* space for the timestamp */
|
2021-10-28 22:32:30 +08:00
|
|
|
background: var(--backgroundColor);
|
2022-01-27 17:45:52 +08:00
|
|
|
|
|
|
|
.mx_EventTile_content {
|
|
|
|
padding: 1px;
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&.mx_EventTile_continuation[data-self="false"] .mx_EventTile_line {
|
2021-07-07 18:04:28 +08:00
|
|
|
border-top-left-radius: 0;
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2021-10-28 22:32:30 +08:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2021-07-07 18:04:28 +08:00
|
|
|
}
|
2022-07-15 21:53:23 +08:00
|
|
|
&.mx_EventTile_lastInSection[data-self="false"] .mx_EventTile_line {
|
2021-07-07 18:04:28 +08:00
|
|
|
border-bottom-left-radius: var(--cornerRadius);
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2021-10-28 22:32:30 +08:00
|
|
|
border-bottom-left-radius: var(--cornerRadius);
|
|
|
|
}
|
2021-07-07 18:04:28 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&.mx_EventTile_continuation[data-self="true"] .mx_EventTile_line {
|
2021-07-07 19:00:31 +08:00
|
|
|
border-top-right-radius: 0;
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2021-10-28 22:32:30 +08:00
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
2022-07-15 21:53:23 +08:00
|
|
|
&.mx_EventTile_lastInSection[data-self="true"] .mx_EventTile_line {
|
2021-07-07 19:00:31 +08:00
|
|
|
border-bottom-right-radius: var(--cornerRadius);
|
2021-10-28 22:32:30 +08:00
|
|
|
|
2022-03-29 03:07:02 +08:00
|
|
|
.mx_MImageBody .mx_MImageBody_thumbnail_container,
|
|
|
|
.mx_MVideoBody .mx_MVideoBody_container,
|
2022-01-14 00:42:32 +08:00
|
|
|
.mx_MImageBody::before,
|
2022-01-25 03:01:20 +08:00
|
|
|
.mx_MediaBody,
|
2022-04-12 16:13:55 +08:00
|
|
|
.mx_MLocationBody_map,
|
|
|
|
.mx_MBeaconBody {
|
2021-10-28 22:32:30 +08:00
|
|
|
border-bottom-right-radius: var(--cornerRadius);
|
|
|
|
}
|
2021-07-07 19:00:31 +08:00
|
|
|
}
|
2021-07-07 18:04:28 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_avatar {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2021-06-30 19:06:16 +08:00
|
|
|
line-height: 1;
|
2021-07-23 18:12:52 +08:00
|
|
|
z-index: 9;
|
2021-06-19 01:59:22 +08:00
|
|
|
img {
|
2021-11-10 17:46:33 +08:00
|
|
|
box-shadow: 0 0 0 3px $background;
|
2021-06-19 01:59:22 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 18:09:39 +08:00
|
|
|
&.mx_EventTile_noSender {
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
top: -19px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 20:17:26 +08:00
|
|
|
.mx_BaseAvatar,
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-has-reply="true"] {
|
2021-06-30 19:06:16 +08:00
|
|
|
> .mx_EventTile_line {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
.mx_ReplyChain {
|
2021-07-01 00:04:07 +08:00
|
|
|
.mx_EventTile_reply {
|
2021-07-13 16:15:12 +08:00
|
|
|
max-width: 90%;
|
2021-07-01 00:04:07 +08:00
|
|
|
padding: 0;
|
2022-07-27 21:39:29 +08:00
|
|
|
> a, /* timestamp wrapper anchor */
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_MessageActionBar + .mx_MessageTimestamp {
|
2021-07-01 00:04:07 +08:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile {
|
|
|
|
display: flex;
|
|
|
|
gap: var(--gutterSize);
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
position: static;
|
|
|
|
}
|
2022-03-23 06:14:55 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
2021-07-01 00:04:07 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-30 19:06:16 +08:00
|
|
|
}
|
|
|
|
|
2022-02-01 17:27:14 +08:00
|
|
|
.mx_MPollBody {
|
2022-07-27 21:39:29 +08:00
|
|
|
width: 550px; /* to prevent timestamp overlapping summary text */
|
|
|
|
max-width: 100%; /* prevent overflowing a reply tile */
|
2022-02-01 17:27:14 +08:00
|
|
|
|
|
|
|
.mx_MPollBody_totalVotes {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* align summary text with corner timestamp */
|
2022-02-01 17:27:14 +08:00
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-27 16:23:34 +08:00
|
|
|
&.mx_EventTile_bad {
|
2022-06-28 21:05:19 +08:00
|
|
|
&:hover {
|
|
|
|
&::before {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-27 16:23:34 +08:00
|
|
|
/* Special layout scenario for "Unable To Decrypt (UTD)" events */
|
|
|
|
.mx_EventTile_line {
|
|
|
|
display: grid;
|
|
|
|
grid-template:
|
|
|
|
"reply reply" auto
|
|
|
|
"shield body" auto
|
|
|
|
/ auto 1fr;
|
|
|
|
|
2022-05-27 17:41:53 +08:00
|
|
|
.mx_UnknownBody,
|
|
|
|
.mx_ReplyChain_wrapper,
|
|
|
|
.mx_ViewSourceEvent {
|
2022-07-27 21:39:29 +08:00
|
|
|
min-width: 0; /* Prevent a grid blowout */
|
2022-05-27 17:41:53 +08:00
|
|
|
}
|
|
|
|
|
2022-05-27 16:23:34 +08:00
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
grid-area: shield;
|
2022-12-16 01:24:33 +08:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
2022-05-27 16:23:34 +08:00
|
|
|
}
|
2022-05-25 12:50:36 +08:00
|
|
|
|
2022-12-16 01:24:33 +08:00
|
|
|
.mx_UnknownBody,
|
|
|
|
.mx_DecryptionFailureBody {
|
2022-05-27 16:23:34 +08:00
|
|
|
grid-area: body;
|
|
|
|
}
|
2022-05-25 12:50:36 +08:00
|
|
|
|
2022-05-27 16:23:34 +08:00
|
|
|
.mx_ReplyChain_wrapper {
|
|
|
|
grid-area: reply;
|
|
|
|
}
|
2021-07-07 21:13:58 +08:00
|
|
|
}
|
2022-05-25 12:50:36 +08:00
|
|
|
|
2022-05-27 16:23:34 +08:00
|
|
|
&.mx_EventTile_info {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* "Unable To Decrypt" layout for hidden events */
|
2022-05-27 16:23:34 +08:00
|
|
|
.mx_EventTile_line {
|
2022-07-27 21:39:29 +08:00
|
|
|
gap: 0 9px; /* 9px: margin value of E2E icon */
|
2022-05-27 16:23:34 +08:00
|
|
|
align-items: center;
|
|
|
|
grid-template:
|
|
|
|
"shield source" auto
|
|
|
|
/ auto 1fr;
|
|
|
|
|
|
|
|
.mx_ViewSourceEvent {
|
|
|
|
grid-area: source;
|
|
|
|
}
|
|
|
|
}
|
2021-07-07 21:13:58 +08:00
|
|
|
}
|
2021-06-30 19:06:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MTextBody {
|
2021-07-13 16:15:12 +08:00
|
|
|
max-width: 100%;
|
2021-06-30 19:06:16 +08:00
|
|
|
}
|
2022-01-12 01:11:08 +08:00
|
|
|
|
2022-10-01 03:26:08 +08:00
|
|
|
.mx_LegacyCallEvent_wrapper,
|
|
|
|
.mx_CallEvent_wrapper {
|
2022-01-12 01:11:08 +08:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2021-07-27 17:30:25 +08:00
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile.mx_EventTile_noBubble[data-layout="bubble"] {
|
2021-12-16 03:47:57 +08:00
|
|
|
--backgroundColor: transparent;
|
2022-01-24 21:51:57 +08:00
|
|
|
|
|
|
|
.mx_EventTile_line.mx_EventTile_emote {
|
2022-07-27 21:39:29 +08:00
|
|
|
padding-right: 60px; /* align with bubbles text */
|
2022-01-24 21:51:57 +08:00
|
|
|
font-style: italic;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
> a {
|
|
|
|
/* timestamp anchor wrapper */
|
2022-01-24 21:51:57 +08:00
|
|
|
align-self: center;
|
|
|
|
bottom: unset;
|
|
|
|
top: unset;
|
2022-07-27 21:39:29 +08:00
|
|
|
font-style: normal; /* undo italic above */
|
2022-01-24 21:51:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MEmoteBody {
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
}
|
2021-12-16 03:47:57 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile.mx_EventTile_bubbleContainer[data-layout="bubble"],
|
|
|
|
.mx_EventTile.mx_EventTile_leftAlignedBubble[data-layout="bubble"] {
|
2022-01-25 21:10:17 +08:00
|
|
|
.mx_EventTile_line > a {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* hide this timestamp as the tile will render its own */
|
2022-01-25 21:10:17 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile.mx_EventTile_bubbleContainer[data-layout="bubble"],
|
|
|
|
.mx_EventTile.mx_EventTile_leftAlignedBubble[data-layout="bubble"],
|
|
|
|
.mx_EventTile.mx_EventTile_info[data-layout="bubble"] {
|
2022-06-28 21:05:19 +08:00
|
|
|
padding: 5px 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
2022-07-06 18:16:24 +08:00
|
|
|
|
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_EventTile_info {
|
|
|
|
min-width: 100%;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Preserve alignment with left edge of text in bubbles */
|
2022-07-06 18:16:24 +08:00
|
|
|
margin: 0;
|
|
|
|
}
|
2022-06-28 21:05:19 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile.mx_EventTile_bubbleContainer[data-layout="bubble"],
|
|
|
|
.mx_EventTile.mx_EventTile_leftAlignedBubble[data-layout="bubble"],
|
|
|
|
.mx_EventTile.mx_EventTile_info[data-layout="bubble"],
|
|
|
|
.mx_GenericEventListSummary[data-layout="bubble"][data-expanded="false"] {
|
2021-07-27 17:30:25 +08:00
|
|
|
--backgroundColor: transparent;
|
|
|
|
--gutterSize: 0;
|
|
|
|
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
position: static;
|
|
|
|
order: -1;
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-inline-end: var(--EventTile_bubble_gap-inline); /* Same spacing between E2E icon and a hidden event */
|
2021-07-27 17:30:25 +08:00
|
|
|
}
|
2021-07-29 16:04:47 +08:00
|
|
|
|
2021-07-29 16:27:00 +08:00
|
|
|
.mx_EventTile_e2eIcon {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-inline-start: 0; /* mx_EventTile_avatar has margin-inline-end, so margin is not needed here */
|
2022-06-15 23:50:35 +08:00
|
|
|
align-self: center;
|
2021-07-29 16:27:00 +08:00
|
|
|
}
|
|
|
|
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_EventTile_line {
|
2022-07-27 21:39:29 +08:00
|
|
|
> a, /* timestamp wrapper anchor */
|
2022-01-19 09:48:07 +08:00
|
|
|
.mx_MessageActionBar + .mx_MessageTimestamp {
|
|
|
|
right: auto;
|
|
|
|
left: -77px;
|
|
|
|
bottom: unset;
|
|
|
|
align-self: center;
|
|
|
|
|
|
|
|
.mx_MessageTimestamp,
|
|
|
|
&.mx_MessageTimestamp {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2022-01-14 06:45:54 +08:00
|
|
|
}
|
2021-07-29 16:27:00 +08:00
|
|
|
}
|
2021-07-27 17:30:25 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_GenericEventListSummary[data-layout="bubble"] {
|
2022-06-28 21:05:19 +08:00
|
|
|
.mx_EventTile.mx_EventTile_info .mx_EventTile_line {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Avoid overflow of event info by cancelling width settings */
|
2022-06-28 21:05:19 +08:00
|
|
|
width: 100%;
|
|
|
|
min-width: 0;
|
|
|
|
max-width: 100%;
|
2021-07-27 17:30:25 +08:00
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* increase margin between ELS and the next Event to not have our user avatar overlap the expand/collapse button */
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-expanded="false"] + .mx_EventTile[data-layout="bubble"][data-self="true"] {
|
2022-06-28 21:05:19 +08:00
|
|
|
margin-top: 20px;
|
2022-04-29 00:33:54 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-expanded="true"] .mx_EventTile_info {
|
2022-06-28 21:05:19 +08:00
|
|
|
padding: 2px 0;
|
|
|
|
margin-right: 0;
|
2022-06-10 16:21:22 +08:00
|
|
|
|
2022-06-28 21:05:19 +08:00
|
|
|
.mx_MessageActionBar {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Reset .mx_EventTile[data-layout="bubble"][data-self="false"] .mx_MessageActionBar */
|
2022-07-15 21:53:23 +08:00
|
|
|
inset-inline-start: initial;
|
2022-07-27 21:39:29 +08:00
|
|
|
inset-inline-end: 48px; /* align with that of right-column bubbles */
|
2022-06-10 16:21:22 +08:00
|
|
|
}
|
|
|
|
|
2022-06-28 21:05:19 +08:00
|
|
|
.mx_ReadReceiptGroup {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* match alignment to RRs of chat bubbles */
|
2022-06-28 21:05:19 +08:00
|
|
|
inset-inline-end: calc(-1 * var(--ReadReceiptGroup_EventBubbleTile-spacing-end) + 60px);
|
2022-05-18 21:10:02 +08:00
|
|
|
}
|
2022-01-18 17:31:21 +08:00
|
|
|
|
2022-06-28 21:05:19 +08:00
|
|
|
&::before {
|
2022-07-27 21:39:29 +08:00
|
|
|
inset-inline-end: 0; /* match alignment of the hover background to that of chat bubbles */
|
2022-01-18 17:31:21 +08:00
|
|
|
}
|
2021-12-17 02:34:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile_tileError[data-layout="bubble"] .mx_EventTile_line {
|
2022-07-27 21:39:29 +08:00
|
|
|
flex-direction: column; /* restore the centering */
|
2022-01-27 21:34:26 +08:00
|
|
|
}
|