2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
2015-10-27 14:01:55 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
@spin-prefix-cls: ~'@{ant-prefix}-spin';
|
2016-11-08 20:45:56 +08:00
|
|
|
@spin-dot-default: @text-color-secondary;
|
2015-10-27 10:10:27 +08:00
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
.@{spin-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
2015-10-28 19:33:25 +08:00
|
|
|
color: @primary-color;
|
2015-10-27 14:01:55 +08:00
|
|
|
text-align: center;
|
2019-02-15 10:48:07 +08:00
|
|
|
vertical-align: middle;
|
2015-11-06 23:43:23 +08:00
|
|
|
opacity: 0;
|
2016-06-18 15:43:42 +08:00
|
|
|
transition: transform 0.3s @ease-in-out-circ;
|
2015-11-06 23:43:23 +08:00
|
|
|
|
2016-04-14 15:26:55 +08:00
|
|
|
&-spinning {
|
2015-11-06 23:43:23 +08:00
|
|
|
position: static;
|
2016-08-12 16:36:47 +08:00
|
|
|
display: inline-block;
|
2019-02-15 10:48:07 +08:00
|
|
|
opacity: 1;
|
2015-11-06 23:43:23 +08:00
|
|
|
}
|
2015-10-27 10:10:27 +08:00
|
|
|
|
2015-10-28 19:33:25 +08:00
|
|
|
&-nested-loading {
|
|
|
|
position: relative;
|
2017-02-21 15:14:35 +08:00
|
|
|
> div > .@{spin-prefix-cls} {
|
2016-09-20 14:51:43 +08:00
|
|
|
position: absolute;
|
2019-02-26 17:10:40 +08:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: 4;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2017-02-21 15:14:35 +08:00
|
|
|
height: 100%;
|
2018-12-17 23:27:24 +08:00
|
|
|
max-height: 400px;
|
2017-02-21 15:14:35 +08:00
|
|
|
.@{spin-prefix-cls}-dot {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -@spin-dot-size / 2;
|
|
|
|
}
|
|
|
|
.@{spin-prefix-cls}-text {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 100%;
|
2017-07-17 15:44:40 +08:00
|
|
|
padding-top: (@spin-dot-size - @font-size-base) / 2 + 2px;
|
2018-12-04 13:11:31 +08:00
|
|
|
text-shadow: 0 1px 2px @shadow-color-inverse;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
|
|
|
&.@{spin-prefix-cls}-show-text .@{spin-prefix-cls}-dot {
|
2017-07-17 15:44:40 +08:00
|
|
|
margin-top: -@spin-dot-size / 2 - 10px;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
2016-09-20 14:51:43 +08:00
|
|
|
}
|
2017-02-21 15:00:19 +08:00
|
|
|
|
2017-02-21 15:14:35 +08:00
|
|
|
> div > .@{spin-prefix-cls}-sm {
|
|
|
|
.@{spin-prefix-cls}-dot {
|
|
|
|
margin: -@spin-dot-size-sm / 2;
|
|
|
|
}
|
|
|
|
.@{spin-prefix-cls}-text {
|
2017-07-17 15:44:40 +08:00
|
|
|
padding-top: (@spin-dot-size-sm - @font-size-base) / 2 + 2px;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
|
|
|
&.@{spin-prefix-cls}-show-text .@{spin-prefix-cls}-dot {
|
2017-07-17 15:44:40 +08:00
|
|
|
margin-top: -@spin-dot-size-sm / 2 - 10px;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
2016-09-20 14:51:43 +08:00
|
|
|
}
|
2017-02-21 15:00:19 +08:00
|
|
|
|
2017-02-21 15:14:35 +08:00
|
|
|
> div > .@{spin-prefix-cls}-lg {
|
|
|
|
.@{spin-prefix-cls}-dot {
|
|
|
|
margin: -@spin-dot-size-lg / 2;
|
|
|
|
}
|
|
|
|
.@{spin-prefix-cls}-text {
|
2017-07-17 15:44:40 +08:00
|
|
|
padding-top: (@spin-dot-size-lg - @font-size-base) / 2 + 2px;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
|
|
|
&.@{spin-prefix-cls}-show-text .@{spin-prefix-cls}-dot {
|
2017-07-17 15:44:40 +08:00
|
|
|
margin-top: -@spin-dot-size-lg / 2 - 10px;
|
2017-02-21 15:14:35 +08:00
|
|
|
}
|
2016-06-18 15:43:42 +08:00
|
|
|
}
|
2015-10-28 19:33:25 +08:00
|
|
|
}
|
2017-02-21 15:00:19 +08:00
|
|
|
|
2015-10-31 02:00:03 +08:00
|
|
|
&-container {
|
2016-11-04 13:50:32 +08:00
|
|
|
position: relative;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: opacity 0.3s;
|
2018-06-15 14:09:19 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2016-05-27 21:12:13 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
right: 0;
|
2016-05-27 21:12:13 +08:00
|
|
|
bottom: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
left: 0;
|
|
|
|
z-index: 10;
|
|
|
|
display: ~'none \9';
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-12-04 13:11:31 +08:00
|
|
|
background: @component-background;
|
2018-12-17 23:27:24 +08:00
|
|
|
opacity: 0;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s;
|
2019-02-15 10:48:07 +08:00
|
|
|
content: '';
|
2019-04-15 22:44:51 +08:00
|
|
|
pointer-events: none;
|
2016-05-27 21:12:13 +08:00
|
|
|
}
|
2015-10-28 19:33:25 +08:00
|
|
|
}
|
|
|
|
|
2018-12-17 23:27:24 +08:00
|
|
|
&-blur {
|
2019-02-13 22:11:23 +08:00
|
|
|
clear: both;
|
2018-12-17 23:27:24 +08:00
|
|
|
overflow: hidden;
|
|
|
|
opacity: 0.5;
|
2019-02-15 10:48:07 +08:00
|
|
|
user-select: none;
|
|
|
|
pointer-events: none;
|
2018-12-17 23:27:24 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2018-12-17 23:27:24 +08:00
|
|
|
opacity: 0.4;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-19 20:20:45 +08:00
|
|
|
// tip
|
|
|
|
// ------------------------------
|
|
|
|
&-tip {
|
|
|
|
color: @spin-dot-default;
|
|
|
|
}
|
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
// dots
|
|
|
|
// ------------------------------
|
2015-10-27 14:58:04 +08:00
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
&-dot {
|
2016-06-18 15:43:42 +08:00
|
|
|
position: relative;
|
2017-05-23 17:48:13 +08:00
|
|
|
display: inline-block;
|
2018-06-06 19:53:50 +08:00
|
|
|
font-size: @spin-dot-size;
|
|
|
|
|
2019-05-13 19:58:13 +08:00
|
|
|
.square(1em);
|
2018-02-14 12:30:31 +08:00
|
|
|
|
2019-03-28 12:20:12 +08:00
|
|
|
&-item {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
2017-01-07 22:03:40 +08:00
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
2016-06-18 15:43:42 +08:00
|
|
|
background-color: @primary-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 100%;
|
2017-03-14 15:32:24 +08:00
|
|
|
transform: scale(0.75);
|
2019-02-15 10:48:07 +08:00
|
|
|
transform-origin: 50% 50%;
|
2016-11-04 13:50:32 +08:00
|
|
|
opacity: 0.3;
|
2017-01-07 22:03:40 +08:00
|
|
|
animation: antSpinMove 1s infinite linear alternate;
|
2019-03-28 12:20:12 +08:00
|
|
|
|
2016-11-04 13:50:32 +08:00
|
|
|
&:nth-child(1) {
|
|
|
|
top: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
left: 0;
|
2016-11-04 13:50:32 +08:00
|
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
|
|
top: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
right: 0;
|
2016-11-04 13:50:32 +08:00
|
|
|
animation-delay: 0.4s;
|
|
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
animation-delay: 0.8s;
|
|
|
|
}
|
|
|
|
&:nth-child(4) {
|
|
|
|
bottom: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
left: 0;
|
2016-11-04 13:50:32 +08:00
|
|
|
animation-delay: 1.2s;
|
|
|
|
}
|
2016-06-18 15:43:42 +08:00
|
|
|
}
|
2018-02-14 12:30:31 +08:00
|
|
|
|
|
|
|
&-spin {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
animation: antRotate 1.2s infinite linear;
|
|
|
|
}
|
2015-10-27 14:01:55 +08:00
|
|
|
}
|
2015-10-27 10:10:27 +08:00
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
// Sizes
|
|
|
|
// ------------------------------
|
2018-06-06 19:53:50 +08:00
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
// small
|
2016-02-20 16:58:29 +08:00
|
|
|
&-sm &-dot {
|
2018-06-06 19:53:50 +08:00
|
|
|
font-size: @spin-dot-size-sm;
|
|
|
|
|
2016-11-04 13:50:32 +08:00
|
|
|
i {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
2015-10-27 14:01:55 +08:00
|
|
|
}
|
2015-10-27 10:10:27 +08:00
|
|
|
|
2015-10-27 14:01:55 +08:00
|
|
|
// large
|
2016-02-20 16:58:29 +08:00
|
|
|
&-lg &-dot {
|
2018-06-06 19:53:50 +08:00
|
|
|
font-size: @spin-dot-size-lg;
|
|
|
|
|
2016-11-04 13:50:32 +08:00
|
|
|
i {
|
2017-01-07 22:03:40 +08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2016-11-04 13:50:32 +08:00
|
|
|
}
|
2015-10-27 14:01:55 +08:00
|
|
|
}
|
2016-03-30 23:02:11 +08:00
|
|
|
|
|
|
|
&&-show-text &-text {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-10-27 10:10:27 +08:00
|
|
|
}
|
|
|
|
|
2015-10-28 19:33:25 +08:00
|
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
2016-04-27 20:44:36 +08:00
|
|
|
/* IE10+ */
|
2016-11-07 17:53:12 +08:00
|
|
|
.@{spin-prefix-cls}-blur {
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2015-10-28 19:33:25 +08:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
2016-11-04 13:50:32 +08:00
|
|
|
|
|
|
|
@keyframes antSpinMove {
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antRotate {
|
|
|
|
to {
|
|
|
|
transform: rotate(405deg);
|
|
|
|
}
|
|
|
|
}
|