Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Adjust EditMessageComposer style declarations #8631

Merged
merged 3 commits into from
May 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions res/css/views/rooms/_EditMessageComposer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ limitations under the License.
.mx_EditMessageComposer {
display: flex;
flex-direction: column;
max-width: 100%; // disable overflow
width: auto;
gap: 5px;
padding: 3px;

// Make sure the formatting bar is visible
overflow: visible !important; // override mx_EventTile_content

.mx_BasicMessageComposer_input {
border-radius: 4px;
border: solid 1px $primary-hairline-color;
Expand All @@ -38,12 +37,15 @@ limitations under the License.

.mx_EditMessageComposer_buttons {
display: flex;
flex-direction: row;
flex-flow: row wrap-reverse; // display "Save" over "Cancel"
justify-content: flex-end;
gap: 5px;
margin-inline-start: auto;

.mx_AccessibleButton {
padding: 5px 40px;
flex: 1;
box-sizing: border-box;
min-width: 100px; // magic number to align the edge of the button with the input area
}
}
}
7 changes: 7 additions & 0 deletions res/css/views/rooms/_EventTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
mask-image: url('$(res)/img/element-icons/circle-sending.svg');
}

.mx_EventTile_content {
&.mx_EditMessageComposer {
// Make sure the formatting bar is visible
overflow: visible;
}
}

&[data-layout=group] {
.mx_EventTile_line {
line-height: var(--GroupLayout-EventTile-line-height);
Expand Down