193 lines
3.1 KiB
SCSS
193 lines
3.1 KiB
SCSS
// GENERAL FIXES
|
|
// -----------------------------------------------------------------------------
|
|
/* Common Fixes */
|
|
.dataTables_wrapper {
|
|
position:relative;
|
|
|
|
.DTTT.btn-group {
|
|
display: inline-block !important;
|
|
}
|
|
|
|
.datatables-header {
|
|
margin-bottom: 15px;
|
|
|
|
label {
|
|
font-weight: normal;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
// prevent sort arrows to overlap text
|
|
table {
|
|
thead {
|
|
th {
|
|
padding-right: 21px !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// PER PAGE
|
|
// -----------------------------------------------------------------------------
|
|
.dataTables_wrapper {
|
|
.dataTables_length {
|
|
.select2-container {
|
|
margin-right: 10px;
|
|
width: 75px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.dataTables_wrapper {
|
|
.dataTables_length {
|
|
margin-bottom: 15px;
|
|
|
|
label {
|
|
float: none;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// FILTER
|
|
// -----------------------------------------------------------------------------
|
|
/* Filter */
|
|
.dataTables_wrapper {
|
|
.dataTables_filter {
|
|
label {
|
|
width: 50%;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.dataTables_wrapper {
|
|
.dataTables_filter {
|
|
label {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// FOOTER
|
|
// -----------------------------------------------------------------------------
|
|
/* Footer */
|
|
.dataTables_wrapper {
|
|
.datatables-footer {
|
|
margin-top: 15px;
|
|
|
|
.dataTables_info {
|
|
font-size: 11px;
|
|
padding-top: 0;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.dataTables_paginate {
|
|
.pagination {
|
|
display: block;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.dataTables_wrapper {
|
|
.datatables-footer {
|
|
.dataTables_info {
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.dataTables_paginate {
|
|
float: none;
|
|
text-align: center;
|
|
|
|
.pagination {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// DATATABLES EMPTY
|
|
// -----------------------------------------------------------------------------
|
|
/* Empty Row */
|
|
.dataTables_wrapper {
|
|
.dataTables_empty {
|
|
padding: 50px 0;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
// DATATABLES LOADER
|
|
// -----------------------------------------------------------------------------
|
|
.dataTables_processing {
|
|
background: $color-primary;
|
|
border-radius: 100px;
|
|
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.3);
|
|
color: #FFF;
|
|
left: 50%;
|
|
margin-left: -36px;
|
|
padding: 5px 10px;
|
|
position: absolute;
|
|
top: 3px;
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.dataTables_processing {
|
|
left: auto;
|
|
margin-left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
// DATATABLES PRINT
|
|
// -----------------------------------------------------------------------------
|
|
.DTTT_Print {
|
|
&,
|
|
.inner-wrapper,
|
|
.content-body,
|
|
.panel {
|
|
background: #FFF !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
top: 0 !important;
|
|
}
|
|
|
|
.dataTables_wrapper {
|
|
.DTTT.btn-group {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.DTTT_print_info {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
display: block;
|
|
left: 0;
|
|
height: 100px;
|
|
line-height: 100px;
|
|
position: fixed;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
// DARK - DATATABLES
|
|
// -----------------------------------------------------------------------------
|
|
/* Dark Fixes */
|
|
html.dark {
|
|
div.DTTT .btn {
|
|
color: #EEE !important;
|
|
}
|
|
} |