Remove TableTools_JUI.css file from project #111
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
Using Bootstrap (2 and 3) the print_info message and title are not visible.
Example:

Looking at TableTools project, the message is showing correctly: http://live.datatables.net/pugunit/1
After some analysis (like issue #109 and #110) I found out that this problem was caused due to the TableTools reformulation on version 2.2.0 (see commit DataTables/TableTools@9940846 for more details).
In my case, this problem was happening because I was calling TableTools_JUI (with deprecated code) after dataTables.tableTools (with the TableTools up to date code) in my
application.cssfile, like this:Taking that into consideration, this PR removes outdated file
TableTools_JUI.css, since the correct (and up to date) css code is defined on filedataTables.tableTools.css.scss.After this change print_info message gets its normal look and feel:

Thank you!