From e1e87ac0196bd4bdebf3a47f70591c77462c2255 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 21 May 2022 09:38:50 +0000 Subject: [PATCH] Fix styles of "Show all" link button on ReactionsRow (#8658) --- res/css/views/messages/_ReactionsRow.scss | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/res/css/views/messages/_ReactionsRow.scss b/res/css/views/messages/_ReactionsRow.scss index d4695888df..591abce143 100644 --- a/res/css/views/messages/_ReactionsRow.scss +++ b/res/css/views/messages/_ReactionsRow.scss @@ -57,15 +57,16 @@ limitations under the License. } .mx_ReactionsRow_showAll { - @mixin ButtonResetDefault; - text-decoration: none; - font-size: $font-12px; - line-height: $font-20px; - margin-left: 4px; - vertical-align: middle; color: $tertiary-content; - &:hover { - color: $primary-content; + &.mx_AccessibleButton_kind_link_inline { + font-size: $font-12px; + line-height: $font-20px; + margin-inline-start: $spacing-4; + vertical-align: middle; + + &:hover { + color: $primary-content; + } } }