Re-enabling client-side table sorting on a basic level.
Fixes bug 1009677. Change-Id: I8a1fc225432ea868bb751f261ed69c8d045ceb55
This commit is contained in:
parent
d0d0b116a9
commit
ab71a133d9
@ -37,4 +37,5 @@ horizon.addInitFunction(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
horizon.datatables.update();
|
horizon.datatables.update();
|
||||||
|
$("table.table").tablesorter();
|
||||||
});
|
});
|
||||||
|
@ -366,6 +366,19 @@ a.current_item:hover h3, a.current_item:hover h4 {
|
|||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
float: left;
|
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 {
|
th {
|
||||||
background: #f1f1f1;
|
background: #f1f1f1;
|
||||||
}
|
}
|
||||||
|
BIN
openstack_dashboard/static/dashboard/img/up_arrow.png
Normal file
BIN
openstack_dashboard/static/dashboard/img/up_arrow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 974 B |
Loading…
Reference in New Issue
Block a user