2019-05-06 17:41:15 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02: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
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
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_EditMessageComposer {
|
2022-07-11 23:19:49 +02:00
|
|
|
--EditMessageComposer-padding-inline: 3px;
|
|
|
|
|
2022-05-12 12:27:06 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-07-27 15:39:29 +02:00
|
|
|
max-width: 100%; /* disable overflow */
|
2022-05-17 19:12:13 +02:00
|
|
|
width: auto;
|
2022-05-12 12:27:06 +02:00
|
|
|
gap: 5px;
|
2022-07-11 23:19:49 +02:00
|
|
|
padding: 3px var(--EditMessageComposer-padding-inline);
|
2022-05-12 12:27:06 +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;
|
2021-08-12 11:10:47 +02:00
|
|
|
background-color: $background;
|
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 {
|
2024-03-05 05:25:47 +01:00
|
|
|
border-color: var(--cpd-color-border-interactive-primary);
|
2019-06-26 14:40:33 +02:00
|
|
|
}
|
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;
|
2022-07-27 15:39:29 +02:00
|
|
|
flex-flow: row wrap-reverse; /* display "Save" over "Cancel" */
|
2019-05-17 17:00:08 +02:00
|
|
|
justify-content: flex-end;
|
2022-05-12 12:27:06 +02:00
|
|
|
gap: 5px;
|
2022-05-17 19:12:13 +02:00
|
|
|
margin-inline-start: auto;
|
2019-05-06 17:41:15 +02:00
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
2022-05-17 19:12:13 +02:00
|
|
|
flex: 1;
|
|
|
|
box-sizing: border-box;
|
2022-07-27 15:39:29 +02:00
|
|
|
min-width: 100px; /* magic number to align the edge of the button with the input area */
|
2019-05-06 17:41:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|