You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-09 08:42:50 +03:00
correctly align read receipts to state events in bubble layout (#8419)
This commit is contained in:
committed by
GitHub
parent
472222c195
commit
6120adaedd
@@ -449,8 +449,11 @@ limitations under the License.
|
||||
|
||||
.mx_ReadReceiptGroup {
|
||||
position: absolute;
|
||||
right: -78px; // as close to right gutter without clipping as possible
|
||||
bottom: 0;
|
||||
// as close to right gutter without clipping as possible
|
||||
right: -78px;
|
||||
// (EventTileLine.line-height - ReadReceiptGroup.height) / 2
|
||||
// this centers the ReadReceiptGroup if we’ve got a single line
|
||||
bottom: calc(($font-18px - 24px) / 2);
|
||||
top: auto;
|
||||
}
|
||||
|
||||
@@ -586,7 +589,7 @@ limitations under the License.
|
||||
}
|
||||
|
||||
.mx_ReadReceiptGroup {
|
||||
right: -14px; // match alignment to RRs of chat bubbles
|
||||
right: -18px; // match alignment to RRs of chat bubbles
|
||||
}
|
||||
|
||||
&::before {
|
||||
|
Reference in New Issue
Block a user