Skip to content

Commit

Permalink
fix(QInfiniteScroll): hide transitions and animations for invisible i…
Browse files Browse the repository at this point in the history
…tems #15094 (#15097)
  • Loading branch information
pdanpdan committed Dec 16, 2022
1 parent a380f91 commit e3c51ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ui/src/css/core/visibility.sass
Expand Up @@ -36,8 +36,10 @@

.hidden
display: none !important
.invisible
.invisible, .invisible *
visibility: hidden !important
transition: none !important
animation: none !important
.transparent
background: transparent !important

Expand Down
4 changes: 3 additions & 1 deletion ui/src/css/core/visibility.styl
Expand Up @@ -36,8 +36,10 @@

.hidden
display: none !important
.invisible
.invisible, .invisible *
visibility: hidden !important
transition: none !important
animation: none !important
.transparent
background: transparent !important

Expand Down

0 comments on commit e3c51ae

Please sign in to comment.