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:
Benjamin Tan
2018-01-22 20:05:33 +08:00
parent 01971e2a46
commit 386bc950f4
2 changed files with 10141 additions and 0 deletions

10124
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

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