94 lines
1.5 KiB
SCSS
94 lines
1.5 KiB
SCSS
|
|
|
|
// jQuery UI doesn't provide any table styling options of its own, so we include
|
|
// the DataTables default styling options and override the few styles that need
|
|
// to be changed
|
|
$jqueryui: true;
|
|
@import 'jquery.dataTables.scss';
|
|
|
|
|
|
table.dataTable {
|
|
// Sorting
|
|
thead {
|
|
th div.DataTables_sort_wrapper {
|
|
position: relative;
|
|
|
|
span {
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: -8px;
|
|
right: -18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
thead,
|
|
tfoot {
|
|
th.ui-state-default {
|
|
border-left-width: 0;
|
|
|
|
&:first-child {
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Control feature layout
|
|
*/
|
|
.dataTables_wrapper {
|
|
// Paging
|
|
.dataTables_paginate {
|
|
.fg-button {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
padding: 0.5em;
|
|
margin-left: 2px;
|
|
text-align: center;
|
|
text-decoration: none !important;
|
|
cursor: pointer;
|
|
*cursor: hand;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
&:active {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
.fg-button:first-child {
|
|
border-top-left-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
}
|
|
|
|
.fg-button:last-child {
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
}
|
|
|
|
.ui-widget-header {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.ui-toolbar {
|
|
padding: 8px;
|
|
}
|
|
|
|
&.no-footer {
|
|
.dataTables_scrollBody {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.dataTables_length,
|
|
.dataTables_filter,
|
|
.dataTables_info,
|
|
.dataTables_processing,
|
|
.dataTables_paginate {
|
|
color: inherit;
|
|
}
|
|
}
|