2019-05-06 23:41:15 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-08-06 22:31:21 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-05-06 23:41:15 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-05-06 23:41:15 +08:00
|
|
|
*/
|
|
|
|
|
2019-08-06 22:31:21 +08:00
|
|
|
.mx_BasicMessageComposer {
|
2019-09-03 22:02:37 +08:00
|
|
|
position: relative;
|
|
|
|
|
2019-08-22 22:11:31 +08:00
|
|
|
.mx_BasicMessageComposer_inputEmpty > :first-child::before {
|
2019-08-06 23:52:47 +08:00
|
|
|
content: var(--placeholder);
|
2024-03-18 23:47:55 +08:00
|
|
|
color: var(--cpd-color-text-secondary);
|
2019-08-06 23:52:47 +08:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
overflow: visible;
|
|
|
|
display: inline-block;
|
|
|
|
pointer-events: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2019-08-28 21:53:16 +08:00
|
|
|
@keyframes visualbell {
|
2019-08-29 00:00:57 +08:00
|
|
|
from {
|
|
|
|
background-color: $visual-bell-bg-color;
|
|
|
|
}
|
2021-08-12 17:10:47 +08:00
|
|
|
to {
|
|
|
|
background-color: $background;
|
|
|
|
}
|
2019-08-28 21:53:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_BasicMessageComposer_input_error {
|
|
|
|
animation: 0.2s visualbell;
|
|
|
|
}
|
|
|
|
|
2019-08-06 22:31:21 +08:00
|
|
|
.mx_BasicMessageComposer_input {
|
2019-05-09 21:02:43 +08:00
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
outline: none;
|
2019-10-02 15:53:55 +08:00
|
|
|
overflow-x: hidden;
|
2019-05-07 22:27:09 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Force caret nodes to be selected in full so that they can be */
|
|
|
|
/* navigated through in a single keypress */
|
2022-01-24 20:24:11 +08:00
|
|
|
.caretNode {
|
|
|
|
user-select: all;
|
|
|
|
}
|
|
|
|
|
2020-04-10 16:30:19 +08:00
|
|
|
&.mx_BasicMessageComposer_input_shouldShowPillAvatar {
|
2022-06-05 21:22:44 +08:00
|
|
|
span.mx_UserPill,
|
|
|
|
span.mx_RoomPill,
|
|
|
|
span.mx_SpacePill {
|
2022-01-24 20:18:08 +08:00
|
|
|
user-select: all;
|
2022-05-05 17:13:09 +08:00
|
|
|
position: relative;
|
2022-07-27 21:39:29 +08:00
|
|
|
cursor: unset; /* We don't want indicate clickability */
|
2022-06-19 17:56:37 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-05-05 17:13:09 +08:00
|
|
|
|
|
|
|
&:hover {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* We don't want indicate clickability | To override the overriding of .markdown-body */
|
2022-05-05 17:13:09 +08:00
|
|
|
background-color: $pill-bg-color !important;
|
|
|
|
}
|
2019-05-18 02:49:46 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* avatar psuedo element */
|
2020-04-10 16:30:19 +08:00
|
|
|
&::before {
|
2022-06-19 17:56:37 +08:00
|
|
|
display: inline-block;
|
2020-04-10 16:30:19 +08:00
|
|
|
content: var(--avatar-letter);
|
2020-04-04 00:53:49 +08:00
|
|
|
width: $font-16px;
|
2022-07-27 21:39:29 +08:00
|
|
|
min-width: $font-16px; /* ensure the avatar is not compressed */
|
2020-04-04 00:53:49 +08:00
|
|
|
height: $font-16px;
|
2022-06-05 21:22:44 +08:00
|
|
|
margin-inline-end: 0.24rem;
|
2023-02-02 18:22:19 +08:00
|
|
|
background: var(--avatar-background), $background;
|
2023-08-30 19:47:35 +08:00
|
|
|
color: var(--avatar-color, $avatar-initial-color);
|
2020-04-10 16:30:19 +08:00
|
|
|
background-repeat: no-repeat;
|
2020-04-04 00:53:49 +08:00
|
|
|
background-size: $font-16px;
|
|
|
|
border-radius: $font-16px;
|
2020-04-10 16:30:19 +08:00
|
|
|
text-align: center;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: $font-16px;
|
|
|
|
font-size: $font-10-4px;
|
|
|
|
}
|
2019-05-18 02:49:46 +08:00
|
|
|
}
|
2019-05-07 22:27:09 +08:00
|
|
|
}
|
2021-03-16 12:16:58 +08:00
|
|
|
|
|
|
|
&.mx_BasicMessageComposer_input_disabled {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Ignore all user input to avoid accidentally triggering the composer */
|
2021-03-16 12:16:58 +08:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
2019-05-06 23:41:15 +08:00
|
|
|
}
|
|
|
|
|
2019-08-06 22:31:21 +08:00
|
|
|
.mx_BasicMessageComposer_AutoCompleteWrapper {
|
2019-05-09 21:00:48 +08:00
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
}
|
2019-05-06 23:41:15 +08:00
|
|
|
}
|