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;
|
|
|
|
position: relative; // offset parent for jump to bottom button
|
|
|
|
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-06-26 01:22:52 +08:00
|
|
|
&[data-layout=irc],
|
|
|
|
&[data-layout=group] {
|
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);
|
|
|
|
padding-inline-end: $MessageTimestamp_width; // ensure timestamp is not hidden
|
|
|
|
|
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
inset-inline-start: $spacing-8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_info {
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
inset-inline-start: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DisambiguatedProfile,
|
|
|
|
.mx_ReactionsRow,
|
|
|
|
.mx_ThreadSummary {
|
|
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-inline);
|
|
|
|
}
|
|
|
|
|
2022-06-27 21:16:40 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
|
|
|
max-width: calc(100% - var(--BaseCard_EventTile-spacing-inline)); // instead of $left-gutter
|
|
|
|
}
|
|
|
|
|
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-06-26 22:01:28 +08:00
|
|
|
.mx_ReactionsRow {
|
|
|
|
margin-inline-end: $spacing-8; // See: var(--ThreadView_group_spacing-end) for ReactionsRow on _EventTile.scss
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ThreadSummary {
|
|
|
|
margin-inline-end: 0;
|
|
|
|
max-width: min(calc(100% - 36px), 600px);
|
|
|
|
}
|
2022-06-26 01:22:52 +08:00
|
|
|
}
|
|
|
|
|
2022-06-30 16:59:11 +08:00
|
|
|
&[data-layout=irc] {
|
|
|
|
.mx_EventTile_avatar,
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-10 16:21:22 +08:00
|
|
|
&[data-layout=bubble] {
|
|
|
|
&::before {
|
|
|
|
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 {
|
|
|
|
inset-inline-end: calc($container-gap-width + var(--BaseCard_padding-inline) + 1px); // 1px: border width
|
|
|
|
}
|
|
|
|
|
2022-06-10 16:21:22 +08:00
|
|
|
.mx_ReactionsRow {
|
|
|
|
position: relative; // display on hover
|
|
|
|
}
|
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-05-21 17:34:00 +08:00
|
|
|
.mx_EventTile,
|
|
|
|
.mx_GenericEventListSummary {
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-14 00:46:32 +08:00
|
|
|
.mx_CallEvent_wrapper {
|
|
|
|
justify-content: center;
|
|
|
|
margin: auto 5px;
|
|
|
|
.mx_CallEvent {
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
|
2022-05-18 21:08:39 +08:00
|
|
|
.mx_GenericEventListSummary:not([data-layout=bubble]) {
|
|
|
|
.mx_EventTile_line,
|
|
|
|
> .mx_GenericEventListSummary_unstyledList > .mx_EventTile_info .mx_EventTile_avatar ~ .mx_EventTile_line {
|
2022-06-10 16:21:22 +08:00
|
|
|
padding-inline-start: var(--BaseCard_EventTile-spacing-inline);
|
|
|
|
padding-inline-end: var(--BaseCard_EventTile-spacing-inline);
|
2022-05-18 21:08:39 +08:00
|
|
|
}
|
2022-02-08 21:11:18 +08:00
|
|
|
}
|
|
|
|
|
2022-04-22 23:09:44 +08:00
|
|
|
.mx_ReadReceiptGroup {
|
|
|
|
top: -6px;
|
2021-12-14 00:46:32 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 21:11:18 +08:00
|
|
|
.mx_WhoIsTypingTile {
|
|
|
|
margin-left: -12px; // undo padding on the message list
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_WhoIsTypingTile_avatars {
|
|
|
|
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
|
|
|
|
}
|
2022-04-13 23:33:54 +08:00
|
|
|
|
2022-06-02 10:43:07 +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
|
|
|
|
.mx_EventTile[data-layout=bubble] {
|
|
|
|
.mx_ReadReceiptGroup {
|
|
|
|
// 6px: scroll bar width (magic number)
|
|
|
|
inset-inline-end: calc(-1 * var(--ReadReceiptGroup_EventBubbleTile-spacing-end) + $container-gap-width + 6px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_info {
|
|
|
|
.mx_ReadReceiptGroup {
|
|
|
|
inset-inline-end: -4px; // align with RR outside of info tile
|
|
|
|
}
|
|
|
|
}
|
2022-04-13 23:33:54 +08:00
|
|
|
}
|
|
|
|
}
|
2021-11-30 00:06:15 +08:00
|
|
|
}
|