File size: 737 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
.comment-button {
align-items: center;
box-sizing: border-box;
color: var(--color-text-subtle);
fill: var(--color-text-subtle);
cursor: pointer;
display: flex;
height: 20px;
gap: 4px;
// highlight button
&:hover,
&:active {
color: var(--color-link);
fill: var(--color-link);
}
.comment-button__label-status {
@include breakpoint-deprecated( "<480px" ) {
display: none;
}
}
&.tooltip {
@include tooltip-base;
@include tooltip-top;
}
}
.comment-button__label {
font-size: $font-body-small;
&:empty {
display: none;
}
.comment-button__label-count {
font-size: $font-body-small;
}
}
.reader-full-post .reader-post-actions .comment-button .comment-button__label {
font-size: $font-body-small;
}
|