Merge "Add sort indicator to table headers"

This commit is contained in:
Jenkins 2014-04-29 23:29:13 +00:00 committed by Gerrit Code Review
commit b9bccbf88e
1 changed files with 19 additions and 0 deletions

View File

@ -2449,3 +2449,22 @@ label.log-length {
}
}
/**** Sort Indicator ****/
.tablesorter thead tr th
{
&.tablesorter-header {
cursor: pointer;
background-repeat: no-repeat;
background-position: 99% center;
background-position: right 5px center;
}
&.tablesorter-headerAsc {
background-image: url(/static/dashboard/img/up_arrow.png);
}
&.tablesorter-headerDesc {
background-image: url(/static/dashboard/img/drop_arrow.png);
}
}