mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
Only show pointer on first <td> in list view
This commit is contained in:
parent
cf42939508
commit
bc12d1a1ac
@ -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;
|
||||
|
||||
@ -723,6 +723,8 @@
|
||||
}
|
||||
});
|
||||
|
||||
$tr.find('td:first').addClass('first');
|
||||
|
||||
// Add reorder actions
|
||||
if (reorder) {
|
||||
$('<td>').addClass('actions reorder').appendTo($tr).append(function() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user