๐ Wrapping and Ellipses in Reports
How can I change Slate reports to display and wrap the entire label instead of cutting it off with ellipses? ๐ค
Yes! CSS added to a static content block in a report can alter the labels.
<style type="text/css">
ย ย table.table>*>tr>th>div:first-child,
ย ย table.table>*>tr>td>div:first-child {
ย ย ย ย white-space: normal;
ย ย }
</style>
<p>
ย ย  
</p>
Alternately:
<style type="text/css">
ย ย table.table>*>tr>th {
ย ย ย ย white-space: normal;
ย ย }
</style>
<p>
ย ย  
</p>
Only wrap headers, not row labels:
<style type="text/css">
ย table.table>*>tr>th>div {
ย ย white-space: normal !important;
ย }
</style>
No Comments