X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment.component.scss;h=84da5727e6d534c8949efca2b1b9b4dcd2505774;hb=93ea9c47d989e28405cf1039f89be71e592e36a5;hp=a22c5a9fd175ee79e56a4ff88ea355617e57a059;hpb=4cb6d4578893db310297d7e118ce2fb7ecb952a3;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 a22c5a9fd..84da5727e 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,6 +14,19 @@ .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; @@ -22,7 +35,8 @@ .comment-account { @include disable-default-a-behaviour; - color: #000; + word-break: break-all; + color: var(--mainForegroundColor); font-weight: $font-bold; } @@ -32,19 +46,66 @@ } } + .comment-html { + @include peertube-word-wrap; + + // Mentions + /deep/ a { + + &:not(.linkified-url) { + @include disable-default-a-behaviour; + + color: var(--mainForegroundColor); + + font-weight: $font-semibold; + } + + } + } + .comment-actions { margin: 10px 0; display: flex; - .comment-action-reply, .comment-action-delete { + .comment-action-reply, + .comment-action-delete { color: #585858; cursor: pointer; margin-right: 10px; &:hover { - color: #000; + color: var(--mainForegroundColor); } } } } } + +// 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; } + } +} + +@media screen and (max-width: 450px) { + .root-comment { + font-size: 14px; + } +} \ No newline at end of file