[FIX] Chrome doesn't load additional search results when botto… (#14965)
* fix scroll * fix review * opspull/14980/head
parent
de8333687f
commit
7adfeca31c
@ -0,0 +1,2 @@ |
||||
import './loading.css'; |
||||
import './loading.html'; |
@ -0,0 +1,52 @@ |
||||
.loading-animation { |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
bottom: 0; |
||||
left: 0; |
||||
|
||||
display: flex; |
||||
|
||||
text-align: center; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.loading-animation > .bounce { |
||||
display: inline-block; |
||||
|
||||
width: 10px; |
||||
height: 10px; |
||||
margin: 2px; |
||||
|
||||
animation: loading-bouncedelay 1.4s infinite ease-in-out both; |
||||
|
||||
border-radius: 100%; |
||||
background-color: rgba(255, 255, 255, 0.6); |
||||
} |
||||
|
||||
.loading-animation .bounce1 { |
||||
-webkit-animation-delay: -0.32s; |
||||
animation-delay: -0.32s; |
||||
} |
||||
|
||||
.loading-animation .bounce2 { |
||||
-webkit-animation-delay: -0.16s; |
||||
animation-delay: -0.16s; |
||||
} |
||||
|
||||
.file-picker-loading .loading-animation > .bounce { |
||||
background-color: #444444; |
||||
} |
||||
|
||||
@keyframes loading-bouncedelay { |
||||
0%, |
||||
80%, |
||||
100% { |
||||
transform: scale(0); |
||||
} |
||||
|
||||
40% { |
||||
transform: scale(1); |
||||
} |
||||
} |
Loading…
Reference in new issue