In admin, all data is presented in tables. I believe that it would be nice to change the background color of the row when you hover over it.
I add this code to the admin header:
Code: Select all
$(function() {
$('tr').hover(function() {
$(this).find('td').css('background-color', '#f0f0f0');
},
function() {
$(this).find('td').css('background-color', '#FFFFFF');
$(this).contents('td').css('border', '1px solid #DDDDDD');
});
});