X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=e7ef79561f7ffe2832428baaecb6cca03ac449da;hb=e66883b37ae0796256b3aba550670a2d76cfc98a;hp=731ecbf8f97736fa341b57cbb09c241bdeebe0a9;hpb=b718fd22374d64534bcfe69932cf562894abed6a;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 731ecbf8f..e7ef79561 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,26 @@ font-size: 15px; display: flex; - img { - @include avatar(36px); + .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 calc(1rem + 1px); + } + } - margin-top: 5px; - margin-right: 20px; + .right { + width: 100%; + } + + .comment-avatar { + @include avatar(36px); } .comment { @@ -32,17 +47,42 @@ display: flex; margin-bottom: 4px; - .comment-account { - @include disable-default-a-behaviour; + .video-author { + height: 20px; + background-color: #888888; + border-radius: 12px; + margin-bottom: 2px; + max-width: 100%; + box-sizing: border-box; + flex-direction: row; + align-items: center; + display: inline-flex; + padding-right: 6px; + padding-left: 6px; + color: white !important; + } + .comment-account { word-break: break-all; - color: var(--mainForegroundColor); - font-weight: $font-bold; + font-weight: 600; + font-size: 90%; + + a { + @include disable-default-a-behaviour; + + color: pvar(--mainForegroundColor); + } + + .comment-account-fid { + opacity: .6; + } } .comment-date { - color: $grey-foreground-color; - margin-left: 10px; + font-size: 90%; + color: pvar(--greyForegroundColor); + margin-left: 5px; + text-decoration: none; } } @@ -50,62 +90,100 @@ @include peertube-word-wrap; // Mentions - /deep/ a { + ::ng-deep a { &:not(.linkified-url) { @include disable-default-a-behaviour; - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); font-weight: $font-semibold; } } + + // Paragraphs + ::ng-deep p { + margin-bottom: .3rem; + } + + &.comment-html-deleted { + color: pvar(--greyForegroundColor); + margin-bottom: 1rem; + } } .comment-actions { - margin: 10px 0; + margin-bottom: 10px; display: flex; + ::ng-deep .dropdown-toggle, .comment-action-reply, .comment-action-delete { - color: $grey-foreground-color; + color: pvar(--greyForegroundColor); cursor: pointer; margin-right: 10px; &:hover { - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); } } + + ::ng-deep .action-button { + background-color: transparent; + padding: 0; + font-weight: unset; + } + } + + my-video-comment-add { + ::ng-deep form { + margin-top: 1rem; + margin-bottom: 0; + } } } -} -// 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: -35px; - } - .root-comment { - img { margin-right: 10px; } - } -} + .children { + margin-left: -20px; -@media screen and (max-width: 450px) { - .root-comment { - font-size: 14px; + .left { + align-items: flex-start; + + .vertical-border { + margin-left: 2px; + } + } + } + + .comment { + .comment-account-date { + flex-direction: column; + + .comment-date { + margin-left: 0; + } + } + } } }