2021-11-30 00:06:15 +08:00
|
|
|
/*
|
2022-03-30 19:43:54 +08:00
|
|
|
Copyright 2021 - 2022 The Matrix.org Foundation C.I.C.
|
2021-11-30 00:06:15 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_TimelineCard {
|
2022-03-30 19:43:54 +08:00
|
|
|
.mx_TimelineCard_timeline {
|
|
|
|
overflow: hidden;
|
2022-07-27 21:39:29 +08:00
|
|
|
position: relative; /* offset parent for jump to bottom button */
|
2022-03-30 19:43:54 +08:00
|
|
|
flex: 1;
|
2022-04-13 23:33:54 +08:00
|
|
|
border-radius: 8px;
|
2022-03-30 19:43:54 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 21:11:18 +08:00
|
|
|
.mx_NewRoomIntro {
|
2022-06-10 16:21:22 +08:00
|
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-inline);
|
|
|
|
margin-inline-end: var(--BaseCard_EventTile-spacing-inline);
|
2022-02-08 21:11:18 +08:00
|
|
|
}
|
|
|
|
|
2021-12-14 00:46:32 +08:00
|
|
|
.mx_EventTile_content {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
|
2022-06-10 16:21:22 +08:00
|
|
|
.mx_EventTile {
|
2022-07-01 00:56:03 +08:00
|
|
|
.mx_ThreadSummary {
|
|
|
|
position: relative;
|
|
|
|
padding-right: 11px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: -16px;
|
|
|
|
height: 1px;
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid $message-action-bar-border-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-layout="irc"],
|
|
|
|
&[data-layout="group"] {
|
2022-07-02 23:51:57 +08:00
|
|
|
--TimelineCard_ReadReceiptGroup-inset-block-start: -6px;
|
|
|
|
|
2022-06-29 13:41:52 +08:00
|
|
|
&.mx_EventTile_info .mx_EventTile_line,
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding: var(--BaseCard_EventTile_line-padding-block) var(--BaseCard_EventTile-spacing-inline);
|
2023-05-04 20:19:26 +08:00
|
|
|
padding-inline-end: var(--MessageTimestamp-width); /* ensure timestamp is not hidden */
|
2022-06-29 13:41:52 +08:00
|
|
|
|
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
inset-inline-start: $spacing-8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_info {
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
inset-inline-start: 18px;
|
|
|
|
}
|
2023-07-03 23:30:55 +08:00
|
|
|
|
|
|
|
/* Info events should have the same size as state events, those
|
|
|
|
* are usually wrapped in a generic event list summary */
|
|
|
|
font: var(--cpd-font-body-sm-regular);
|
2022-06-29 13:41:52 +08:00
|
|
|
}
|
|
|
|
|
2022-06-26 01:22:52 +08:00
|
|
|
.mx_EventTile_avatar {
|
2022-06-29 13:41:52 +08:00
|
|
|
inset-inline-start: -3px;
|
2022-06-26 01:22:52 +08:00
|
|
|
}
|
2022-06-26 22:01:28 +08:00
|
|
|
|
|
|
|
.mx_EventTile_msgOption {
|
|
|
|
margin-inline-end: 0;
|
2022-07-13 05:30:59 +08:00
|
|
|
|
|
|
|
.mx_ReadReceiptGroup {
|
|
|
|
top: var(--TimelineCard_ReadReceiptGroup-inset-block-start);
|
|
|
|
}
|
2022-06-26 22:01:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DisambiguatedProfile,
|
|
|
|
.mx_ReactionsRow,
|
|
|
|
.mx_ThreadSummary {
|
|
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-inline);
|
|
|
|
}
|
|
|
|
|
2022-06-27 21:16:40 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
2022-07-27 21:39:29 +08:00
|
|
|
max-width: calc(100% - var(--BaseCard_EventTile-spacing-inline)); /* instead of $left-gutter */
|
2022-06-27 21:16:40 +08:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:01:28 +08:00
|
|
|
.mx_ReplyTile .mx_DisambiguatedProfile {
|
|
|
|
margin-inline-start: 0;
|
2022-06-27 21:16:40 +08:00
|
|
|
max-width: unset;
|
2022-06-26 22:01:28 +08:00
|
|
|
}
|
|
|
|
|
2022-06-30 16:59:11 +08:00
|
|
|
.mx_MessageTimestamp {
|
|
|
|
inset-inline: auto 0;
|
2022-07-06 00:02:55 +08:00
|
|
|
font-size: $font-12px;
|
2022-06-30 16:59:11 +08:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:01:28 +08:00
|
|
|
.mx_ReactionsRow {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* See: var(--ThreadView_group_spacing-end) for ReactionsRow on _EventTile.pcss */
|
2022-07-15 21:53:23 +08:00
|
|
|
margin-inline-end: $spacing-8;
|
2022-06-26 22:01:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ThreadSummary {
|
|
|
|
margin-inline-end: 0;
|
|
|
|
max-width: min(calc(100% - 36px), 600px);
|
|
|
|
}
|
2022-06-26 01:22:52 +08:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-layout="irc"] {
|
2022-06-30 16:59:11 +08:00
|
|
|
.mx_EventTile_avatar,
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-layout="group"] {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Read receipt group on compact modern layout */
|
|
|
|
/* This is required because mx_TimelineCard is a child element wrapped by mx_MatrixChat_useCompactLayout, */
|
|
|
|
/* which specifies the default position of mx_ReadReceiptGroup on compact modern layout. */
|
2022-07-02 23:51:57 +08:00
|
|
|
.mx_MatrixChat_useCompactLayout & .mx_ReadReceiptGroup {
|
|
|
|
top: var(--TimelineCard_ReadReceiptGroup-inset-block-start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-layout="bubble"] {
|
2022-06-10 16:21:22 +08:00
|
|
|
&::before {
|
2022-07-27 21:39:29 +08:00
|
|
|
z-index: auto; /* enable background color on hover */
|
2022-05-14 02:04:27 +08:00
|
|
|
}
|
2022-05-07 11:07:51 +08:00
|
|
|
|
2022-06-18 22:29:04 +08:00
|
|
|
&.mx_EventTile_info .mx_MessageActionBar {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* 1px: border width */
|
2023-10-20 21:30:37 +08:00
|
|
|
inset-inline-end: calc(var(--container-gap-width) + 1px);
|
2022-06-18 22:29:04 +08:00
|
|
|
}
|
|
|
|
|
2022-06-10 16:21:22 +08:00
|
|
|
.mx_ReactionsRow {
|
2022-07-27 21:39:29 +08:00
|
|
|
position: relative; /* display on hover */
|
2022-06-10 16:21:22 +08:00
|
|
|
}
|
2022-04-15 05:13:46 +08:00
|
|
|
}
|
2021-12-14 00:46:32 +08:00
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
|
2022-09-06 12:28:01 +08:00
|
|
|
.mx_LegacyCallEvent_wrapper {
|
2021-12-14 00:46:32 +08:00
|
|
|
justify-content: center;
|
|
|
|
margin: auto 5px;
|
2022-09-06 12:28:01 +08:00
|
|
|
.mx_LegacyCallEvent {
|
2021-12-14 00:46:32 +08:00
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
|
2022-07-06 18:44:23 +08:00
|
|
|
.mx_GenericEventListSummary {
|
2022-07-15 21:53:23 +08:00
|
|
|
&[data-layout="irc"],
|
|
|
|
&[data-layout="group"] {
|
2022-07-06 18:44:23 +08:00
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_GenericEventListSummary_unstyledList > .mx_EventTile_info .mx_EventTile_avatar ~ .mx_EventTile_line {
|
|
|
|
padding-inline-start: var(--BaseCard_EventTile-spacing-inline);
|
2023-05-04 20:19:26 +08:00
|
|
|
padding-inline-end: var(--MessageTimestamp-width); /* ensure timestamp is not hidden */
|
2022-07-06 18:44:23 +08:00
|
|
|
}
|
2022-05-18 21:08:39 +08:00
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_WhoIsTypingTile {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-left: -12px; /* undo padding on the message list */
|
2022-02-08 21:11:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_WhoIsTypingTile_avatars {
|
2022-07-27 21:39:29 +08:00
|
|
|
flex-basis: 48px; /* 12 (padding on message list) + 36 (padding on event lines) */
|
2022-02-08 21:11:18 +08:00
|
|
|
}
|
2022-04-13 23:33:54 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
.mx_GenericEventListSummary_unstyledList, /* RR next to a message on the event list summary */
|
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
/* RR next to a message on the messsge list */
|
2022-07-15 21:53:23 +08:00
|
|
|
.mx_EventTile[data-layout="bubble"] {
|
2022-06-02 10:43:07 +08:00
|
|
|
.mx_ReadReceiptGroup {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* 6px: scroll bar width (magic number) */
|
2022-07-15 21:53:23 +08:00
|
|
|
/* stylelint-disable-next-line declaration-colon-space-after */
|
|
|
|
inset-inline-end: calc(
|
2023-05-03 17:24:41 +08:00
|
|
|
-1 * var(--ReadReceiptGroup_EventBubbleTile-spacing-end) + var(--container-gap-width) + 6px
|
2022-07-15 21:53:23 +08:00
|
|
|
);
|
2022-06-02 10:43:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_info {
|
|
|
|
.mx_ReadReceiptGroup {
|
2022-07-27 21:39:29 +08:00
|
|
|
inset-inline-end: -4px; /* align with RR outside of info tile */
|
2022-06-02 10:43:07 +08:00
|
|
|
}
|
|
|
|
}
|
2022-04-13 23:33:54 +08:00
|
|
|
}
|
|
|
|
}
|
2021-11-30 00:06:15 +08:00
|
|
|
}
|