fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
526 B

7 years ago
@import "../index";
.bi-pane {
7 years ago
min-height: 25px;
.background-color(@color-bi-background-normal, 0);
}
.bi-loading-widget {
&>div {
.background-color(@background-color-highlight, 90%);
.border-radius(2.5px);
animation: loading-widget 0.8s infinite linear;
}
& .rect2 {
animation-delay: -0.2s;
}
& .rect3 {
animation-delay: -0.4s;
}
@keyframes loading-widget {
0%, 100% {
transform: scaleY(0.3);
}
50% {
transform: scaleY(1);
}
}
7 years ago
}