mirror of https://github.com/zulip/zulip.git
Fix unread indicator animation
(imported from commit f650b045638a9bcdd95713784a2059a3f00c41a4)
This commit is contained in:
parent
2632b130a5
commit
4fb3b39077
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue