It's need to be like by new messages- by hover (see css below) it's background will slowly disappear, but it can be only once, that is why i need to remove this additional class e.g. "newmessage" which gives this background, but if i remove this class by hover- i haven't this slow effect...
.newmessage {
background-color: rgba(213, 213, 213, 1);
-webkit-transition: background-color 2s ease-out;
-moz-transition: background-color 2s ease-out;
transition: background-color 2s ease-out;
}
.newmessage:hover {
background-color: rgba(213, 213, 213, 0);
}