Fix styles of "Show all" link button on ReactionsRow (#8658)

pull/28217/head
Suguru Hirahara 2022-05-21 09:38:50 +00:00 committed by GitHub
parent 348863debb
commit e1e87ac019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -57,15 +57,16 @@ limitations under the License.
} }
.mx_ReactionsRow_showAll { .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; color: $tertiary-content;
&:hover { &.mx_AccessibleButton_kind_link_inline {
color: $primary-content; font-size: $font-12px;
line-height: $font-20px;
margin-inline-start: $spacing-4;
vertical-align: middle;
&:hover {
color: $primary-content;
}
} }
} }