added mottie tablesorter, removed datatables and datepicker, restyled tablesorter for better bootstrap look, layout changes

This commit is contained in:
alex
2018-01-24 17:29:12 +01:00
parent 8ec02c7aaa
commit fe8e5ed507
6 changed files with 244 additions and 312 deletions
+52
View File
@@ -0,0 +1,52 @@
/*reset font of tables*/
.tablesorter-default
{
font: unset !important;
}
/*reset background color of tables*/
.tablesorter-default td
{
background-color: unset !important;
}
/*reset table colors and backgrounds on hover*/
.tablesorter-default tbody > tr:hover > td
{
color: unset !important;
}
/*remove black border at bottom of table header*/
.tablesorter-header
{
border-bottom: #ccc 2px solid !important;
}
/*remove background color from filter row*/
.tablesorter-default .tablesorter-filter-row td
{
background-color: white !important;
}
/*make filter row more condensed*/
.tablesorter-default input.tablesorter-filter, .tablesorter-default select.tablesorter-filter
{
margin: 0px auto;
padding: 0px;
}
/*add cursor pointer for pager icons*/
.pager i
{
cursor: pointer;
}
/* .tablesorter-default tr.even > td
{
background-color: #f9f9f9;
}
.tablesorter-default tr.odd > td
{
background-color: unset;
}*/