Consolidating CSS

Consolidating CSS

dontpushdontpush Posts: 4Questions: 0Answers: 0
edited May 2012 in General
Would it affect the function of datatables if i were to consolidate the CSS files? Off the bat i dont see any duplicate styles but im not sure if any of the scripting references the files by their original names/locations. Im passing off the site to someone less fluent and i want to make it as easy as possible for them to follow!

[code]@import "DataTables/media/css/demo_page.css";
@import "DataTables/media/css/demo_table.css";
@import "DataTables/extras/ColumnFilterWidget/media/css/ColumnFilterWidgets.css";
@import "DataTables/extras/TableTools/media/css/TableTools.css";
[/code]

into

[code]@import "DataTables/media/css/tablestyles.css";[/code]

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    Absolutely - CSS is loaded linearly so there is no problem at all doing this.

    Allan
This discussion has been closed.