-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete searchable responsive table view
- Loading branch information
Justin Campbel
committed
Jun 22, 2020
1 parent
2ef8eb7
commit 57e0dff
Showing
4 changed files
with
191 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <!-- DataTable Buttons CSS --> | ||
| <link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.6.2/css/buttons.bootstrap4.min.css"> | ||
|
|
||
| <!-- DataTables Buttons Plugin --> | ||
| <script src="https://cdn.datatables.net/buttons/1.6.2/js/dataTables.buttons.min.js"></script> | ||
| <script src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.flash.min.js"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script> | ||
| <script src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.html5.min.js"></script> | ||
| <script src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.print.min.js"></script> | ||
| <script src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.bootstrap4.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,27 @@ | ||
| /* custom.css */ | ||
|
|
||
| /* DataTables Sorting Levels */ | ||
| td[class^="sorting_"]{ | ||
| font-weight: bold; | ||
| } | ||
|
|
||
| /* Reduce spacing white space in header row */ | ||
| .itemTable thead tr th{ | ||
| border-width: 0px; | ||
| } | ||
|
|
||
| .itemTable thead tr td{ | ||
| padding-top: 0px; | ||
| border-top-width: 0px; | ||
| } | ||
|
|
||
| /* Add drop shadow to floating header | ||
| The fixedHeader-floating class is applied to a new table | ||
| that becomes the table header when scrolling by the | ||
| DataTables FixedHeader plugin. | ||
| */ | ||
| .fixedHeader-floating{ | ||
| box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters