mirror of
https://github.com/wekan/wekan.git
synced 2026-02-04 23:51:48 +01:00
Converted Stylus to CSS. Removed Stylus. This change removed many error messages.
Thanks to xet7 !
This commit is contained in:
parent
01a1a2cdce
commit
072778b9aa
104 changed files with 9370 additions and 7642 deletions
58
client/components/main/spinner_wave.css
Normal file
58
client/components/main/spinner_wave.css
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
.sk-spinner-wave {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
font-size: 10px;
|
||||
}
|
||||
.sk-spinner-wave div {
|
||||
background-color: #333;
|
||||
height: 100%;
|
||||
width: 6px;
|
||||
display: inline-block;
|
||||
animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
|
||||
}
|
||||
.sk-spinner-wave .sk-rect2 {
|
||||
animation-delay: -1.1s;
|
||||
}
|
||||
.sk-spinner-wave .sk-rect3 {
|
||||
animation-delay: -1s;
|
||||
}
|
||||
.sk-spinner-wave .sk-rect4 {
|
||||
animation-delay: -0.9s;
|
||||
}
|
||||
.sk-spinner-wave .sk-rect5 {
|
||||
animation-delay: -0.8s;
|
||||
}
|
||||
@-moz-keyframes sk-waveStretchDelay {
|
||||
0%, 40%, 100% {
|
||||
transform: scaleY(0.4);
|
||||
}
|
||||
20% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes sk-waveStretchDelay {
|
||||
0%, 40%, 100% {
|
||||
transform: scaleY(0.4);
|
||||
}
|
||||
20% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
@-o-keyframes sk-waveStretchDelay {
|
||||
0%, 40%, 100% {
|
||||
transform: scaleY(0.4);
|
||||
}
|
||||
20% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
@keyframes sk-waveStretchDelay {
|
||||
0%, 40%, 100% {
|
||||
transform: scaleY(0.4);
|
||||
}
|
||||
20% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue