Home / Admin / FlowMattic: Expand Workflow Description Box.
Duplicate Snippet

Embed Snippet on Your Site

FlowMattic: Expand Workflow Description Box.

This snippet runs in the WordPress admin area and removes any line-clamping on the “.css-iIDhdyB” element within FlowMattic’s interface. By setting -webkit-line-clamp to unset, longer text will no longer be truncated, allowing it to fully display across multiple lines.

<10
Code Preview
php
<?php
add_action('admin_head', function() {
echo '<style>
/* Allow unlimited lines, removing the line-clamp limit */
.css-iIDhdyB {
    -webkit-line-clamp:unset!important;
}
</style>';
});

Comments

Add a Comment