definicao de layout

This commit is contained in:
2026-02-06 14:37:54 +00:00
parent 872a5bb3ea
commit a4f80c85c2
2686 changed files with 640668 additions and 294 deletions

View File

@@ -0,0 +1,38 @@
/*scroller css*/
// Scroller adds the class `DTS` to the DataTabes wrapper div
div.DTS {
display: block !important;
tbody th,
tbody td {
white-space: nowrap;
}
// Show the loading message behind the table
div.DTS_Loading {
z-index: 1;
}
div.dataTables_scrollBody {
background: repeating-linear-gradient(
45deg,
#edeeff,
#edeeff 10px,
white 10px,
white 20px
);
table {
z-index: 2;
}
}
// Hide the paging control as it shouldn't be used with Scroller, but
// paging must be enabled
div.dataTables_paginate,
div.dataTables_length {
display: none;
}
}
/*scroller css*/