X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=8d5348af4af28626609fb9063d49a37d97ec0bf5;hb=a0dedc02ca870a31298eb35d5105a1ebc34dbb4a;hp=4c481d486bd4ef27f5feadd64ee5f720174fc7a3;hpb=3689141ac3ed59d6681eeca89b33eaf2310042bc;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.scss b/client/src/app/videos/+video-watch/comment/video-comment.component.scss index 4c481d486..8d5348af4 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.component.scss +++ b/client/src/app/videos/+video-watch/comment/video-comment.component.scss @@ -5,11 +5,28 @@ font-size: 15px; display: flex; - img { + .left { + display: flex; + flex-direction: column; + align-items: center; + margin-right: 10px; + + .vertical-border { + width: 2px; + height: 100%; + background-color: rgba(0, 0, 0, 0.05); + margin: 10px 0; + } + } + + .right { + width: 100%; + } + + .comment-avatar { @include avatar(36px); margin-top: 5px; - margin-right: 20px; } .comment { @@ -35,74 +52,96 @@ .comment-account { @include disable-default-a-behaviour; - color: #000; + word-break: break-all; + color: var(--mainForegroundColor); font-weight: $font-bold; } .comment-date { - color: #585858; + color: $grey-foreground-color; margin-left: 10px; } } .comment-html { - word-break: normal; - word-wrap: break-word; - overflow-wrap: break-word; - -webkit-hyphens: auto; - -ms-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; - text-align: justify; - - /deep/ a { - @include disable-default-a-behaviour; + @include peertube-word-wrap; + margin-bottom: 10px; - color: #000; + // Mentions + ::ng-deep a { - // Semi bold mentions &:not(.linkified-url) { + @include disable-default-a-behaviour; + + color: var(--mainForegroundColor); + font-weight: $font-semibold; } + + } + + &.comment-html-deleted { + color: $grey-foreground-color; } } .comment-actions { - margin: 10px 0; + margin-bottom: 10px; display: flex; - .comment-action-reply, .comment-action-delete { - color: #585858; + .comment-action-reply, + .comment-action-delete { + color: $grey-foreground-color; cursor: pointer; margin-right: 10px; &:hover { - color: #000; + color: var(--mainForegroundColor); } } } } -} -// Decrease the space of child comments on small screens -@media screen and (max-width: 1600px) { .children { - margin-left: -20px; + // Reduce avatars size for replies + .comment-avatar { + @include avatar(25px); + } + + .left { + margin-right: 6px; + } } } @media screen and (max-width: 1200px) { .children { - margin-left: -30px; + margin-left: -10px; } } @media screen and (max-width: 600px) { - .children { - margin-left: -40px; - } - .root-comment { - img { margin-right: 10px; } + .children { + margin-left: -20px; + + .left { + align-items: flex-start; + + .vertical-border { + margin-left: 2px; + } + } + } + + .comment { + .comment-account-date { + flex-direction: column; + + .comment-date { + margin-left: 0; + } + } + } } }