I have following css rule for table row background,
tr.unread {
background:rgba(237, 239, 245, 0.70) none repeat scroll 0 0;
-webkit-transition: background 1s linear;
-moz-transition: background 1s linear;
-o-transition: background 1s linear;
transition: background 1s linear;
}
I want to remove the .unread class from tr with fading out animation (without Javascript / Jquery if possible). But it just removes the class without any animation.
Javascript: $('tr.unread').removeClass('unread');
Any Ideas ?