mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-17 15:21:21 +01:00
* Tweak rendering of icons in legacy video feed Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused classes Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in face pile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in overflow tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in room search view Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in top unread messages bar Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in space basic settings Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in thread summary tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in legacy room tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in incoming call toast Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in labs jump to date Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in field validation Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in mini avatar uploader Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in info tooltip Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in network dropdown Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
206 lines
4.2 KiB
Plaintext
206 lines
4.2 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
:root {
|
|
--RoomView_MessageList-padding: 18px;
|
|
}
|
|
|
|
.mx_RoomView_wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
position: relative;
|
|
justify-content: center;
|
|
/* Contain the amount of layers rendered by constraining what actually needs re-layering via css */
|
|
contain: strict;
|
|
}
|
|
|
|
.mx_RoomView {
|
|
word-wrap: break-word;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
position: relative;
|
|
|
|
.mx_MainSplit {
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
.mx_MessageComposer {
|
|
width: 100%;
|
|
flex: 0 0 auto;
|
|
margin-right: 2px;
|
|
padding-bottom: 1em;
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_auxPanel_hiddenHighlights {
|
|
border-bottom: 1px solid $primary-hairline-color;
|
|
padding: 10px 26px;
|
|
color: $alert;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomView_messagePanel {
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
flex: 1 1 0;
|
|
overflow-anchor: none;
|
|
}
|
|
|
|
.mx_RoomView_messagePanelSearchSpinner {
|
|
flex: 1;
|
|
background-image: url("$(res)/img/typing-indicator-2x.gif");
|
|
background-position: center 367px;
|
|
background-size: 25px;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
|
|
svg {
|
|
color: $info-plinth-fg-color;
|
|
width: 50px;
|
|
height: 50px;
|
|
position: absolute;
|
|
top: 286px;
|
|
left: calc(50% - 25px);
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
.mx_RoomView_messagePanel,
|
|
.mx_RoomView_messagePanelSpinner,
|
|
.mx_RoomView_messagePanelSearchSpinner {
|
|
order: 2;
|
|
}
|
|
|
|
.mx_RoomView_timeline {
|
|
/* offset parent for mx_RoomView_topUnreadMessagesBar */
|
|
position: relative;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: calc(var(--container-gap-width) / 2);
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_statusArea {
|
|
width: 100%;
|
|
flex: 0 0 auto;
|
|
|
|
max-height: 0px;
|
|
background-color: $background;
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
|
|
transition: all 0.2s ease-out;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.mx_RoomView_messageListWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
position: relative;
|
|
}
|
|
|
|
.mx_RoomView_searchResultsPanel {
|
|
.mx_RoomView_messageListWrapper {
|
|
justify-content: flex-start;
|
|
|
|
> .mx_RoomView_MessageList > li > ol {
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_empty {
|
|
font-size: $font-13px;
|
|
padding: 0 24px;
|
|
margin-right: 30px;
|
|
text-align: center;
|
|
margin-bottom: 80px; /* visually center the content (intentional offset) */
|
|
}
|
|
|
|
.mx_RoomView_MessageList {
|
|
list-style-type: none;
|
|
padding: var(--RoomView_MessageList-padding); /* mx_ProfileResizer depends on this value */
|
|
margin: 0;
|
|
/* needed as min-height is set to clientHeight in ScrollPanel
|
|
to prevent shrinking when WhoIsTypingTile is hidden */
|
|
box-sizing: border-box;
|
|
|
|
li {
|
|
clear: both;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_inCall {
|
|
.mx_RoomView_statusAreaBox_line {
|
|
margin-top: 2px;
|
|
border: none;
|
|
height: 0px;
|
|
}
|
|
|
|
.mx_MessageComposer_wrapper {
|
|
border-top: 2px hidden;
|
|
padding-top: 1px;
|
|
}
|
|
}
|
|
|
|
.mx_MatrixChat_useCompactLayout {
|
|
.mx_RoomView_MessageList {
|
|
margin-bottom: 4px;
|
|
|
|
h2 {
|
|
margin-top: 6px;
|
|
}
|
|
}
|
|
|
|
.mx_RoomView_statusAreaBox {
|
|
min-height: 42px;
|
|
}
|
|
}
|