mirror of https://github.com/zulip/zulip.git
Start unread fade sooner.
The total duration of this animation is the exact same, but it starts immediately - let's see if this feels any better. (imported from commit de86c259a25adb64514613579476480bdac29cb2)
This commit is contained in:
parent
f7b7f074e9
commit
b277e6cc1b
|
@ -701,10 +701,10 @@ td.pointer {
|
|||
opacity: 0;
|
||||
box-shadow: inset 1px 1px 1px -1px #000;
|
||||
border: 1px solid #fff;
|
||||
-webkit-transition: all 0.7s linear 2s;
|
||||
-moz-transition: all 0.7s linear 2s;
|
||||
-o-transition: all 0.7s linear 2s;
|
||||
transition: all 0.7s linear 2s;
|
||||
-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;
|
||||
}
|
||||
|
||||
.include-sender .messagebox .unread_marker {
|
||||
|
@ -713,10 +713,10 @@ td.pointer {
|
|||
|
||||
.unread .unread_marker {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.7s linear 2s;
|
||||
-moz-transition: all 0.7s linear 2s;
|
||||
-o-transition: all 0.7s linear 2s;
|
||||
transition: all 0.7s linear 2s;
|
||||
-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;
|
||||
}
|
||||
|
||||
/* Selected messages use an inset box shadow to highlight, with
|
||||
|
|
Loading…
Reference in New Issue