New embedded chat: spinner while loading
This commit is contained in:
@ -169,3 +169,31 @@ table.peertube-plugin-livechat-prosody-list-rooms td {
|
||||
min-height: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.livechat-spinner {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
|
||||
div {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 20px;
|
||||
border: 5px solid var(--greyBackgroundColor);
|
||||
border-bottom-color: var(--mainColor);
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
animation: livechatrotating 1s linear infinite;
|
||||
|
||||
@keyframes livechatrotating {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user