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:
Osama Sayegh 2019-06-26 22:39:57 +03:00 committed by GitHub
parent a3bcb8e887
commit 50e4ecc77e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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 {