From 794927a8673666c3a32a7cc0118e666e429545ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Niel?= Date: Sat, 24 Mar 2018 11:56:34 +0100 Subject: Fix break-word and add margin between content and other videos. --- client/src/app/videos/+video-watch/video-watch.component.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 9fd89508a..d764dcebd 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; } -- cgit v1.2.3 From 5c25dbc22df29c295370f8ac690ba7565368e1c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Niel?= Date: Sat, 24 Mar 2018 12:06:06 +0100 Subject: No word-break in comment. Justify text. --- .../app/videos/+video-watch/comment/video-comments.component.scss | 5 +++++ 1 file changed, 5 insertions(+) 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 bf8b154a2..627171ef1 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; +} -- cgit v1.2.3 From d5022312441416263d0b8eafe704bbbd5e30395c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Niel?= Date: Sun, 25 Mar 2018 16:07:39 +0200 Subject: Fix #408 --- client/src/app/shared/video/video-miniature.component.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/app/shared/video/video-miniature.component.scss b/client/src/app/shared/video/video-miniature.component.scss index f0888ad9f..ece090828 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; } -- cgit v1.2.3