You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # Datatables Scroller
|
||
|
*
|
||
|
* Drawing the rows required for the current display only, for fast operation
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Latest update: May 25, 2015
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
|
||
|
// Core
|
||
|
// ------------------------------
|
||
|
|
||
|
.DTS {
|
||
|
|
||
|
// Prevent word wrap
|
||
|
tbody {
|
||
|
th,
|
||
|
td {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Loading text
|
||
|
.DTS_Loading {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
width: 200px;
|
||
|
height: 20px;
|
||
|
margin-top: -(@line-height-computed);
|
||
|
margin-left: -100px;
|
||
|
z-index: 1;
|
||
|
|
||
|
border: 1px solid #999;
|
||
|
padding: @content-padding-large 0;
|
||
|
text-align: center;
|
||
|
background-color: fade(#fff, 50%);
|
||
|
}
|
||
|
|
||
|
// Scroller areas
|
||
|
.dataTables_scrollHead,
|
||
|
.dataTables_scrollFoot {
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
.dataTables_scrollBody {
|
||
|
z-index: 2;
|
||
|
}
|
||
|
}
|