2019-05-06 18:41:15 +03:00
|
|
|
/*
|
2019-05-15 11:46:08 +03:00
|
|
|
Copyright 2019 New Vector Ltd
|
2019-08-06 17:31:21 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-05-06 18:41:15 +03: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 17:31:21 +03:00
|
|
|
.mx_EditMessageComposer {
|
2022-07-12 00:19:49 +03:00
|
|
|
--EditMessageComposer-padding-inline: 3px;
|
|
|
|
|
2022-05-12 13:27:06 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-07-27 16:39:29 +03:00
|
|
|
max-width: 100%; /* disable overflow */
|
2022-05-17 20:12:13 +03:00
|
|
|
width: auto;
|
2022-05-12 13:27:06 +03:00
|
|
|
gap: 5px;
|
2022-07-12 00:19:49 +03:00
|
|
|
padding: 3px var(--EditMessageComposer-padding-inline);
|
2022-05-12 13:27:06 +03:00
|
|
|
|
2019-08-06 17:31:21 +03:00
|
|
|
.mx_BasicMessageComposer_input {
|
2019-05-06 18:41:15 +03:00
|
|
|
border-radius: 4px;
|
2019-05-17 18:10:21 +03:00
|
|
|
border: solid 1px $primary-hairline-color;
|
2021-08-12 12:10:47 +03:00
|
|
|
background-color: $background;
|
2019-05-17 18:00:22 +03:00
|
|
|
max-height: 200px;
|
2019-08-06 18:02:47 +03:00
|
|
|
padding: 3px 6px;
|
2019-05-07 17:27:09 +03:00
|
|
|
|
2019-06-26 15:40:33 +03:00
|
|
|
&:focus {
|
2023-07-12 20:46:49 +03:00
|
|
|
border-color: $accent-500;
|
2019-06-26 15:40:33 +03:00
|
|
|
}
|
2019-05-06 18:41:15 +03:00
|
|
|
}
|
|
|
|
|
2019-08-06 17:31:21 +03:00
|
|
|
.mx_EditMessageComposer_buttons {
|
2019-05-06 18:41:15 +03:00
|
|
|
display: flex;
|
2022-07-27 16:39:29 +03:00
|
|
|
flex-flow: row wrap-reverse; /* display "Save" over "Cancel" */
|
2019-05-17 18:00:08 +03:00
|
|
|
justify-content: flex-end;
|
2022-05-12 13:27:06 +03:00
|
|
|
gap: 5px;
|
2022-05-17 20:12:13 +03:00
|
|
|
margin-inline-start: auto;
|
2019-05-06 18:41:15 +03:00
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
2022-05-17 20:12:13 +03:00
|
|
|
flex: 1;
|
|
|
|
box-sizing: border-box;
|
2022-07-27 16:39:29 +03:00
|
|
|
min-width: 100px; /* magic number to align the edge of the button with the input area */
|
2019-05-06 18:41:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|