definicao de layout
This commit is contained in:
93
public/assets/scss/data-table/_dataTables.jqueryui.scss
Normal file
93
public/assets/scss/data-table/_dataTables.jqueryui.scss
Normal file
@@ -0,0 +1,93 @@
|
||||
|
||||
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user