File size: 1,128 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
// Actions for Individual Comments
.comments__comment-actions {
align-items: center;
color: var(--color-text-subtle);
display: flex;
font-size: $font-body-small;
gap: 22px;
justify-content: flex-start;
list-style: none;
margin-top: 4px;
.components-button {
align-items: center;
color: var(--color-text-subtle);
display: flex;
height: auto;
cursor: pointer;
font-size: $font-body-small;
font-weight: 400;
gap: 4px;
justify-content: center;
padding: 0;
svg.reader-star path {
fill: none;
}
&:hover,
button.is-active,
&.like-button.is-liked {
color: var(--color-link);
svg.reader-star path {
stroke: var(--color-link);
}
}
&.like-button.is-liked {
svg.reader-star path {
fill: var(--color-link);
}
}
&.comments__comment-actions-cancel-reply {
padding-right: 0;
}
&.comments__comment-actions-read-more {
color: var(--color-link);
margin: 0 10px 0 -3px;
padding-left: 0;
.comments__comment-actions-read-more-icon {
fill: var(--color-link);
vertical-align: bottom;
}
}
&.like-button {
position: relative;
}
}
}
|