Fix word-wrap on comments and description (#397 regression)
See merge request chocobozzz/PeerTube!10
This commit is contained in:
commit
3689141ac3
|
@ -48,6 +48,11 @@
|
||||||
.comment-html {
|
.comment-html {
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
-webkit-hyphens: auto;
|
||||||
|
-ms-hyphens: auto;
|
||||||
|
-moz-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
|
|
||||||
/deep/ a {
|
/deep/ a {
|
||||||
|
@ -100,4 +105,4 @@
|
||||||
.root-comment {
|
.root-comment {
|
||||||
img { margin-right: 10px; }
|
img { margin-right: 10px; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,7 +216,12 @@
|
||||||
|
|
||||||
.video-info-description-html {
|
.video-info-description-html {
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
word-wrap: normal;
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
-webkit-hyphens: auto;
|
||||||
|
-ms-hyphens: auto;
|
||||||
|
-moz-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,6 +257,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.other-videos {
|
.other-videos {
|
||||||
|
padding-left: 1em;
|
||||||
|
|
||||||
.title-page {
|
.title-page {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue