forked from RocketChat/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Chrome doesn't load additional search results when botto… (Rock…
…etChat#14965) * fix scroll * fix review * ops
- Loading branch information
Showing
7 changed files
with
74 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
|
||
.rocket-search-result { | ||
display: flex; | ||
overflow: hidden; | ||
flex-direction: column; | ||
flex: 1; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import './loading.css'; | ||
import './loading.html'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} | ||
} |
File renamed without changes.