File size: 1,287 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 65 66 67 68 69 70 71 72 73 |
.conversations__stream .reader-post-card.card.is-compact .reader-post-options-menu {
position: absolute;
right: -2px;
top: -16px;
}
.conversations__stream .reader-post-card.card.is-compact {
.reader-post-card__post-details {
margin-top: -2px;
min-width: 0;
}
.reader-post-card__byline-details {
flex-wrap: wrap;
max-height: none;
}
.reader-post-card__byline-site {
font-weight: 600;
margin-right: 5px;
}
.reader-post-card__author-and-timestamp {
margin-left: 0;
}
.reader-post-card__title {
margin-top: 2px;
position: relative;
&::after {
@include long-content-fade( $size: 35px );
}
}
.reader-post-card__title-link {
font-size: 17px;
line-height: 1.5;
}
.comments__comment-author .gravatar {
top: 5px;
}
&:not(:first-child) {
margin-top: 16px;
}
// Hides Follow button and tags in Conversations stream
.follow-button,
.reader-post-card__tags {
display: none;
}
}
.conversations__stream .conversation-caterpillar {
margin-top: 20px;
}
.is-group-reader .conversations__stream .like-button__label-status {
display: inline;
}
// Conversations empty state
.main .conversations__empty-content.empty-content {
margin-top: 30px;
max-width: 650px;
@include breakpoint-deprecated( ">660px" ) {
margin-top: 70px;
}
}
|