mirror of
https://github.com/flarum/core.git
synced 2025-08-07 00:47:00 +02:00
24 lines
373 B
Plaintext
24 lines
373 B
Plaintext
// ------------------------------------
|
|
// Loading Indicators
|
|
|
|
.LoadingIndicator {
|
|
position: relative;
|
|
color: @muted-color;
|
|
}
|
|
.LoadingIndicator--inline {
|
|
display: inline-block;
|
|
width: 25px;
|
|
}
|
|
.LoadingIndicator--block {
|
|
height: 100px;
|
|
}
|
|
|
|
@keyframes spinner-line-fade-default {
|
|
0%, 100% {
|
|
opacity: 0.22; /* minimum opacity */
|
|
}
|
|
1% {
|
|
opacity: 1;
|
|
}
|
|
}
|