Only show pointer on first <td> in list view

This commit is contained in:
Brian Federle 2011-12-02 11:32:28 -08:00
parent cf42939508
commit bc12d1a1ac
2 changed files with 10 additions and 1 deletions

View File

@ -135,7 +135,6 @@ table tbody tr {
border-left: 1px solid #C4C5C5;
border-right: 1px solid #C4C5C5;
border-top: 1px solid transparent;
cursor: pointer;
}
table tbody tr.even {
@ -1010,6 +1009,14 @@ div.list-view td.state {
width: 129px;
}
div.list-view td.first {
cursor: pointer;
}
div.list-view td.first:hover {
color: #3A82CD;
}
div.list-view td.state span {
padding: 0 0 0 26px;
text-align: center;

View File

@ -723,6 +723,8 @@
}
});
$tr.find('td:first').addClass('first');
// Add reorder actions
if (reorder) {
$('<td>').addClass('actions reorder').appendTo($tr).append(function() {