mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
[Backport staging] Fixed shield alignment on message Input (#12155)
Co-authored-by: Manan Sadana <manancodes.dev@gmail.com>
This commit is contained in:
parent
9e16381a6e
commit
43b607f715
2 changed files with 6 additions and 2 deletions
|
@ -79,7 +79,9 @@ limitations under the License.
|
|||
.mx_MessageComposer_composecontrols {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mx_MessageComposer_e2eIconWrapper {
|
||||
height: 12px; /* Match the height of the E2E icon for alignment */
|
||||
}
|
||||
.mx_MessageComposer_e2eIcon.mx_E2EIcon {
|
||||
position: absolute;
|
||||
left: 20px;
|
||||
|
|
|
@ -475,7 +475,9 @@ export class MessageComposer extends React.Component<IProps, IState> {
|
|||
public render(): React.ReactNode {
|
||||
const hasE2EIcon = Boolean(!this.state.isWysiwygLabEnabled && this.props.e2eStatus);
|
||||
const e2eIcon = hasE2EIcon && (
|
||||
<E2EIcon key="e2eIcon" status={this.props.e2eStatus!} className="mx_MessageComposer_e2eIcon" />
|
||||
<div className="mx_MessageComposer_e2eIconWrapper">
|
||||
<E2EIcon key="e2eIcon" status={this.props.e2eStatus!} className="mx_MessageComposer_e2eIcon" />
|
||||
</div>
|
||||
);
|
||||
|
||||
const controls: ReactNode[] = [];
|
||||
|
|
Loading…
Reference in a new issue