X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=78bcfe1212a432784f9023e961d33e02969691b4;hb=6304df89d66088dc825b910cc48371254a1adb7f;hp=aae03ab6de1538b68f9210011760efacc74ae7de;hpb=cf117aaafc1e9ae1ab4c388fc5d2e5ba9349efee;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 aae03ab6d..78bcfe121 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 @@ -14,12 +14,28 @@ .comment { flex-grow: 1; + // Fix word-wrap with flex + min-width: 1px; + + .highlighted-comment { + display: inline-block; + background-color: #F5F5F5; + color: #3d3d3d; + padding: 0 5px; + font-size: 13px; + margin-bottom: 5px; + font-weight: $font-semibold; + border-radius: 3px; + } .comment-account-date { display: flex; margin-bottom: 4px; .comment-account { + @include disable-default-a-behaviour; + + color: #000; font-weight: $font-bold; } @@ -29,13 +45,60 @@ } } + .comment-html { + @include peertube-word-wrap; + + // Mentions + /deep/ a { + + &:not(.linkified-url) { + @include disable-default-a-behaviour; + + color: #000; + + font-weight: $font-semibold; + } + + } + } + .comment-actions { margin: 10px 0; + display: flex; - .comment-action-reply { + .comment-action-reply, + .comment-action-delete { color: #585858; cursor: pointer; + margin-right: 10px; + + &:hover { + color: #000; + } } } } } + +// Decrease the space of child comments on small screens +@media screen and (max-width: 1600px) { + .children { + margin-left: -20px; + } +} + +@media screen and (max-width: 1200px) { + .children { + margin-left: -30px; + } +} + +@media screen and (max-width: 600px) { + .children { + margin-left: -35px; + } + + .root-comment { + img { margin-right: 10px; } + } +}