2019-08-06 17:03:44 +02:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_SendMessageComposer {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-14px;
|
2019-08-07 14:06:44 +02:00
|
|
|
justify-content: center;
|
2019-08-07 14:51:49 +02:00
|
|
|
margin-right: 6px;
|
|
|
|
// don't grow wider than available space
|
|
|
|
min-width: 0;
|
2019-08-06 17:03:44 +02:00
|
|
|
|
|
|
|
.mx_BasicMessageComposer {
|
2019-08-07 14:06:44 +02:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-08-07 14:51:49 +02:00
|
|
|
// min-height at this level so the mx_BasicMessageComposer_input
|
|
|
|
// still stays vertically centered when less than 50px
|
2019-09-03 10:27:45 +02:00
|
|
|
min-height: 50px;
|
2019-08-07 14:06:44 +02:00
|
|
|
|
2019-08-06 17:03:44 +02:00
|
|
|
.mx_BasicMessageComposer_input {
|
|
|
|
padding: 3px 0;
|
2019-08-07 14:06:44 +02:00
|
|
|
// this will center the contenteditable
|
|
|
|
// in it's parent vertically
|
|
|
|
// while keeping the autocomplete at the top
|
|
|
|
// of the composer. The parent needs to be a flex container for this to work.
|
2019-09-03 10:27:45 +02:00
|
|
|
margin: auto 0;
|
2019-08-07 14:51:49 +02:00
|
|
|
// max-height at this level so autocomplete doesn't get scrolled too
|
|
|
|
max-height: 140px;
|
|
|
|
overflow-y: auto;
|
2019-08-06 17:03:44 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-07 15:14:50 +02:00
|
|
|
|
|
|
|
.mx_SendMessageComposer_overlayWrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
}
|
2019-08-06 17:03:44 +02:00
|
|
|
}
|
|
|
|
|