Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Fix broken sorts
Browse files Browse the repository at this point in the history
  • Loading branch information
powdahound committed Nov 23, 2012
1 parent d064c6c commit 9c78c24
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 141 deletions.
42 changes: 39 additions & 3 deletions www/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,48 @@ body {
color: #333;
}

/* DataTables: http://datatables.net/blog/Twitter_Bootstrap_2 */

table.table {
#data {
margin-top: 15px;
}

#data td.name {
text-align: left;
}

#data td.memory {
text-align: right;
}

#data td.computeunits {
text-align: left;
}

#data td.storage {
text-align: right;
}

#data td.architecture {
text-align: right;
}

#data td.ioperf {
text-align: left;
}

#data td.maxips {
text-align: right;
}

#data td.apiname {
text-align: left;
}

/* Bootstrap overrides */
.dropdown-menu .active a {
color: #fff !important;
}

/* DataTables: http://datatables.net/blog/Twitter_Bootstrap_2 */
table.table thead .sorting,
table.table thead .sorting_asc,
table.table thead .sorting_desc,
Expand Down
2 changes: 1 addition & 1 deletion www/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ $(function() {
"bInfo": false,
"aoColumnDefs": [
{
"aTargets": ["ioperf"],
"aTargets": ["memory", "computeunits", "storage", "ioperf"],
"sType": "span-sort"
}
]
Expand Down
Loading

0 comments on commit 9c78c24

Please sign in to comment.