Fix break-word and add margin between content and other videos.

pull/415/head
Chocobozzz 2018-03-26 09:16:35 +02:00
commit 2a97572f07
3 changed files with 14 additions and 1 deletions

View File

@ -39,6 +39,10 @@
} }
.video-miniature-account { .video-miniature-account {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 13px; font-size: 13px;
color: #585858; color: #585858;
} }

View File

@ -18,3 +18,8 @@
display: inline-block; display: inline-block;
font-size: 13px; font-size: 13px;
} }
.comment-html {
word-wrap: normal;
word-break: normal;
text-align: justify;
}

View File

@ -203,7 +203,9 @@
font-size: 15px; font-size: 15px;
.video-info-description-html { .video-info-description-html {
word-break: break-all; word-break: normal;
word-wrap: normal;
text-align: justify;
} }
.description-loading { .description-loading {
@ -238,6 +240,8 @@
} }
.other-videos { .other-videos {
padding-left: 1em;
.title-page { .title-page {
margin-top: 0; margin-top: 0;
} }