2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2021-06-19 01:59:22 +08:00
|
|
|
Copyright 2020-2021 The Matrix.org Foundation C.I.C.
|
2018-04-12 07:23:35 +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.
|
|
|
|
*/
|
|
|
|
|
2020-07-14 05:56:20 +08:00
|
|
|
$left-gutter: 64px;
|
2022-04-29 19:03:39 +08:00
|
|
|
$threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
|
2020-07-14 05:56:20 +08:00
|
|
|
|
2022-01-10 20:53:23 +08:00
|
|
|
.mx_EventTile {
|
2022-03-02 22:24:43 +08:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
2022-01-10 20:53:23 +08:00
|
|
|
.mx_EventTile_receiptSent,
|
|
|
|
.mx_EventTile_receiptSending {
|
2022-04-22 23:09:44 +08:00
|
|
|
position: relative;
|
2022-01-19 11:08:11 +08:00
|
|
|
display: inline-block;
|
2022-04-22 23:09:44 +08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2022-01-10 20:53:23 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: $tertiary-content;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
2022-04-22 23:09:44 +08:00
|
|
|
mask-size: 16px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2022-01-10 20:53:23 +08:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-01-10 20:53:23 +08:00
|
|
|
.mx_EventTile_receiptSent::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sent.svg');
|
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-01-10 20:53:23 +08:00
|
|
|
.mx_EventTile_receiptSending::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sending.svg');
|
|
|
|
}
|
2022-05-09 14:27:13 +08:00
|
|
|
|
2022-05-18 01:12:13 +08:00
|
|
|
.mx_EventTile_content {
|
|
|
|
&.mx_EditMessageComposer {
|
|
|
|
// Make sure the formatting bar is visible
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 15:02:13 +08:00
|
|
|
.mx_MImageBody {
|
|
|
|
.mx_MImageBody_thumbnail_container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center; // on every layout
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-09 14:27:13 +08:00
|
|
|
&[data-layout=group] {
|
|
|
|
.mx_EventTile_line {
|
|
|
|
line-height: var(--GroupLayout-EventTile-line-height);
|
|
|
|
}
|
|
|
|
}
|
2022-01-10 20:53:23 +08:00
|
|
|
}
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile:not([data-layout=bubble]) {
|
2018-04-12 07:23:35 +08:00
|
|
|
max-width: 100%;
|
|
|
|
clear: both;
|
|
|
|
padding-top: 18px;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-14px;
|
2018-04-12 07:23:35 +08:00
|
|
|
position: relative;
|
|
|
|
|
2022-02-18 23:56:05 +08:00
|
|
|
&[data-shape=ThreadsList][data-notification]::before {
|
2021-12-13 22:05:42 +08:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2022-04-06 00:01:34 +08:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2021-12-13 22:05:42 +08:00
|
|
|
border-radius: 50%;
|
2022-04-06 00:01:34 +08:00
|
|
|
right: -25px; // center it in the gutter (16px margin + 4px padding + half 10px width)
|
|
|
|
top: 4px;
|
2022-01-20 16:47:37 +08:00
|
|
|
left: auto;
|
2021-12-13 22:05:42 +08:00
|
|
|
}
|
|
|
|
|
2022-02-18 23:56:05 +08:00
|
|
|
&[data-shape=ThreadsList][data-notification=total]::before {
|
2022-04-04 19:36:54 +08:00
|
|
|
background-color: $room-icon-unread-color;
|
2021-12-13 22:05:42 +08:00
|
|
|
}
|
|
|
|
|
2022-02-18 23:56:05 +08:00
|
|
|
&[data-shape=ThreadsList][data-notification=highlight]::before {
|
2021-12-13 22:05:42 +08:00
|
|
|
background-color: $alert;
|
|
|
|
}
|
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary,
|
2022-01-13 01:16:00 +08:00
|
|
|
.mx_ThreadSummaryIcon {
|
2021-10-21 01:14:24 +08:00
|
|
|
margin-left: 64px;
|
|
|
|
}
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_avatar {
|
|
|
|
top: 14px;
|
|
|
|
left: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2022-05-12 15:04:54 +08:00
|
|
|
&.mx_EventTile_info {
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
.mx_EventTile_avatar,
|
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
margin: 3px 0 2px; // Align with mx_EventTile_line
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
top: initial;
|
|
|
|
inset-inline-start: $left-gutter;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding: 3px 0 2px; // Align with mx_EventTile_avatar and mx_EventTile_e2eIcon
|
2022-05-14 15:55:52 +08:00
|
|
|
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
top: 0;
|
|
|
|
}
|
2022-05-12 15:04:54 +08:00
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_continuation {
|
2021-06-19 01:59:22 +08:00
|
|
|
padding-top: 0px !important;
|
2019-05-21 18:20:58 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2022-03-23 06:14:55 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
|
|
|
color: $primary-content;
|
|
|
|
font-size: $font-14px;
|
2022-04-06 00:01:34 +08:00
|
|
|
display: inline-block;
|
2022-03-23 06:14:55 +08:00
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
max-width: calc(100% - $left-gutter);
|
|
|
|
}
|
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_isEditing .mx_MessageTimestamp {
|
2021-06-19 01:59:22 +08:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
2019-03-05 21:49:07 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
.mx_MessageTimestamp {
|
2021-06-19 01:59:22 +08:00
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
left: 0px;
|
|
|
|
text-align: center;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2019-03-05 21:49:07 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_continuation .mx_EventTile_line {
|
2021-06-19 01:59:22 +08:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2022-04-06 00:01:34 +08:00
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_EventTile_reply {
|
2021-06-19 01:59:22 +08:00
|
|
|
position: relative;
|
|
|
|
padding-left: $left-gutter;
|
2019-03-05 21:49:07 +08:00
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_reply {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2019-05-17 23:01:52 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
/* this is used for the tile for the event which is selected via the URL.
|
|
|
|
* TODO: ultimately we probably want some transition on here.
|
|
|
|
*/
|
2022-05-12 18:27:06 +08:00
|
|
|
&.mx_EventTile_isEditing > .mx_EventTile_line,
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_selected > .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
box-shadow: inset calc(50px + $selected-message-border-width) 0 0 -50px $accent;
|
2021-06-19 01:59:22 +08:00
|
|
|
background-color: $event-selected-color;
|
2020-03-20 17:29:59 +08:00
|
|
|
}
|
2020-04-28 00:50:50 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_highlight,
|
|
|
|
&.mx_EventTile_highlight .markdown-body {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_line {
|
|
|
|
background-color: $event-highlight-bg-color;
|
|
|
|
}
|
2020-03-20 17:29:59 +08:00
|
|
|
}
|
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_selected.mx_EventTile_info .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
padding-left: calc($left-gutter + 18px);
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile:hover .mx_EventTile_line,
|
|
|
|
&.mx_EventTile.mx_EventTile_actionBarFocused .mx_EventTile_line,
|
|
|
|
&.mx_EventTile.focus-visible:focus-within .mx_EventTile_line {
|
2021-06-19 01:59:22 +08:00
|
|
|
background-color: $event-selected-color;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_searchHighlight {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2021-06-19 01:59:22 +08:00
|
|
|
color: $accent-fg-color;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-07-10 23:55:03 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_searchHighlight a {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2021-06-19 01:59:22 +08:00
|
|
|
color: $accent-fg-color;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&.mx_EventTile_contextual {
|
2021-06-19 01:59:22 +08:00
|
|
|
opacity: 0.4;
|
2019-11-08 00:39:50 +08:00
|
|
|
}
|
2019-11-09 00:10:51 +08:00
|
|
|
|
|
|
|
.mx_EventTile_msgOption {
|
2021-06-19 01:59:22 +08:00
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
position: relative;
|
|
|
|
width: 90px;
|
|
|
|
|
|
|
|
/* Hack to stop the height of this pushing the messages apart.
|
|
|
|
Replaces margin-top: -6px. This interacts better with a read
|
|
|
|
marker being in between. Content overflows. */
|
|
|
|
height: 1px;
|
|
|
|
|
|
|
|
margin-right: 10px;
|
2019-11-09 00:10:51 +08:00
|
|
|
}
|
2021-06-18 23:03:48 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_msgOption a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
/* De-zalgoing */
|
|
|
|
.mx_EventTile_body {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&:hover.mx_EventTile_verified .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
box-shadow: inset calc(50px + $selected-message-border-width) 0 0 -50px $e2e-verified-color;
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&:hover.mx_EventTile_unverified .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
box-shadow: inset calc(50px + $selected-message-border-width) 0 0 -50px $e2e-unverified-color;
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&:hover.mx_EventTile_unknown .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
box-shadow: inset calc(50px + $selected-message-border-width) 0 0 -50px $e2e-unknown-color;
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-13 16:36:35 +08:00
|
|
|
&:hover.mx_EventTile_verified.mx_EventTile_info .mx_EventTile_line,
|
|
|
|
&:hover.mx_EventTile_unverified.mx_EventTile_info .mx_EventTile_line,
|
|
|
|
&:hover.mx_EventTile_unknown.mx_EventTile_info .mx_EventTile_line {
|
2021-11-29 18:58:34 +08:00
|
|
|
padding-left: calc($left-gutter + 18px + $selected-message-border-width);
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2021-02-28 13:46:38 +08:00
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
/* End to end encryption stuff */
|
2021-07-13 16:36:35 +08:00
|
|
|
&:hover .mx_EventTile_e2eIcon {
|
2021-06-19 01:59:22 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MImageBody {
|
|
|
|
margin-right: 34px;
|
2022-05-23 15:02:13 +08:00
|
|
|
|
|
|
|
.mx_MImageBody_thumbnail_container {
|
|
|
|
justify-content: flex-start;
|
|
|
|
min-height: $font-44px;
|
|
|
|
min-width: $font-44px;
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
2021-07-07 21:13:58 +08:00
|
|
|
|
|
|
|
.mx_EventTile_e2eIcon {
|
2021-02-28 13:46:38 +08:00
|
|
|
position: absolute;
|
2021-07-07 21:13:58 +08:00
|
|
|
top: 6px;
|
|
|
|
left: 44px;
|
|
|
|
bottom: 0;
|
2021-02-28 13:46:38 +08:00
|
|
|
right: 0;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2021-07-14 21:32:35 +08:00
|
|
|
.mx_ReactionsRow {
|
|
|
|
margin: 0;
|
2021-07-28 11:48:51 +08:00
|
|
|
padding: 4px 64px;
|
2021-07-14 21:32:35 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2022-05-09 14:27:13 +08:00
|
|
|
.mx_GenericEventListSummary:not([data-layout=bubble]) {
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding-left: $left-gutter;
|
|
|
|
|
|
|
|
.mx_RedactedBody {
|
|
|
|
line-height: 1; // remove spacing between lines
|
|
|
|
}
|
|
|
|
}
|
2022-02-22 18:25:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile:not([data-layout=bubble]).mx_EventTile_info .mx_EventTile_line,
|
2022-02-28 18:23:01 +08:00
|
|
|
.mx_GenericEventListSummary:not([data-layout=bubble]) > .mx_GenericEventListSummary_unstyledList > .mx_EventTile_info .mx_EventTile_avatar ~ .mx_EventTile_line {
|
|
|
|
padding-left: calc($left-gutter + 20px); // override padding-left $left-gutter
|
2021-07-27 22:24:05 +08:00
|
|
|
}
|
|
|
|
|
2021-07-21 17:41:52 +08:00
|
|
|
.mx_EventTile_content {
|
2022-05-18 21:04:39 +08:00
|
|
|
/*
|
|
|
|
all the overflow-y: hidden; are to trap Zalgos -
|
|
|
|
but they introduce an implicit overflow-x: auto.
|
|
|
|
so make that explicitly hidden too to avoid random
|
|
|
|
horizontal scrollbars occasionally appearing, like in
|
|
|
|
https://github.com/vector-im/vector-web/issues/1154
|
|
|
|
*/
|
2021-07-21 17:41:52 +08:00
|
|
|
overflow-y: hidden;
|
|
|
|
overflow-x: hidden;
|
|
|
|
margin-right: 34px;
|
2022-05-18 21:04:39 +08:00
|
|
|
|
|
|
|
.mx_EventTile_edited,
|
|
|
|
.mx_EventTile_pendingModeration {
|
|
|
|
user-select: none;
|
|
|
|
font-size: $font-12px;
|
|
|
|
color: $roomtopic-color;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_edited {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdown-body {
|
|
|
|
font-family: inherit !important;
|
|
|
|
white-space: normal !important;
|
|
|
|
line-height: inherit !important;
|
|
|
|
color: inherit; // inherit the colour from the dark or light theme by default (but not for code blocks)
|
|
|
|
font-size: $font-14px;
|
|
|
|
|
|
|
|
pre,
|
|
|
|
code {
|
|
|
|
font-family: $monospace-font-family !important;
|
|
|
|
background-color: $codeblock-background-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
white-space: pre-wrap; // don't collapse spaces in inline code blocks
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
// have to use overlay rather than auto otherwise Linux and Windows
|
|
|
|
// Chrome gets very confused about vertical spacing:
|
|
|
|
// https://github.com/vector-im/vector-web/issues/754
|
|
|
|
overflow-x: overlay;
|
|
|
|
overflow-y: visible;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-corner {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
white-space: pre; // we want code blocks to be scrollable and not wrap
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
font-family: inherit !important;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make h1 and h2 the same size as h3. */
|
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
border-bottom: none !important; // override GFM
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $accent-alt;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 2px solid $blockquote-bar-color;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
// actually, removing the Italic TTF provides
|
|
|
|
// better results seemingly
|
|
|
|
|
|
|
|
// compensate for Nunito italics being terrible
|
|
|
|
// https://github.com/google/fonts/issues/1726
|
|
|
|
em {
|
|
|
|
transform: skewX(-14deg);
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
2021-07-21 17:41:52 +08:00
|
|
|
}
|
|
|
|
|
2021-07-21 14:42:42 +08:00
|
|
|
/* Spoiler stuff */
|
|
|
|
.mx_EventTile_spoiler {
|
|
|
|
cursor: pointer;
|
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_EventTile_spoiler_reason {
|
|
|
|
color: $event-timestamp-color;
|
|
|
|
font-size: $font-11px;
|
|
|
|
}
|
2021-07-21 14:42:42 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_EventTile_spoiler_content {
|
|
|
|
filter: blur(5px) saturate(0.1) sepia(1);
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
2021-07-21 14:42:42 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
&.visible > .mx_EventTile_spoiler_content {
|
|
|
|
filter: none;
|
|
|
|
}
|
2021-07-21 14:42:42 +08:00
|
|
|
}
|
|
|
|
|
2021-07-14 21:32:35 +08:00
|
|
|
.mx_RoomView_timeline_rr_enabled {
|
2021-08-04 17:21:52 +08:00
|
|
|
.mx_EventTile[data-layout=group] {
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary,
|
2022-04-06 00:01:34 +08:00
|
|
|
.mx_ThreadSummaryIcon,
|
2021-07-14 21:32:35 +08:00
|
|
|
.mx_EventTile_line {
|
|
|
|
/* ideally should be 100px, but 95px gives us a max thumbnail size of 800x600, which is nice */
|
|
|
|
margin-right: 110px;
|
2022-04-15 04:28:39 +08:00
|
|
|
min-height: $font-14px;
|
2021-07-14 21:32:35 +08:00
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary {
|
2022-04-06 00:01:34 +08:00
|
|
|
max-width: min(calc(100% - $left-gutter - 110px), 600px); // leave space on both left & right gutters
|
|
|
|
}
|
2021-07-14 21:32:35 +08:00
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2021-07-14 21:32:35 +08:00
|
|
|
// on ELS we need the margin to allow interaction with the expand/collapse button which is normally in the RR gutter
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_bubbleContainer {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 100px;
|
|
|
|
|
|
|
|
.mx_EventTile_line {
|
|
|
|
margin-right: 0;
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
// override default padding of mx_EventTile_line so that we can be centered
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_msgOption {
|
|
|
|
grid-column: 2;
|
|
|
|
}
|
2021-07-20 20:23:28 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.mx_EventTile_line {
|
|
|
|
// To avoid bubble events being highlighted
|
|
|
|
background-color: inherit !important;
|
|
|
|
}
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2022-01-31 17:53:04 +08:00
|
|
|
.mx_EventTile_bigEmoji {
|
|
|
|
font-size: 48px;
|
2022-01-21 18:10:57 +08:00
|
|
|
line-height: 57px;
|
2022-01-31 17:53:04 +08:00
|
|
|
|
|
|
|
.mx_Emoji {
|
|
|
|
font-size: inherit !important;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_e2eIcon {
|
2021-07-07 21:13:58 +08:00
|
|
|
position: relative;
|
2020-07-14 06:56:25 +08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-12-04 13:41:22 +08:00
|
|
|
display: block;
|
2019-02-15 00:00:47 +08:00
|
|
|
opacity: 0.2;
|
2019-12-04 13:41:22 +08:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
2019-02-01 23:43:12 +08:00
|
|
|
|
2022-04-06 00:01:34 +08:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
2021-06-23 23:10:47 +08:00
|
|
|
mask-size: 80%;
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
&.mx_EventTile_e2eIcon_warning,
|
|
|
|
&.mx_EventTile_e2eIcon_normal {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_e2eIcon_warning::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-image: url('$(res)/img/e2e/warning.svg');
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
&.mx_EventTile_e2eIcon_normal::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-image: url('$(res)/img/e2e/normal.svg');
|
2021-11-16 18:10:44 +08:00
|
|
|
background-color: $header-panel-text-primary-color;
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
2020-06-19 09:57:33 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
|
|
|
/* Various markdown overrides */
|
|
|
|
|
2021-07-30 15:54:28 +08:00
|
|
|
.mx_EventTile_body {
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
2022-01-10 23:32:06 +08:00
|
|
|
|
|
|
|
// selector wrongly applies to pill avatars but those have explicit width/height passed at a higher specificity
|
|
|
|
&.markdown-body img {
|
|
|
|
object-fit: contain;
|
|
|
|
object-position: left top;
|
|
|
|
}
|
2019-07-10 23:55:03 +08:00
|
|
|
}
|
|
|
|
|
2021-11-11 19:00:18 +08:00
|
|
|
.mx_EventTile_clamp {
|
|
|
|
.mx_EventTile_body {
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-21 17:53:18 +08:00
|
|
|
.mx_EventTile_lineNumbers {
|
|
|
|
float: left;
|
|
|
|
margin: 0 0.5em 0 -1.5em;
|
|
|
|
color: gray;
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2021-10-19 02:32:20 +08:00
|
|
|
& span {
|
|
|
|
text-align: right;
|
|
|
|
display: block;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2021-01-21 17:53:18 +08:00
|
|
|
}
|
|
|
|
|
2019-11-01 18:50:58 +08:00
|
|
|
.mx_EventTile:hover .mx_EventTile_body pre,
|
2019-11-05 00:47:20 +08:00
|
|
|
.mx_EventTile.focus-visible:focus-within .mx_EventTile_body pre {
|
2021-08-26 21:12:26 +08:00
|
|
|
border: 1px solid $tertiary-content;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2021-01-20 22:01:23 +08:00
|
|
|
.mx_EventTile_button {
|
2018-04-12 07:23:35 +08:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2021-01-20 22:01:23 +08:00
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2021-01-20 22:01:23 +08:00
|
|
|
.mx_EventTile_copyButton {
|
|
|
|
mask-image: url($copy-button-url);
|
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_EventTile_collapseButton,
|
|
|
|
.mx_EventTile_expandButton {
|
2021-02-08 22:22:30 +08:00
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
2022-05-24 04:16:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_collapseButton {
|
2021-11-16 22:43:18 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/minimise-collapse.svg");
|
2021-01-20 04:02:39 +08:00
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2021-01-20 04:02:39 +08:00
|
|
|
.mx_EventTile_expandButton {
|
2021-11-16 22:43:18 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/maximise-expand.svg");
|
2021-01-20 04:02:39 +08:00
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container {
|
|
|
|
// For correct positioning of _copyButton (See TextualBody)
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:hover {
|
|
|
|
.mx_EventTile_button {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_collapsedCodeBlock {
|
|
|
|
max-height: 30vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inserted adjacent to <pre> blocks, (See TextualBody)
|
|
|
|
.mx_EventTile_button {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
width: 19px;
|
|
|
|
height: 19px;
|
|
|
|
visibility: hidden;
|
|
|
|
background-color: $message-action-bar-fg-color;
|
|
|
|
|
|
|
|
&.mx_EventTile_buttonBottom {
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_EventTile_collapseButton,
|
|
|
|
&.mx_EventTile_expandButton {
|
|
|
|
mask-size: 75%;
|
|
|
|
}
|
|
|
|
}
|
2021-01-20 04:02:39 +08:00
|
|
|
}
|
|
|
|
|
2018-04-12 07:23:35 +08:00
|
|
|
/* end of overrides */
|
|
|
|
|
2021-06-19 01:59:22 +08:00
|
|
|
.mx_EventTile_keyRequestInfo {
|
|
|
|
font-size: $font-12px;
|
2020-04-06 18:44:46 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_EventTile_keyRequestInfo_text {
|
|
|
|
opacity: 0.5;
|
2020-02-25 02:04:11 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
.mx_AccessibleButton {
|
|
|
|
color: $primary-content;
|
|
|
|
text-decoration: underline;
|
2022-05-25 14:45:18 +08:00
|
|
|
|
|
|
|
&.mx_AccessibleButton_kind_link_inline {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-05-24 04:16:50 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_tooltip_contents p {
|
|
|
|
text-align: auto;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
&:first-child {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
2021-06-19 01:59:22 +08:00
|
|
|
|
2022-05-24 04:16:50 +08:00
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2020-02-25 18:20:42 +08:00
|
|
|
}
|
2020-01-30 18:18:14 +08:00
|
|
|
|
2020-02-25 02:04:11 +08:00
|
|
|
.mx_EventTile_tileError {
|
|
|
|
color: red;
|
2020-03-26 21:47:32 +08:00
|
|
|
text-align: center;
|
2020-02-25 02:04:11 +08:00
|
|
|
|
2020-04-06 18:44:46 +08:00
|
|
|
// Remove some of the default tile padding so that the error is centered
|
|
|
|
margin-right: 0;
|
2021-08-24 16:09:28 +08:00
|
|
|
|
2020-04-06 18:44:46 +08:00
|
|
|
.mx_EventTile_line {
|
|
|
|
padding-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-02-25 02:04:11 +08:00
|
|
|
.mx_EventTile_line span {
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2020-02-25 18:20:42 +08:00
|
|
|
}
|
2020-01-30 18:18:14 +08:00
|
|
|
|
2021-07-07 18:04:28 +08:00
|
|
|
.mx_EventTile:hover .mx_MessageActionBar,
|
|
|
|
.mx_EventTile.mx_EventTile_actionBarFocused .mx_MessageActionBar,
|
|
|
|
[data-whatinput='keyboard'] .mx_EventTile:focus-within .mx_MessageActionBar,
|
|
|
|
.mx_EventTile.focus-visible:focus-within .mx_MessageActionBar {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2022-04-17 09:05:20 +08:00
|
|
|
// Inverse of the above to *disable* the animation on any indicators. This approach
|
|
|
|
// is less pretty, but is easier to target because otherwise we need to define the
|
|
|
|
// animation for when it's shown which means duplicating the style definition in
|
|
|
|
// multiple places.
|
|
|
|
.mx_EventTile:not(:hover):not(.mx_EventTile_actionBarFocused):not([data-whatinput='keyboard'] :focus-within):not(.focus-visible:focus-within) {
|
|
|
|
.mx_MessageActionBar .mx_Indicator {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 01:33:55 +08:00
|
|
|
@media only screen and (max-width: 480px) {
|
2022-04-06 00:01:34 +08:00
|
|
|
|
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_EventTile_reply {
|
2020-05-28 01:33:55 +08:00
|
|
|
padding-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2020-05-28 01:33:55 +08:00
|
|
|
.mx_EventTile_content {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-01-30 18:18:14 +08:00
|
|
|
}
|
2021-08-17 18:10:02 +08:00
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadPanel_replies::before,
|
2022-01-13 01:16:00 +08:00
|
|
|
.mx_ThreadSummaryIcon::before,
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_ThreadSummary::before {
|
2022-04-29 19:03:39 +08:00
|
|
|
@mixin ThreadInfoIcon;
|
2022-04-06 00:01:34 +08:00
|
|
|
background-color: $secondary-content !important;
|
2022-01-13 01:16:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ThreadSummaryIcon {
|
2022-04-06 00:01:34 +08:00
|
|
|
display: inline-block;
|
2022-01-13 01:16:00 +08:00
|
|
|
font-size: $font-12px;
|
2022-04-06 00:01:34 +08:00
|
|
|
color: $secondary-content !important;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
2022-01-13 01:16:00 +08:00
|
|
|
&::before {
|
|
|
|
vertical-align: middle;
|
2022-04-06 00:01:34 +08:00
|
|
|
margin-right: 8px;
|
|
|
|
margin-top: -2px;
|
2022-01-13 01:16:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 01:10:27 +08:00
|
|
|
.mx_MessagePanel_narrow .mx_ThreadSummary {
|
2022-02-23 22:03:46 +08:00
|
|
|
min-width: initial;
|
2022-05-07 01:56:22 +08:00
|
|
|
max-width: 100%; // prevent overflow
|
2022-02-23 22:03:46 +08:00
|
|
|
width: initial;
|
|
|
|
}
|
|
|
|
|
2022-02-18 23:56:05 +08:00
|
|
|
.mx_EventTile[data-shape=ThreadsList] {
|
2022-04-29 19:03:39 +08:00
|
|
|
--topOffset: $spacing-12;
|
|
|
|
--leftOffset: 48px;
|
2022-04-06 00:01:34 +08:00
|
|
|
$borderRadius: 8px;
|
2022-04-29 19:03:39 +08:00
|
|
|
$padding: $spacing-8;
|
|
|
|
$hrHeight: 1px;
|
2021-11-04 02:05:01 +08:00
|
|
|
|
2022-04-29 19:03:39 +08:00
|
|
|
margin: calc(var(--topOffset) + $hrHeight) 0 var(--topOffset); // include the height of horizontal line
|
|
|
|
padding: $padding $spacing-24 $padding $padding;
|
2022-04-06 00:01:34 +08:00
|
|
|
border-radius: $borderRadius;
|
2021-11-04 02:05:01 +08:00
|
|
|
|
2022-01-19 18:41:39 +08:00
|
|
|
display: flex;
|
|
|
|
flex-flow: wrap;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-04-29 19:03:39 +08:00
|
|
|
&:hover,
|
2022-05-11 17:56:58 +08:00
|
|
|
// Override .mx_EventTile:not([data-layout=bubble]).mx_EventTile:hover .mx_EventTile_line
|
2022-04-29 19:03:39 +08:00
|
|
|
&:not([data-layout=bubble]):hover .mx_EventTile_line {
|
2021-11-04 02:05:01 +08:00
|
|
|
background-color: $system;
|
2021-10-15 21:29:17 +08:00
|
|
|
}
|
|
|
|
|
2022-05-11 17:56:58 +08:00
|
|
|
&:not([data-layout=bubble]):hover .mx_EventTile_line {
|
|
|
|
box-shadow: none; // don't show the verification left stroke in the thread list
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:05:01 +08:00
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2022-04-29 19:03:39 +08:00
|
|
|
left: calc(var(--leftOffset) + $padding);
|
|
|
|
right: $spacing-24; // 24px: 32px - 8px (right padding)
|
|
|
|
height: $hrHeight;
|
|
|
|
bottom: calc(-1 * var(--topOffset) - $hrHeight); // exclude the height of horizontal line
|
2021-11-04 02:05:01 +08:00
|
|
|
background-color: $quinary-content;
|
2022-04-29 00:06:56 +08:00
|
|
|
pointer-events: none; // disable the message action bar on hover
|
2021-10-15 21:29:17 +08:00
|
|
|
}
|
2021-11-04 02:05:01 +08:00
|
|
|
|
2021-12-21 04:43:45 +08:00
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
/* enough to cover all sibling elements */
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:05:01 +08:00
|
|
|
&:last-child {
|
|
|
|
&::after {
|
|
|
|
content: unset;
|
|
|
|
}
|
2022-04-06 00:01:34 +08:00
|
|
|
|
2021-11-04 02:05:01 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_avatar {
|
2022-04-29 19:03:39 +08:00
|
|
|
top: $padding;
|
|
|
|
left: $padding;
|
2021-11-04 02:05:01 +08:00
|
|
|
}
|
|
|
|
|
2022-03-23 13:45:53 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
2022-01-19 18:41:39 +08:00
|
|
|
margin-right: 12px;
|
|
|
|
display: inline-flex;
|
2022-04-29 19:03:39 +08:00
|
|
|
flex: 1;
|
2022-01-19 18:41:39 +08:00
|
|
|
}
|
|
|
|
|
2022-03-23 13:45:53 +08:00
|
|
|
.mx_DisambiguatedProfile_displayName,
|
|
|
|
.mx_DisambiguatedProfile_mxid {
|
2022-01-19 18:41:39 +08:00
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2022-03-23 13:45:53 +08:00
|
|
|
.mx_DisambiguatedProfile_displayName {
|
2022-01-19 18:41:39 +08:00
|
|
|
flex: none;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-03-23 13:45:53 +08:00
|
|
|
.mx_DisambiguatedProfile_mxid {
|
2022-01-19 18:41:39 +08:00
|
|
|
flex: 1;
|
2021-11-04 02:05:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_line {
|
2022-01-19 18:41:39 +08:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2022-04-06 00:01:34 +08:00
|
|
|
border-radius: $borderRadius !important; // override 4px
|
2021-11-04 02:05:01 +08:00
|
|
|
}
|
2022-01-19 18:41:39 +08:00
|
|
|
|
2022-04-29 19:03:39 +08:00
|
|
|
.mx_DisambiguatedProfile,
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding-inline-start: var(--leftOffset);
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:05:01 +08:00
|
|
|
.mx_MessageTimestamp {
|
2022-01-19 18:41:39 +08:00
|
|
|
max-width: 80px;
|
2022-04-29 19:03:39 +08:00
|
|
|
width: auto;
|
2021-10-15 21:29:17 +08:00
|
|
|
}
|
2021-08-23 21:44:44 +08:00
|
|
|
}
|
|
|
|
|
2021-08-17 18:10:02 +08:00
|
|
|
.mx_ThreadView {
|
2022-05-12 15:04:54 +08:00
|
|
|
--ThreadView_group_spacing-start: 56px; // 56px: 64px - 8px (padding)
|
2022-05-18 21:08:39 +08:00
|
|
|
--ThreadView_group_spacing-end: 8px; // same as padding
|
2022-05-12 15:04:54 +08:00
|
|
|
|
2021-08-17 18:10:02 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-04-06 00:15:31 +08:00
|
|
|
max-height: 100%;
|
2021-08-17 18:10:02 +08:00
|
|
|
|
|
|
|
.mx_ThreadView_List {
|
|
|
|
flex: 1;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_roomName {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-09-24 18:44:11 +08:00
|
|
|
|
2021-11-11 22:48:11 +08:00
|
|
|
.mx_EventTile_line {
|
2022-05-23 18:11:55 +08:00
|
|
|
padding-top: var(--BaseCard_EventTile_line-padding-block);
|
|
|
|
padding-bottom: var(--BaseCard_EventTile_line-padding-block);
|
2021-11-11 22:48:11 +08:00
|
|
|
}
|
|
|
|
|
2022-05-23 18:11:55 +08:00
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_ReactionsRow {
|
|
|
|
padding-inline-start: 0; // Cancel inherited padding value for event message and reactions row
|
2021-09-24 18:44:11 +08:00
|
|
|
}
|
2021-10-21 01:14:24 +08:00
|
|
|
|
|
|
|
.mx_ReactionsRow {
|
2022-05-23 18:11:55 +08:00
|
|
|
padding-inline-end: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
font-size: $font-10px;
|
2021-10-21 01:14:24 +08:00
|
|
|
}
|
2022-04-29 16:29:18 +08:00
|
|
|
|
2022-04-29 19:03:39 +08:00
|
|
|
&:not([data-layout=bubble]) {
|
|
|
|
padding-top: $spacing-16;
|
2022-05-14 02:04:27 +08:00
|
|
|
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding-top: var(--BaseCard_EventTile_line-padding-block);
|
|
|
|
padding-bottom: var(--BaseCard_EventTile_line-padding-block);
|
2022-05-20 17:14:37 +08:00
|
|
|
|
|
|
|
.mx_EventTile_content {
|
|
|
|
&.mx_EditMessageComposer {
|
|
|
|
padding-inline-start: 0; // align start of first letter with that of the event body
|
|
|
|
}
|
|
|
|
}
|
2022-05-14 02:04:27 +08:00
|
|
|
}
|
2022-04-29 19:03:39 +08:00
|
|
|
}
|
2022-04-08 16:11:08 +08:00
|
|
|
|
2022-05-18 21:08:39 +08:00
|
|
|
&[data-layout=bubble] {
|
|
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-horizontal);
|
|
|
|
margin-inline-end: var(--BaseCard_EventTile-spacing-horizontal);
|
2022-01-12 17:02:30 +08:00
|
|
|
|
2022-05-18 21:08:39 +08:00
|
|
|
.mx_EventTile_line.mx_EventTile_mediaLine {
|
2022-05-25 12:31:39 +08:00
|
|
|
padding-block: 0;
|
|
|
|
padding-inline-start: 0;
|
|
|
|
max-width: var(--EventBubbleTile_line-max-width);
|
2022-01-14 06:46:11 +08:00
|
|
|
}
|
|
|
|
|
2022-05-18 21:08:39 +08:00
|
|
|
&[data-self=true] {
|
|
|
|
align-items: flex-end;
|
2022-01-12 17:02:30 +08:00
|
|
|
|
2022-05-18 21:08:39 +08:00
|
|
|
.mx_EventTile_line.mx_EventTile_mediaLine {
|
2022-05-22 04:19:56 +08:00
|
|
|
margin: 0 var(--EventBubbleTile_line-margin-inline-end) 0 0; // align with normal messages
|
2022-05-18 21:08:39 +08:00
|
|
|
}
|
2022-01-12 17:02:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile[data-layout=group] {
|
|
|
|
width: 100%;
|
2021-11-29 18:58:34 +08:00
|
|
|
|
|
|
|
.mx_EventTile_content,
|
2022-01-17 23:04:37 +08:00
|
|
|
.mx_HiddenBody,
|
2021-11-29 18:58:34 +08:00
|
|
|
.mx_RedactedBody,
|
2022-03-31 21:37:31 +08:00
|
|
|
.mx_UnknownBody,
|
2022-03-10 21:27:25 +08:00
|
|
|
.mx_MPollBody,
|
2022-04-29 16:29:18 +08:00
|
|
|
.mx_MLocationBody,
|
2022-04-15 05:13:46 +08:00
|
|
|
.mx_ReplyChain_wrapper,
|
|
|
|
.mx_ReactionsRow {
|
2022-05-12 15:04:54 +08:00
|
|
|
margin-inline-start: var(--ThreadView_group_spacing-start);
|
2022-05-18 21:08:39 +08:00
|
|
|
margin-inline-end: var(--ThreadView_group_spacing-end);
|
2022-01-12 17:02:30 +08:00
|
|
|
|
|
|
|
.mx_EventTile_content,
|
2022-01-17 23:04:37 +08:00
|
|
|
.mx_HiddenBody,
|
2022-01-12 17:02:30 +08:00
|
|
|
.mx_RedactedBody,
|
|
|
|
.mx_MImageBody {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-22 14:19:45 +08:00
|
|
|
.mx_EventTile_mediaLine {
|
|
|
|
// such as MImageBody
|
|
|
|
> div,
|
|
|
|
> span {
|
|
|
|
margin-inline-start: var(--ThreadView_group_spacing-start);
|
|
|
|
margin-inline-end: var(--ThreadView_group_spacing-end);
|
|
|
|
}
|
|
|
|
|
|
|
|
// such as MAudioBody and MFileBody
|
|
|
|
> span {
|
|
|
|
display: block; // Apply the margin declarations to span element
|
|
|
|
}
|
2022-05-22 04:19:56 +08:00
|
|
|
}
|
|
|
|
|
2022-04-29 16:29:18 +08:00
|
|
|
.mx_ReplyChain_wrapper {
|
|
|
|
.mx_MLocationBody {
|
|
|
|
margin-inline-start: 0;
|
|
|
|
margin-inline-end: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-12 17:02:30 +08:00
|
|
|
.mx_MessageTimestamp {
|
2022-04-29 19:03:39 +08:00
|
|
|
top: 2px; // Align with mx_EventTile_content
|
2022-01-12 17:02:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_senderDetails {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-04-29 19:03:39 +08:00
|
|
|
gap: $spacing-16; // gap between the avatar and the sender ID
|
|
|
|
padding-inline-start: $spacing-8;
|
2022-01-12 17:02:30 +08:00
|
|
|
|
|
|
|
a {
|
|
|
|
flex: 1;
|
2022-04-06 00:01:34 +08:00
|
|
|
min-width: unset;
|
2022-01-12 17:02:30 +08:00
|
|
|
max-width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-03-23 13:45:53 +08:00
|
|
|
.mx_DisambiguatedProfile {
|
2022-04-06 00:01:34 +08:00
|
|
|
margin-left: 8px;
|
2022-01-12 17:02:30 +08:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
2021-11-29 18:58:34 +08:00
|
|
|
}
|
2021-11-02 21:18:51 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 20:27:25 +08:00
|
|
|
.mx_MessageComposer_sendMessage {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2021-08-17 18:10:02 +08:00
|
|
|
}
|