mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-02 15:14:27 +02:00
web/layout: global spinner animation
This commit is contained in:
parent
0bee4b1ade
commit
d8b274f554
@ -120,7 +120,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#progress-ring.indeterminate {
|
#progress-ring.indeterminate {
|
||||||
animation: spin 3s linear infinite;
|
animation: spinner 3s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
#progress-ring.indeterminate circle {
|
#progress-ring.indeterminate circle {
|
||||||
@ -130,13 +130,4 @@
|
|||||||
.completed #progress-ring {
|
.completed #progress-ring {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -79,11 +79,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.spinner-icon.animated :global(svg) {
|
.spinner-icon.animated :global(svg) {
|
||||||
animation: spin 0.7s infinite linear;
|
animation: spinner 0.7s infinite linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading .link-icon :global(svg) {
|
.loading .link-icon :global(svg) {
|
||||||
animation: spin 0.7s linear;
|
animation: spinner 0.7s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading .link-icon {
|
.loading .link-icon {
|
||||||
@ -95,13 +95,4 @@
|
|||||||
transform: none;
|
transform: none;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
0% {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -635,4 +635,13 @@
|
|||||||
animation: none !important;
|
animation: none !important;
|
||||||
transition: none !important;
|
transition: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes -global-spinner {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user