X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=7c46569311100242b63933580807d4811c8426b9;hb=3bf07dd8c27aa6ef40111c6f055e8975b3f514f4;hp=ac633fd64a20ae0797ea06ab747f6fd03714cd5e;hpb=69222afac8f8c41d90295b33f0695bbff352851e;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 ac633fd64..7c4656931 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; + .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); + } + } + + .right { + width: 100%; + } + .comment-avatar { @include avatar(36px); - - margin-top: 5px; - margin-right: 20px; } .comment { @@ -32,23 +47,47 @@ 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: var(--mainForegroundColor); + } + + .comment-account-fid { + opacity: .6; + } } .comment-date { + font-size: 90%; color: $grey-foreground-color; - margin-left: 10px; + margin-left: 5px; + text-decoration: none; } } .comment-html { @include peertube-word-wrap; - margin-bottom: 10px; // Mentions ::ng-deep a { @@ -63,8 +102,14 @@ } + // Paragraphs + ::ng-deep p { + margin-bottom: .3rem; + } + &.comment-html-deleted { color: $grey-foreground-color; + margin-bottom: 1rem; } } @@ -72,6 +117,7 @@ margin-bottom: 10px; display: flex; + ::ng-deep .dropdown-toggle, .comment-action-reply, .comment-action-delete { color: $grey-foreground-color; @@ -82,35 +128,62 @@ color: var(--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 { - .comment-avatar { 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; + } + } + } } }