Fix unread indicator animation

(imported from commit f650b045638a9bcdd95713784a2059a3f00c41a4)
This commit is contained in:
Allen Rabinovich 2014-01-10 09:21:00 -07:00 committed by Waseem Daher
parent 2632b130a5
commit 4fb3b39077
1 changed files with 2 additions and 6 deletions

View File

@ -983,24 +983,20 @@ just a temporary hack.
opacity: 0;
}
.messagebox .unread_marker.slow_fade {
.unread_marker.slow_fade {
-webkit-transition: all 2.7s ease-in;
-moz-transition: all 2.7s ease-in;
-o-transition: all 2.7s ease-in;
transition: all 2.7s ease-in;
}
.messagebox .unread_marker.fast_fade {
.unread_marker.fast_fade {
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.include-sender .messagebox .unread_marker {
margin-top: 8px; /* To line up with avatar */
}
.unread .unread_marker {
opacity: 1;
}