Use hyphens for word break in plugin output where supported

Chrome, Opera and nearly all mobile browsers do not support hyphens (yet).

refs #10820
This commit is contained in:
Eric Lippmann 2016-02-27 18:05:22 +01:00
parent 1f7a4a170f
commit bee0992fe4
1 changed files with 14 additions and 1 deletions

View File

@ -71,7 +71,20 @@
font-size: @font-size-small;
}
// Plugin output in overviews
// Plugin output in detail views
.plugin-output,
// Plugin output in overvies
.overview-plugin-output {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
overflow-wrap: break-word;
word-wrap: break-word;
}
// Plugin output in overvies
.overview-plugin-output {
color: @text-color-light;
font-family: @font-family-fixed;