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=83e9886eedbbcd94292edd3aa135f7c357c9f67a;hp=3b0b7eafdb776f4f248b9a3c84d67b208add25f8;hpb=2f3d0f2639bb9c883abe19db8844c0d910c04e01;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 3b0b7eafd..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,15 +5,32 @@ 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 { flex-grow: 1; + // Fix word-wrap with flex + min-width: 1px; .highlighted-comment { display: inline-block; @@ -30,47 +47,141 @@ display: flex; margin-bottom: 4px; + .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 { - @include disable-default-a-behaviour; + word-break: break-all; + font-weight: 600; + font-size: 90%; + + a { + @include disable-default-a-behaviour; - color: #000; - font-weight: $font-bold; + color: var(--mainForegroundColor); + } + + .comment-account-fid { + opacity: .6; + } } .comment-date { - color: #585858; - margin-left: 10px; + font-size: 90%; + color: $grey-foreground-color; + margin-left: 5px; + text-decoration: none; } } .comment-html { - word-wrap: initial; - word-break: normal; - text-align: justify; + @include peertube-word-wrap; - /deep/ a { - @include disable-default-a-behaviour; + // Mentions + ::ng-deep a { - color: #000; - - // Semi bold mentions &:not(.linkified-url) { + @include disable-default-a-behaviour; + + color: var(--mainForegroundColor); + font-weight: $font-semibold; } + + } + + // Paragraphs + ::ng-deep p { + margin-bottom: .3rem; + } + + &.comment-html-deleted { + color: $grey-foreground-color; + margin-bottom: 1rem; } } .comment-actions { - margin: 10px 0; + margin-bottom: 10px; display: flex; - .comment-action-reply, .comment-action-delete { - color: #585858; + ::ng-deep .dropdown-toggle, + .comment-action-reply, + .comment-action-delete { + color: $grey-foreground-color; cursor: pointer; margin-right: 10px; &:hover { - color: #000; + 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; + } + } + } + + .children { + // Reduce avatars size for replies + .comment-avatar { + @include avatar(25px); + } + + .left { + margin-right: 6px; + } + } +} + +@media screen and (max-width: 1200px) { + .children { + margin-left: -10px; + } +} + +@media screen and (max-width: 600px) { + .root-comment { + .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; } } }