framework/less/common/LoadingIndicator.less
David Sevilla Martin 2c2f6fd4ed
Add less changes from #1950
They got lost when I dropped the commits
2020-04-20 15:44:53 -04:00

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;
}
}