css: add new icons (mic, video, mic slash, video slash, cancel)

Fix icon spin animation for popup "reconnecting to your pad"
This commit is contained in:
Sebastian Castro 2020-03-29 13:49:33 +02:00 committed by muxator
parent 0923cd3f21
commit 8e467ce9aa
9 changed files with 256 additions and 89 deletions

View file

@ -22,41 +22,6 @@
padding:10px;
}
.loadingAnimation{
-webkit-animation: loadingAnimation 2s infinite linear;
animation: loadingAnimation 2s infinite linear;
font-family: "fontawesome-etherpad";
font-size:24px;
z-index:150;
width:25px;
height:25px;
}
.loadingAnimation:before{
content: "\e80e";
}
@-webkit-keyframes loadingAnimation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes loadingAnimation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
#passwordRequired, #permissionDenied, #wrongPassword, #noCookie {
display:none;
}