Files
ThreadNet-Web/apps/web/res/css/views/rooms/_BasicMessageComposer.pcss
T

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

104 lines
3.2 KiB
Plaintext
Raw Normal View History

2019-05-06 17:41:15 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
2019-08-06 16:31:21 +02:00
Copyright 2019 The Matrix.org Foundation C.I.C.
2019-05-06 17:41:15 +02:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2019-05-06 17:41:15 +02:00
*/
2019-08-06 16:31:21 +02:00
.mx_BasicMessageComposer {
/* These are set in Javascript */
--avatar-letter: "";
--avatar-background: unset;
--avatar-color: unset;
--placeholder: "";
2019-09-03 16:02:37 +02:00
position: relative;
2019-08-22 15:11:31 +01:00
.mx_BasicMessageComposer_inputEmpty > :first-child::before {
2019-08-06 17:52:47 +02:00
content: var(--placeholder);
color: var(--cpd-color-text-secondary);
2019-08-06 17:52:47 +02: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;
}
2021-08-12 11:10:47 +02:00
to {
background-color: $background;
}
}
&.mx_BasicMessageComposer_input_error {
animation: 0.2s visualbell;
}
2019-08-06 16:31:21 +02:00
.mx_BasicMessageComposer_input {
2019-05-09 15:02:43 +02: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 {
display: inline-flex;
align-items: center;
user-select: all;
2022-05-05 11:13:09 +02:00
position: relative;
cursor: unset; /* We don't want indicate clickability */
2022-06-19 09:56:37 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2022-05-05 11:13:09 +02:00
&:hover {
/* We don't want indicate clickability | To override the overriding of .markdown-body */
2022-05-05 11:13:09 +02:00
background-color: $pill-bg-color !important;
}
/* avatar psuedo element */
&::before {
2022-06-19 09:56:37 +00:00
display: inline-block;
content: var(--avatar-letter);
2020-04-03 17:53:49 +01:00
width: $font-16px;
min-width: $font-16px; /* ensure the avatar is not compressed */
2020-04-03 17:53:49 +01:00
height: $font-16px;
margin-inline-end: 0.24rem;
background: var(--avatar-background), $background;
2023-08-30 12:47:35 +01:00
color: var(--avatar-color, $avatar-initial-color);
background-repeat: no-repeat;
2020-04-03 17:53:49 +01:00
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-15 22:16:58 -06:00
&.mx_BasicMessageComposer_input_disabled {
/* Ignore all user input to avoid accidentally triggering the composer */
2021-03-15 22:16:58 -06:00
pointer-events: none;
}
2019-05-06 17:41:15 +02:00
}
2019-08-06 16:31:21 +02:00
.mx_BasicMessageComposer_AutoCompleteWrapper {
position: relative;
height: 0;
}
2019-05-06 17:41:15 +02:00
}