mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 10:28:46 +08:00
c05c429803
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Florian Duros <florian.duros@ormaz.fr> Co-authored-by: Kim Brose <kim.brose@nordeck.net> Co-authored-by: Florian Duros <florianduros@element.io> Co-authored-by: R Midhun Suresh <hi@midhun.dev> Co-authored-by: dbkr <986903+dbkr@users.noreply.github.com> Co-authored-by: ElementRobot <releases@riot.im> Co-authored-by: dbkr <dbkr@users.noreply.github.com> Co-authored-by: David Baker <dbkr@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: David Langley <davidl@element.io> Co-authored-by: Michael Weimann <michaelw@matrix.org> Co-authored-by: Timshel <Timshel@users.noreply.github.com> Co-authored-by: Sahil Silare <32628578+sahil9001@users.noreply.github.com> Co-authored-by: Will Hunt <will@half-shot.uk> Co-authored-by: Hubert Chathi <hubert@uhoreg.ca> Co-authored-by: Andrew Ferrazzutti <andrewf@element.io> Co-authored-by: Robin <robin@robin.town> Co-authored-by: Tulir Asokan <tulir@maunium.net>
96 lines
2.9 KiB
Plaintext
96 lines
2.9 KiB
Plaintext
/*
|
|
Copyright 2019-2024 New Vector Ltd.
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_BasicMessageComposer {
|
|
position: relative;
|
|
|
|
.mx_BasicMessageComposer_inputEmpty > :first-child::before {
|
|
content: var(--placeholder);
|
|
color: var(--cpd-color-text-secondary);
|
|
width: 0;
|
|
height: 0;
|
|
overflow: visible;
|
|
display: inline-block;
|
|
pointer-events: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@keyframes visualbell {
|
|
from {
|
|
background-color: $visual-bell-bg-color;
|
|
}
|
|
to {
|
|
background-color: $background;
|
|
}
|
|
}
|
|
|
|
&.mx_BasicMessageComposer_input_error {
|
|
animation: 0.2s visualbell;
|
|
}
|
|
|
|
.mx_BasicMessageComposer_input {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
outline: none;
|
|
overflow-x: hidden;
|
|
|
|
/* Force caret nodes to be selected in full so that they can be */
|
|
/* navigated through in a single keypress */
|
|
.caretNode {
|
|
user-select: all;
|
|
}
|
|
|
|
&.mx_BasicMessageComposer_input_shouldShowPillAvatar {
|
|
span.mx_UserPill,
|
|
span.mx_RoomPill,
|
|
span.mx_SpacePill {
|
|
user-select: all;
|
|
position: relative;
|
|
cursor: unset; /* We don't want indicate clickability */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
/* We don't want indicate clickability | To override the overriding of .markdown-body */
|
|
background-color: $pill-bg-color !important;
|
|
}
|
|
|
|
/* avatar psuedo element */
|
|
&::before {
|
|
display: inline-block;
|
|
content: var(--avatar-letter);
|
|
width: $font-16px;
|
|
min-width: $font-16px; /* ensure the avatar is not compressed */
|
|
height: $font-16px;
|
|
margin-inline-end: 0.24rem;
|
|
background: var(--avatar-background), $background;
|
|
color: var(--avatar-color, $avatar-initial-color);
|
|
background-repeat: no-repeat;
|
|
background-size: $font-16px;
|
|
border-radius: $font-16px;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
line-height: $font-16px;
|
|
font-size: $font-10-4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.mx_BasicMessageComposer_input_disabled {
|
|
/* Ignore all user input to avoid accidentally triggering the composer */
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.mx_BasicMessageComposer_AutoCompleteWrapper {
|
|
position: relative;
|
|
height: 0;
|
|
}
|
|
}
|