File size: 1,020 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 |
/* stylelint-disable-next-line scss/load-no-partial-leading-underscore */
@import "calypso/assets/stylesheets/shared/_rendered-blocks";
// Post comments line-clamping
.comments__comment-content-wrapper {
position: relative;
@include clear-fix;
&.is-single-line,
&.is-single-line .comments__comment-content {
max-height: $font-body * 1.6;
}
&.is-excerpt,
&.is-excerpt .comments__comment-content {
max-height: $font-body * 1.6 * 3; // 3 lines
}
&.is-single-line .comments__comment-content,
&.is-excerpt .comments__comment-content {
overflow: hidden;
}
}
// Hide certain elements in excerpt comments
.comments__comment-content-wrapper.is-excerpt {
blockquote {
display: none;
}
}
.comments__comment-content-wrapper.is-excerpt .comments__comment-content p {
margin-bottom: 0;
}
.comments__comment-content-wrapper.is-excerpt .comments__comment-content blockquote {
margin: 10px 0 16px;
}
.comments__comment-content {
@extend %rendered-block-content;
font-family: $sans;
line-height: 1.56;
}
|