lbry-desktop/ui/scss/component/_comments.scss
infiinte-persistence 8068279b5e Limit the Markdown Editor width in Edit (not New) Mode to prevent overflow.
The MDE used in the "new" section has a parent width parameter to limit itself, while the MDE used in the "edit" section didn't.

Fix by limiting ".comment__body_container" to 80%, which takes into account the space taken by the author's avatar. This feels a little bit dirty since it's hard-coded.  If there's a way to calculate the avatar width from here, it will be more robust.
2020-06-09 09:54:10 -04:00

97 lines
1.6 KiB
SCSS

.comments {
padding-top: var(--spacing-l);
}
.comment {
display: flex;
flex-direction: row;
font-size: var(--font-body);
margin: 0;
&:not(:last-of-type) {
border-bottom: 1px solid var(--color-border);
padding: var(--spacing-m) 0;
}
&:last-of-type {
padding-top: var(--spacing-m);
}
.channel-thumbnail {
@include handleChannelGif(3rem);
}
}
.comment__create--reply {
margin-top: var(--spacing-s);
}
.comment__reply {
border-left: 5px solid var(--color-primary-alt);
margin-left: var(--spacing-m);
.comment__author-thumbnail {
margin-left: var(--spacing-m);
}
}
.comment__reply-button {
margin-top: var(--spacing-s);
}
.comment__body_container {
padding-right: var(--spacing-s);
flex: 1;
width: 80%;
}
.comment__meta {
display: flex;
justify-content: space-between;
text-overflow: ellipsis;
margin-bottom: var(--spacing-s);
}
.comment__meta-information {
justify-content: flex-start;
display: flex;
}
.comment__message {
white-space: pre-line;
word-break: break-word;
margin-top: var(--spacing-s);
}
.comment__author {
text-overflow: ellipsis;
padding-right: var(--spacing-xs);
}
.comment__time {
opacity: 0.3;
white-space: nowrap;
}
.comment__menu {
align-self: flex-end;
}
.comment__char-count {
align-self: flex-end;
font-size: var(--font-small);
}
.comment__menu-option {
display: flex;
align-items: center;
padding: var(--spacing-s);
font-size: var(--font-small);
}
.comment__menu-icon--hovering {
stroke: var(--color-comment-menu-hovering);
}
.comment__menu-icon {
stroke: var(--color-comment-menu);
}