mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 12:43:52 +08:00
2c2f6fd4ed
They got lost when I dropped the commits
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;
|
|
}
|
|
}
|