diff --git a/client/src/app/shared/video/video-miniature.component.scss b/client/src/app/shared/video/video-miniature.component.scss index f0888ad9f600427cd9127294630e431739e8e7ca..ece090828d0633b5a68e8d87d6e4338c05c52526 100644 --- a/client/src/app/shared/video/video-miniature.component.scss +++ b/client/src/app/shared/video/video-miniature.component.scss @@ -39,6 +39,10 @@ } .video-miniature-account { + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; font-size: 13px; color: #585858; } diff --git a/client/src/app/videos/+video-watch/comment/video-comments.component.scss b/client/src/app/videos/+video-watch/comment/video-comments.component.scss index bf8b154a2bab6fea1bf3bb65be7d5b85cfa49e70..627171ef12e123eaba378ba59a0499a60a94d592 100644 --- a/client/src/app/videos/+video-watch/comment/video-comments.component.scss +++ b/client/src/app/videos/+video-watch/comment/video-comments.component.scss @@ -18,3 +18,8 @@ display: inline-block; font-size: 13px; } +.comment-html { + word-wrap: normal; + word-break: normal; + text-align: justify; +} diff --git a/client/src/app/videos/+video-watch/video-watch.component.scss b/client/src/app/videos/+video-watch/video-watch.component.scss index 9fd89508a2d12e03a325a34efdec1e6b4652bb64..d764dcebd7afc3966c3820cc960517afd2cedeb9 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.scss +++ b/client/src/app/videos/+video-watch/video-watch.component.scss @@ -203,7 +203,9 @@ font-size: 15px; .video-info-description-html { - word-break: break-all; + word-break: normal; + word-wrap: normal; + text-align: justify; } .description-loading { @@ -238,6 +240,8 @@ } .other-videos { + padding-left: 1em; + .title-page { margin-top: 0; }