element-web-Github/res/css/views/rooms/_BasicMessageComposer.pcss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.9 KiB
Plaintext
Raw Normal View History

/*
Copyright 2019-2024 New Vector Ltd.
2019-08-06 22:31:21 +08:00
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.
*/
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);
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;
}
@keyframes visualbell {
from {
background-color: $visual-bell-bg-color;
}
to {
background-color: $background;
}
}
&.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;
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;
2022-05-05 17:13:09 +08:00
position: relative;
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 {
/* 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;
}
/* avatar psuedo element */
&::before {
2022-06-19 17:56:37 +08:00
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;
}
}
}
2021-03-16 12:16:58 +08:00
&.mx_BasicMessageComposer_input_disabled {
/* Ignore all user input to avoid accidentally triggering the composer */
2021-03-16 12:16:58 +08:00
pointer-events: none;
}
}
2019-08-06 22:31:21 +08:00
.mx_BasicMessageComposer_AutoCompleteWrapper {
position: relative;
height: 0;
}
}