I have a td of class "open".
<td class="open"><a class="order-btn">פנוי</a></td>
I have implemented a basic transition effect for the background, however the change remains immediate with no duration. Here is my CSS.
.open{
  background: yellowgreen;
  color: black;
  transition: background 2s ease-in;
  -moz-transition: background 2s ease-in;/* Firefox 4 */
  -webkit-transition: background 2s ease-in; /* Safari and Chrome */
  -o-transition: background 2s ease-in; /* Opera */
}
.open:hover{
  background: radial-gradient(GreenYellow, yellowgreen);
}
Any help would be greatly appreciated.
