Use mixin for word wrap

pull/525/head
Chocobozzz 2018-04-20 08:19:46 +02:00
parent 3689141ac3
commit 7a14004b4e
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 13 additions and 16 deletions

View File

@ -46,14 +46,7 @@
}
.comment-html {
word-break: normal;
word-wrap: break-word;
overflow-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
text-align: justify;
@include peertube-word-wrap;
/deep/ a {
@include disable-default-a-behaviour;

View File

@ -215,14 +215,7 @@
font-size: 15px;
.video-info-description-html {
word-break: normal;
word-wrap: break-word;
overflow-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
text-align: justify;
@include peertube-word-wrap;
}
.description-loading {

View File

@ -16,6 +16,17 @@
}
}
@mixin peertube-word-wrap {
word-break: normal;
word-wrap: break-word;
overflow-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
text-align: justify;
}
@mixin peertube-input-text($width) {
display: inline-block;
height: $button-height;