Add back loading spinner for player page.
This appeared to have been removed accidentally when other parts of the CSS was refactored.
This commit is contained in:
10124
package-lock.json
generated
Normal file
10124
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -801,6 +801,23 @@ video::-webkit-media-text-track-container {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 40px auto;
|
||||
border-top: 6px solid rgba(255, 255, 255, 0.2);
|
||||
border-right: 6px solid rgba(255, 255, 255, 0.2);
|
||||
border-bottom: 6px solid rgba(255, 255, 255, 0.2);
|
||||
border-left: 6px solid #ffffff;
|
||||
border-radius: 50%;
|
||||
color: transparent;
|
||||
animation: spinning 1.1s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes spinning {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.media-stalled .loading-status {
|
||||
|
||||
Reference in New Issue
Block a user