Mail Delivery Reports - wrap long text
Open Discussion
As a System Administrator, I would like WHM's "Mail Delivery Reports" to wrap long lines at any character, so that the table does not go off the right of the screen. Some extremely long email addresses currently do not wrap as expected. If wrapping were instead at any character, the table would be entirely on the screen without needing horizontal scrolling to view.
This suggestion can be implemented by editing mail.css and changing:
.yui-dt-liner { word-wrap: break-word; text-wrap: unrestricted; }to:
.yui-dt-liner {
word-wrap: break-word;
text-wrap: unrestricted;
word-break: break-all;
}
Thanks.
FYI, I implemented the above change myself by editing the file at:
/usr/local/cpanel/whostmgr/docroot/mail.css
I assume that any automatic WHM update will overwrite the change.
FYI, I implemented the above change myself by editing the file at:
/usr/local/cpanel/whostmgr/docroot/mail.css
I assume that any automatic WHM update will overwrite the change.
Replies have been locked on this page!