Brought in following assets that Kevin's EDI project will be using:
[openemr.git] / public / assets / datatables-scroller-1-4-1 / css / scroller.dataTables.scss
blob7d06135ca4cc22f3ba32cdcefbf7e6db17f78536
2 // Scroller adds the class `DTS` to the DataTabes wrapper div
3 div.DTS {
4         display: block !important;
6         tbody th,
7         tbody td {
8                 white-space: nowrap;
9         }
11         // Show the loading message behind the table
12         div.DTS_Loading {
13                 z-index: 1;
14         }
16         div.dataTables_scrollBody {
17                 background: repeating-linear-gradient(
18                         45deg,
19                         #edeeff,
20                         #edeeff 10px,
21                         white 10px,
22                         white 20px
23                 );
25                 table {
26                         z-index: 2;
27                 }
28         }
30         // Hide the paging control as it shouldn't be used with Scroller, but
31         // paging must be enabled
32         div.dataTables_paginate,
33         div.dataTables_length {
34                 display: none;
35         }