UX: hide post is unread tooltip after the post is read (#7813)
Note we can't use `display: none` here because it doesn't work with animations.
This commit is contained in:
parent
a3bcb8e887
commit
50e4ecc77e
|
@ -865,8 +865,9 @@ span.highlighted {
|
|||
}
|
||||
|
||||
.read-state.read {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition: opacity ease-out 1s;
|
||||
transition: visibility 1s, opacity ease-out 1s;
|
||||
}
|
||||
|
||||
.signup-cta {
|
||||
|
|
Loading…
Reference in New Issue