Edit properties and values of EventTile on ThreadView (#8638)
* Edit properties and values of EventTile on ThreadView Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Remove obsolete order properties of EventTile on ThreadView These values are no longer required as the reactions row is displayed under the message by default. Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>pull/28217/head
parent
eb977e6e7d
commit
764b307e63
|
@ -863,22 +863,23 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
.mx_EventTile_line {
|
.mx_EventTile_line {
|
||||||
padding-top: 2px;
|
padding-top: var(--BaseCard_EventTile_line-padding-block);
|
||||||
padding-bottom: 2px;
|
padding-bottom: var(--BaseCard_EventTile_line-padding-block);
|
||||||
padding-left: 0;
|
}
|
||||||
order: 10 !important;
|
|
||||||
|
.mx_EventTile_line,
|
||||||
|
.mx_ReactionsRow {
|
||||||
|
padding-inline-start: 0; // Cancel inherited padding value for event message and reactions row
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_ReactionsRow {
|
||||||
|
padding-inline-end: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MessageTimestamp {
|
.mx_MessageTimestamp {
|
||||||
font-size: $font-10px;
|
font-size: $font-10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_ReactionsRow {
|
|
||||||
order: 999;
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:not([data-layout=bubble]) {
|
&:not([data-layout=bubble]) {
|
||||||
padding-top: $spacing-16;
|
padding-top: $spacing-16;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue