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_EditMessageComposer {
|
|
|
|
|
2019-05-17 16:31:09 +02:00
|
|
|
padding: 3px;
|
2019-05-17 17:10:11 +02:00
|
|
|
// this is to try not make the text move but still have some
|
|
|
|
// padding around and in the editor.
|
|
|
|
// Actual values from fiddling around in inspector
|
2019-05-21 12:18:20 +02:00
|
|
|
margin: -7px -10px -5px -10px;
|
|
|
|
overflow: visible !important; // override mx_EventTile_content
|
2019-05-06 17:41:15 +02:00
|
|
|
|
2019-08-06 16:31:21 +02:00
|
|
|
|
|
|
|
.mx_BasicMessageComposer_input {
|
2019-05-06 17:41:15 +02:00
|
|
|
border-radius: 4px;
|
2019-05-17 17:10:21 +02:00
|
|
|
border: solid 1px $primary-hairline-color;
|
|
|
|
background-color: $primary-bg-color;
|
2019-05-17 17:00:22 +02:00
|
|
|
max-height: 200px;
|
2019-08-06 17:02:47 +02:00
|
|
|
padding: 3px 6px;
|
2019-05-07 16:27:09 +02:00
|
|
|
|
2019-06-26 14:40:33 +02:00
|
|
|
&:focus {
|
|
|
|
border-color: $accent-color-50pct;
|
|
|
|
}
|
2019-05-06 17:41:15 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 16:31:21 +02:00
|
|
|
.mx_EditMessageComposer_buttons {
|
2019-05-06 17:41:15 +02:00
|
|
|
display: flex;
|
2019-05-14 11:37:57 +02:00
|
|
|
flex-direction: row;
|
2019-05-17 17:00:08 +02:00
|
|
|
justify-content: flex-end;
|
2019-05-17 16:31:09 +02:00
|
|
|
padding: 5px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
background: $header-panel-bg-color;
|
|
|
|
z-index: 100;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 -110px 0 0;
|
2019-05-21 12:18:20 +02:00
|
|
|
padding-right: 147px;
|
2019-05-06 17:41:15 +02:00
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
2019-05-14 11:37:57 +02:00
|
|
|
margin-left: 5px;
|
2019-05-06 17:41:15 +02:00
|
|
|
padding: 5px 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-17 16:31:09 +02:00
|
|
|
|
2019-08-06 16:31:21 +02:00
|
|
|
.mx_EventTile_last .mx_EditMessageComposer_buttons {
|
2019-05-17 16:31:09 +02:00
|
|
|
position: static;
|
2019-05-21 16:06:14 +02:00
|
|
|
margin-right: -147px;
|
2019-05-17 16:31:09 +02:00
|
|
|
}
|