(Using DT 1.8.2)
I think you can report some css stuff in JUI css demo file.
Like JUI table on first page on the site (without shadow borders).
Indeed, a JUI table without border in tbody is sad.
[code]
#example tbody {
border-left: 1px solid #AAA;
border-right: 1px solid #AAA;
}
#example thead th:first-child { border-left: 1px solid #AAA; }
#example thead th:last-child { border-right: 1px solid #AAA; }
[/code]
Without DIV selecting obviously...
Also, next code in JUI demo css move the tbody on the right, and rendered is sad without border.
[code]
table.display {
border-collapse: collapse;
}
[/code]
If you add default border for JUI demo file, I think a default JUI table will be more beautiful for users.
Thanks for the suggestion - it sounds like a good idea. I'll certainly look at put this in the default CSS, however, in general I would very much encourage customisation of the DataTables CSS!! :-)
Replies
I think you can report some css stuff in JUI css demo file.
Like JUI table on first page on the site (without shadow borders).
Indeed, a JUI table without border in tbody is sad.
[code]
#example tbody {
border-left: 1px solid #AAA;
border-right: 1px solid #AAA;
}
#example thead th:first-child { border-left: 1px solid #AAA; }
#example thead th:last-child { border-right: 1px solid #AAA; }
[/code]
Without DIV selecting obviously...
Also, next code in JUI demo css move the tbody on the right, and rendered is sad without border.
[code]
table.display {
border-collapse: collapse;
}
[/code]
If you add default border for JUI demo file, I think a default JUI table will be more beautiful for users.
Sorry for english,
Fabrice
Thanks for the suggestion - it sounds like a good idea. I'll certainly look at put this in the default CSS, however, in general I would very much encourage customisation of the DataTables CSS!! :-)
Allan
Fabrice