Re-enabling client-side table sorting on a basic level.

Fixes bug 1009677.

Change-Id: I8a1fc225432ea868bb751f261ed69c8d045ceb55
This commit is contained in:
Gabriel Hurley 2012-06-06 12:35:55 -07:00
parent d0d0b116a9
commit ab71a133d9
3 changed files with 14 additions and 0 deletions

View File

@ -37,4 +37,5 @@ horizon.addInitFunction(function() {
});
horizon.datatables.update();
$("table.table").tablesorter();
});

View File

@ -366,6 +366,19 @@ a.current_item:hover h3, a.current_item:hover h4 {
margin-bottom: 5px;
float: left;
}
.table th.headerSortUp,
.table th.headerSortDown {
background-color: #DFDFDF;
background-repeat: no-repeat;
background-position: 98% center;
}
.table th.headerSortDown {
background-image: url(../img/drop_arrow.png);
}
.table th.headerSortUp {
background-image: url(../img/up_arrow.png);
}
th {
background: #f1f1f1;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B