2019-05-06 17:41:15 +02:00
|
|
|
/*
|
2019-05-15 10:46:08 +02:00
|
|
|
Copyright 2019 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
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-08-06 16:31:21 +02:00
|
|
|
.mx_BasicMessageComposer {
|
2019-09-03 16:02:37 +02:00
|
|
|
position: relative;
|
|
|
|
|
2019-08-22 16:11:31 +02:00
|
|
|
.mx_BasicMessageComposer_inputEmpty > :first-child::before {
|
2019-08-06 17:52:47 +02:00
|
|
|
content: var(--placeholder);
|
|
|
|
opacity: 0.333;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
overflow: visible;
|
|
|
|
display: inline-block;
|
|
|
|
pointer-events: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2019-08-28 15:53:16 +02:00
|
|
|
@keyframes visualbell {
|
2019-08-28 18:00:57 +02:00
|
|
|
from { background-color: $visual-bell-bg-color; }
|
2019-08-28 15:53:16 +02:00
|
|
|
to { background-color: $primary-bg-color; }
|
|
|
|
}
|
|
|
|
|
|
|
|
&.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;
|
2019-05-17 17:00:22 +02:00
|
|
|
overflow-x: auto;
|
2019-05-07 16:27:09 +02:00
|
|
|
|
2019-05-21 12:19:35 +02:00
|
|
|
span.mx_UserPill, span.mx_RoomPill {
|
2019-05-17 20:49:46 +02:00
|
|
|
padding-left: 21px;
|
|
|
|
position: relative;
|
|
|
|
|
2019-05-21 12:19:35 +02:00
|
|
|
// avatar psuedo element
|
2019-05-17 20:49:46 +02:00
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
left: 2px;
|
|
|
|
top: 2px;
|
|
|
|
content: var(--avatar-letter);
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2019-05-20 15:39:06 +02:00
|
|
|
background: var(--avatar-background), $avatar-bg-color;
|
2019-05-20 14:21:25 +02:00
|
|
|
color: $avatar-initial-color;
|
2019-05-17 20:49:46 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 16px;
|
|
|
|
border-radius: 8px;
|
2019-05-20 14:21:25 +02:00
|
|
|
text-align: center;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 16px;
|
|
|
|
font-size: 10.4px;
|
2019-05-17 20:49:46 +02:00
|
|
|
}
|
2019-05-07 16:27:09 +02:00
|
|
|
}
|
2019-05-06 17:41:15 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 16:31:21 +02:00
|
|
|
.mx_BasicMessageComposer_AutoCompleteWrapper {
|
2019-05-09 15:00:48 +02:00
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
}
|
2019-05-06 17:41:15 +02:00
|
|
|
}
|