lbry-desktop/src/ui/scss/component/_comments.scss

82 lines
1.5 KiB
SCSS
Raw Normal View History

2019-06-27 01:59:27 +02:00
.comments {
2019-07-21 23:31:22 +02:00
@extend .ul--no-style;
2019-06-27 01:59:27 +02:00
margin-top: var(--spacing-large);
}
2019-05-22 20:59:46 +02:00
2019-06-27 01:59:27 +02:00
.comment {
padding: var(--spacing-medium) 0;
2019-05-21 23:15:37 +02:00
&:not(:last-of-type) {
2019-05-22 20:59:46 +02:00
border-bottom: 1px solid var(--lbry-gray-1);
[data-mode='dark'] & {
border-color: rgba($lbry-gray-5, 0.2);
}
}
display: flex;
flex-direction: column;
padding: 0;
2019-05-22 20:59:46 +02:00
}
2019-06-27 01:59:27 +02:00
// .comment__actions-wrap {
// align-items: center;
// display: flex;
// justify-content: space-between;
// width: 4.5rem;
// }
// .comment__action {
// @include hide-text;
// width: 0;
// height: 0;
// transition: border-color 0.2s;
// &.downvote {
// border-top: 2rem solid var(--lbry-orange-3);
// border-right: 1rem solid transparent;
// border-left: 1rem solid transparent;
// &:hover {
// border-top-color: var(--lbry-yellow-3);
// }
// }
// &.upvote {
// border-right: 1rem solid transparent;
// border-bottom: 2rem solid var(--lbry-teal-4);
// border-left: 1rem solid transparent;
// &:hover {
// border-bottom-color: var(--lbry-green-2);
// }
// }
// }
2019-05-22 20:59:46 +02:00
.comment__meta {
time {
opacity: 0.3;
}
text-overflow: ellipsis;
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}
.comment__message {
white-space: pre-line;
margin-bottom: 1rem;
}
.comment__author {
margin-bottom: 1rem;
text-overflow: ellipsis; // This is where the magic happens
flex-basis: 400px;
flex-shrink: 1;
font-weight: 600;
}
.comment__time {
flex-basis: 200px;
text-align: right;
2019-05-21 23:15:37 +02:00
}