diff options
author | Chocobozzz <chocobozzz@framasoft.org> | 2018-03-26 09:16:35 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@framasoft.org> | 2018-03-26 09:16:35 +0200 |
commit | 2a97572f072233410985da938b0821e1c537ac46 (patch) | |
tree | 4e3c97e60a1236e2bfdf3f445969db2730650e62 /client | |
parent | 5c5638a062d90a0f0cd5f6e8ccb3589099668e79 (diff) | |
parent | d5022312441416263d0b8eafe704bbbd5e30395c (diff) | |
download | PeerTube-2a97572f072233410985da938b0821e1c537ac46.tar.gz PeerTube-2a97572f072233410985da938b0821e1c537ac46.tar.zst PeerTube-2a97572f072233410985da938b0821e1c537ac46.zip |
Fix break-word and add margin between content and other videos.
Diffstat (limited to 'client')
3 files changed, 14 insertions, 1 deletions
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 @@ | |||
39 | } | 39 | } |
40 | 40 | ||
41 | .video-miniature-account { | 41 | .video-miniature-account { |
42 | display: block; | ||
43 | overflow: hidden; | ||
44 | text-overflow: ellipsis; | ||
45 | white-space: nowrap; | ||
42 | font-size: 13px; | 46 | font-size: 13px; |
43 | color: #585858; | 47 | color: #585858; |
44 | } | 48 | } |
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 @@ | |||
18 | display: inline-block; | 18 | display: inline-block; |
19 | font-size: 13px; | 19 | font-size: 13px; |
20 | } | 20 | } |
21 | .comment-html { | ||
22 | word-wrap: normal; | ||
23 | word-break: normal; | ||
24 | text-align: justify; | ||
25 | } | ||
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 @@ | |||
203 | font-size: 15px; | 203 | font-size: 15px; |
204 | 204 | ||
205 | .video-info-description-html { | 205 | .video-info-description-html { |
206 | word-break: break-all; | 206 | word-break: normal; |
207 | word-wrap: normal; | ||
208 | text-align: justify; | ||
207 | } | 209 | } |
208 | 210 | ||
209 | .description-loading { | 211 | .description-loading { |
@@ -238,6 +240,8 @@ | |||
238 | } | 240 | } |
239 | 241 | ||
240 | .other-videos { | 242 | .other-videos { |
243 | padding-left: 1em; | ||
244 | |||
241 | .title-page { | 245 | .title-page { |
242 | margin-top: 0; | 246 | margin-top: 0; |
243 | } | 247 | } |