2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 01:23:35 +02:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 01:23:35 +02:00
|
|
|
*/
|
|
|
|
|
2023-03-21 10:10:13 +01:00
|
|
|
:root {
|
2023-06-06 16:03:52 +02:00
|
|
|
--RoomView_MessageList-padding: 18px;
|
2023-03-21 10:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-08-20 15:57:22 +02:00
|
|
|
.mx_RoomView_wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
2021-08-20 18:15:57 +02:00
|
|
|
justify-content: center;
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Contain the amount of layers rendered by constraining what actually needs re-layering via css */
|
2021-08-19 19:00:31 +02:00
|
|
|
contain: strict;
|
2021-08-20 15:57:22 +02:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_RoomView {
|
|
|
|
word-wrap: break-word;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-16 14:26:21 +02:00
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
2023-05-02 11:30:53 +02:00
|
|
|
|
|
|
|
.mx_MainSplit {
|
|
|
|
flex: 1 1 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposer {
|
|
|
|
width: 100%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-03-27 02:22:24 +01:00
|
|
|
.mx_RoomView_auxPanel_hiddenHighlights {
|
|
|
|
border-bottom: 1px solid $primary-hairline-color;
|
2019-03-27 13:15:03 +01:00
|
|
|
padding: 10px 26px;
|
2021-11-11 14:37:29 +01:00
|
|
|
color: $alert;
|
2019-03-27 02:22:24 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_RoomView_messagePanel {
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
2019-03-12 16:30:06 +01:00
|
|
|
flex: 1 1 0;
|
2019-03-14 15:04:09 +01:00
|
|
|
overflow-anchor: none;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-01-15 18:45:56 +01:00
|
|
|
.mx_RoomView_messagePanelSearchSpinner {
|
|
|
|
flex: 1;
|
2022-12-12 12:24:14 +01:00
|
|
|
background-image: url("$(res)/img/typing-indicator-2x.gif");
|
2019-01-15 18:45:56 +01:00
|
|
|
background-position: center 367px;
|
|
|
|
background-size: 25px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
|
|
|
|
2023-05-02 11:30:53 +02:00
|
|
|
&::before {
|
|
|
|
background-color: $info-plinth-fg-color;
|
|
|
|
mask: url("$(res)/img/feather-customised/search-input.svg");
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 50px;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 286px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50px;
|
|
|
|
}
|
2019-01-15 18:45:56 +01:00
|
|
|
}
|
|
|
|
|
2020-12-17 13:25:22 +01:00
|
|
|
.mx_RoomView_body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-04-09 16:03:13 +02:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
|
2022-04-05 18:15:31 +02:00
|
|
|
.mx_RoomView_messagePanel,
|
|
|
|
.mx_RoomView_messagePanelSpinner,
|
|
|
|
.mx_RoomView_messagePanelSearchSpinner {
|
2019-04-09 16:03:13 +02:00
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
|
2023-05-02 11:30:53 +02:00
|
|
|
.mx_RoomView_timeline {
|
|
|
|
/* offset parent for mx_RoomView_topUnreadMessagesBar */
|
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-05-03 11:24:41 +02:00
|
|
|
margin-right: calc(var(--container-gap-width) / 2);
|
2023-05-02 11:30:53 +02:00
|
|
|
}
|
2019-04-09 16:03:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_statusArea {
|
|
|
|
width: 100%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
max-height: 0px;
|
2021-08-12 11:10:47 +02:00
|
|
|
background-color: $background;
|
2019-04-09 16:03:13 +02:00
|
|
|
z-index: 1000;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
transition: all 0.2s ease-out;
|
2019-04-09 16:03:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_statusArea_expanded {
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_statusAreaBox {
|
|
|
|
margin: auto;
|
|
|
|
min-height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_statusAreaBox_line {
|
|
|
|
margin-left: 65px;
|
|
|
|
border-top: 1px solid $primary-hairline-color;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_RoomView_messageListWrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
2022-04-05 18:15:31 +02:00
|
|
|
position: relative;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-01-16 11:14:30 +01:00
|
|
|
.mx_RoomView_searchResultsPanel {
|
|
|
|
.mx_RoomView_messageListWrapper {
|
|
|
|
justify-content: flex-start;
|
2022-01-26 21:15:44 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
> .mx_RoomView_MessageList > li > ol {
|
2022-01-26 21:15:44 +01:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
2019-01-16 11:14:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_empty {
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-13px;
|
2020-09-17 17:23:06 +02:00
|
|
|
padding: 0 24px;
|
|
|
|
margin-right: 30px;
|
2018-04-12 01:23:35 +02:00
|
|
|
text-align: center;
|
2022-07-27 15:39:29 +02:00
|
|
|
margin-bottom: 80px; /* visually center the content (intentional offset) */
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
list-style-type: none;
|
2023-03-21 10:10:13 +01:00
|
|
|
padding: var(--RoomView_MessageList-padding); /* mx_ProfileResizer depends on this value */
|
2019-01-21 17:30:02 +01:00
|
|
|
margin: 0;
|
|
|
|
/* needed as min-height is set to clientHeight in ScrollPanel
|
|
|
|
to prevent shrinking when WhoIsTypingTile is hidden */
|
|
|
|
box-sizing: border-box;
|
2023-05-02 11:30:53 +02:00
|
|
|
|
|
|
|
li {
|
|
|
|
clear: both;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2023-05-09 10:32:16 +02:00
|
|
|
.mx_ScrollPanel & {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
content-visibility: auto;
|
|
|
|
contain-intrinsic-size: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView--local .mx_ScrollPanel & {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-08-04 08:19:52 +02:00
|
|
|
}
|
|
|
|
|
2023-05-02 11:30:53 +02:00
|
|
|
.mx_RoomView_inCall {
|
|
|
|
.mx_RoomView_statusAreaBox_line {
|
|
|
|
margin-top: 2px;
|
|
|
|
border: none;
|
|
|
|
height: 0px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2023-05-02 11:30:53 +02:00
|
|
|
.mx_MessageComposer_wrapper {
|
|
|
|
border-top: 2px hidden;
|
|
|
|
padding-top: 1px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MatrixChat_useCompactLayout {
|
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
margin-bottom: 4px;
|
2022-06-18 15:43:23 +02:00
|
|
|
|
|
|
|
h2 {
|
2023-06-06 16:03:52 +02:00
|
|
|
margin-top: 6px;
|
2022-06-18 15:43:23 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomView_statusAreaBox {
|
|
|
|
min-height: 42px;
|
|
|
|
}
|
|
|
|
}
|
2022-04-05 18:15:31 +02:00
|
|
|
|
|
|
|
@keyframes mx_Indicator_pulse {
|
|
|
|
0% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes mx_Indicator_pulse_shadow {
|
|
|
|
0% {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
transform: scale(2.2);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Indicator {
|
|
|
|
position: absolute;
|
2022-04-06 12:48:30 +02:00
|
|
|
right: -3px;
|
|
|
|
top: -3px;
|
2023-05-16 12:12:45 +02:00
|
|
|
width: var(--RoomHeader-indicator-dot-size);
|
|
|
|
height: var(--RoomHeader-indicator-dot-size);
|
2022-04-05 18:15:31 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
transform: scale(1);
|
2023-07-12 19:46:49 +02:00
|
|
|
background: var(--RoomHeader-indicator-pulseColor);
|
|
|
|
box-shadow: 0 0 0 0 var(--RoomHeader-indicator-pulseColor);
|
2022-04-05 18:15:31 +02:00
|
|
|
animation: mx_Indicator_pulse 2s infinite;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: inherit;
|
|
|
|
height: inherit;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
transform: scale(1);
|
|
|
|
transform-origin: center center;
|
|
|
|
animation-name: mx_Indicator_pulse_shadow;
|
|
|
|
animation-duration: inherit;
|
|
|
|
animation-iteration-count: inherit;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
}
|