Fix EventTileSummary layout for message bubbles
parent
9319f07291
commit
df407ef3a8
|
@ -29,6 +29,11 @@ limitations under the License.
|
||||||
margin-right: 100px;
|
margin-right: 100px;
|
||||||
font-size: $font-14px;
|
font-size: $font-14px;
|
||||||
|
|
||||||
|
.mx_ThreadInfo {
|
||||||
|
clear: both;
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
&.mx_EventTile_continuation {
|
&.mx_EventTile_continuation {
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
@ -108,6 +113,12 @@ limitations under the License.
|
||||||
right: -68px;
|
right: -68px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_ThreadInfo {
|
||||||
|
float: right;
|
||||||
|
margin-right: calc(-1 * var(--gutterSize));
|
||||||
|
}
|
||||||
|
|
||||||
.mx_SenderProfile {
|
.mx_SenderProfile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -690,6 +690,7 @@ $hover-select-border: 4px;
|
||||||
color: $secondary-content;
|
color: $secondary-content;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
clear: both;
|
||||||
|
|
||||||
&:hover, &-active {
|
&:hover, &-active {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -1335,8 +1335,8 @@ export default class EventTile extends React.Component<IProps, IState> {
|
||||||
{ keyRequestInfo }
|
{ keyRequestInfo }
|
||||||
{ actionBar }
|
{ actionBar }
|
||||||
{ this.props.layout === Layout.IRC && (reactionsRow) }
|
{ this.props.layout === Layout.IRC && (reactionsRow) }
|
||||||
{ this.renderThreadInfo() }
|
|
||||||
</div>
|
</div>
|
||||||
|
{ this.renderThreadInfo() }
|
||||||
{ this.props.layout !== Layout.IRC && (reactionsRow) }
|
{ this.props.layout !== Layout.IRC && (reactionsRow) }
|
||||||
{ msgOption }
|
{ msgOption }
|
||||||
</>)
|
</>)
|
||||||
|
|
Loading…
Reference in New Issue