Vertical-group: Fix border css for last row

This commit is contained in:
Rob Garrison 2018-03-19 18:37:29 -05:00
parent c74a34b070
commit 904e762bc8

View File

@ -26,6 +26,10 @@ table.tablesorter tr:not(:last-of-type) td {
/* all current themes style the bottom border; we'll switch to use the top */
border-width: 1px 1px 0 0;
}
table.tablesorter tr:last-of-type td:not(.tablesorter-vertical-group-hide) {
/* last row gets a top & bottom border */
border-width: 1px 1px 1px 0;
}
.tablesorter td.tablesorter-vertical-group-hide {
text-indent: -9999em;
border-top-color: transparent;