mirror of https://github.com/Chocobozzz/PeerTube
Fix break-word and add margin between content and other videos.
commit
2a97572f07
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue