YS 3.5 : Admin dataTable width to fix

uprv

New Member
YetiShare User
Jul 31, 2013
10
0
0
wupload.eu
Whats your screen resolution?

I would like to check this, too.
I also think I'd be able providing a fix for this.
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
This is probably as a result of the 'value' column having long text in it without spaces. It's fixed for the next release in our local copy. If you want to patch it, open:

Code:
/admin/assets/styles/style.css
Find:

Code:
.dataTable td {border-top: none; border-bottom: none;}
Replace with:

Code:
.dataTable td
{
    border-top: none;
    border-bottom: none;
    white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    white-space: pre-wrap;       /* css-3 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    word-break: break-all;
    white-space: normal;
}