Force browsers to respect overflow of plugin output in tables

refs #10820
This commit is contained in:
Eric Lippmann 2016-02-27 18:06:35 +01:00
parent bee0992fe4
commit d4dcdb96bd
1 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,12 @@
font-size: @font-size-small;
margin: 0;
white-space: pre-wrap;
// Long text in table cells overflows the table's width if the table's layout is not fixed.
// Thus overflow-wrap will not have any effect. But w/ the following we set a width of any value
// plus a min-width of 100% to consume the full width nonetheless which seems to always
// instruct browsers to not overflow the table. Ridiculous.
min-width: 100%;
width: 1em;
}
// Table for performance data in detail views