Left align call tiles

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-08-13 10:59:59 +02:00
parent ebc7d9ee1a
commit c79852a9f0
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D
3 changed files with 8 additions and 6 deletions

View file

@ -16,7 +16,6 @@ limitations under the License.
.mx_CallEvent_wrapper { .mx_CallEvent_wrapper {
display: flex; display: flex;
justify-content: center;
width: 100%; width: 100%;
.mx_CallEvent { .mx_CallEvent {
@ -28,7 +27,7 @@ limitations under the License.
background-color: $dark-panel-bg-color; background-color: $dark-panel-bg-color;
border-radius: 8px; border-radius: 8px;
width: 75%; width: 65%;
box-sizing: border-box; box-sizing: border-box;
height: 60px; height: 60px;
margin: 4px 0; margin: 4px 0;

View file

@ -932,8 +932,11 @@ export default class EventTile extends React.Component<IProps, IState> {
} else if (this.props.layout == Layout.IRC) { } else if (this.props.layout == Layout.IRC) {
avatarSize = 14; avatarSize = 14;
needsSenderProfile = true; needsSenderProfile = true;
} else if (this.props.continuation && this.props.tileShape !== TileShape.FileGrid) { } else if (
// no avatar or sender profile for continuation messages (this.props.continuation && this.props.tileShape !== TileShape.FileGrid) ||
this.props.mxEvent.getType() === EventType.CallInvite
) {
// no avatar or sender profile for continuation messages and call tiles
avatarSize = 0; avatarSize = 0;
needsSenderProfile = false; needsSenderProfile = false;
} else { } else {

View file

@ -116,14 +116,14 @@ export function getEventDisplayInfo(mxEvent: MatrixEvent): {
(eventType === EventType.RoomMessage && msgtype && msgtype.startsWith("m.key.verification")) || (eventType === EventType.RoomMessage && msgtype && msgtype.startsWith("m.key.verification")) ||
(eventType === EventType.RoomCreate) || (eventType === EventType.RoomCreate) ||
(eventType === EventType.RoomEncryption) || (eventType === EventType.RoomEncryption) ||
(eventType === EventType.CallInvite) ||
(tileHandler === "messages.MJitsiWidgetEvent") (tileHandler === "messages.MJitsiWidgetEvent")
); );
let isInfoMessage = ( let isInfoMessage = (
!isBubbleMessage && !isBubbleMessage &&
eventType !== EventType.RoomMessage && eventType !== EventType.RoomMessage &&
eventType !== EventType.Sticker && eventType !== EventType.Sticker &&
eventType !== EventType.RoomCreate eventType !== EventType.RoomCreate &&
eventType !== EventType.CallInvite
); );
// If we're showing hidden events in the timeline, we should use the // If we're showing hidden events in the timeline, we should use the