From 0fe10e4502dfa234ef9e8388e91ac8ca481b99ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Fri, 2 Jul 2021 14:22:46 +0200 Subject: [PATCH] Fix replies to deleted messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- res/css/views/messages/_RedactedBody.scss | 4 +++- res/css/views/rooms/_ReplyTile.scss | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/res/css/views/messages/_RedactedBody.scss b/res/css/views/messages/_RedactedBody.scss index 600ac0c6b7..767dfef736 100644 --- a/res/css/views/messages/_RedactedBody.scss +++ b/res/css/views/messages/_RedactedBody.scss @@ -20,6 +20,8 @@ limitations under the License. padding-left: 20px; position: relative; + line-height: 2.2rem; + &::before { height: 14px; width: 14px; @@ -30,7 +32,7 @@ limitations under the License. mask-size: contain; content: ''; position: absolute; - top: 1px; + top: 4px; left: 0; } } diff --git a/res/css/views/rooms/_ReplyTile.scss b/res/css/views/rooms/_ReplyTile.scss index fd68430157..487b616240 100644 --- a/res/css/views/rooms/_ReplyTile.scss +++ b/res/css/views/rooms/_ReplyTile.scss @@ -25,7 +25,8 @@ limitations under the License. } .mx_ReplyTile > a { - display: block; + display: flex; + flex-direction: column; text-decoration: none; color: $primary-fg-color; }