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:
parent
1f7a4a170f
commit
bee0992fe4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue