mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 07:14:35 +02:00
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;
|
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 {
|
.overview-plugin-output {
|
||||||
color: @text-color-light;
|
color: @text-color-light;
|
||||||
font-family: @font-family-fixed;
|
font-family: @font-family-fixed;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user