X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=78bcfe1212a432784f9023e961d33e02969691b4;hb=e63dbd426e67672b4014c2a3ac3a227fbe26e886;hp=7e1a32f480c5d034e28d4a2753c5c3e3bd243c1e;hpb=4635f59d7c3fea4b97029f10886c62fdf38b2084;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 7e1a32f48..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 @@ -1,38 +1,104 @@ @import '_variables'; @import '_mixins'; -.comment { +.root-comment { font-size: 15px; - margin-top: 30px; + display: flex; - .comment-account-date { - display: flex; - margin-bottom: 4px; + img { + @include avatar(36px); - .comment-account { - font-weight: $font-bold; + margin-top: 5px; + margin-right: 20px; + } + + .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-date { - color: #585858; - margin-left: 10px; + .comment-account-date { + display: flex; + margin-bottom: 4px; + + .comment-account { + @include disable-default-a-behaviour; + + color: #000; + font-weight: $font-bold; + } + + .comment-date { + color: #585858; + margin-left: 10px; + } } - } - .comment-actions { - margin: 10px 0; + .comment-html { + @include peertube-word-wrap; + + // Mentions + /deep/ a { + + &:not(.linkified-url) { + @include disable-default-a-behaviour; + + color: #000; + + font-weight: $font-semibold; + } - .comment-action-reply { - color: #585858; - cursor: pointer; + } } + + .comment-actions { + margin: 10px 0; + display: flex; + + .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; } } -.children { - margin-left: 20px; +@media screen and (max-width: 600px) { + .children { + margin-left: -35px; + } - .comment { - margin-top: 15px; + .root-comment { + img { margin-right: 10px; } } }