2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
2015-10-27 14:01:55 +08:00
|
|
|
|
2016-09-14 16:18:33 +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} {
|
2015-10-28 19:33:25 +08:00
|
|
|
color: @primary-color;
|
2016-02-21 14:40:19 +08:00
|
|
|
vertical-align: middle;
|
2015-10-27 14:01:55 +08:00
|
|
|
text-align: center;
|
2015-11-06 23:43:23 +08:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
2016-06-18 15:43:42 +08:00
|
|
|
transition: transform 0.3s @ease-in-out-circ;
|
2016-02-21 14:40:19 +08:00
|
|
|
font-size: @font-size-base;
|
2016-08-12 16:36:47 +08:00
|
|
|
display: none;
|
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
|
|
|
opacity: 1;
|
|
|
|
position: static;
|
2016-08-12 16:36:47 +08:00
|
|
|
display: inline-block;
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-31 02:00:03 +08:00
|
|
|
&-nested-loading & {
|
2015-10-28 19:33:25 +08:00
|
|
|
position: absolute;
|
2016-09-20 14:51:43 +08:00
|
|
|
height: 100%;
|
2016-02-21 15:02:11 +08:00
|
|
|
width: 100%;
|
2016-09-20 14:51:43 +08:00
|
|
|
z-index: 4;
|
2016-06-18 15:43:42 +08:00
|
|
|
&-dot {
|
2016-09-20 14:51:43 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -@spin-dot-size / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-sm .@{spin-prefix-cls}-dot {
|
|
|
|
margin: -@spin-dot-size-sm / 2;
|
|
|
|
}
|
|
|
|
&-lg .@{spin-prefix-cls}-dot {
|
|
|
|
margin: -@spin-dot-size-lg / 2;
|
|
|
|
}
|
|
|
|
|
2016-09-30 17:44:55 +08:00
|
|
|
&-show-text .@{spin-prefix-cls}-dot {
|
2017-01-07 22:03:40 +08:00
|
|
|
margin-top: -@spin-dot-size / 2 - 10;
|
2016-09-30 17:44:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-show-text.@{spin-prefix-cls}-sm .@{spin-prefix-cls}-dot {
|
2017-01-07 22:03:40 +08:00
|
|
|
margin-top: -@spin-dot-size-sm / 2 - 10;
|
2016-09-30 17:44:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-show-text.@{spin-prefix-cls}-lg .@{spin-prefix-cls}-dot {
|
2017-01-07 22:03:40 +08:00
|
|
|
margin-top: -@spin-dot-size-lg / 2 - 10;
|
2016-09-30 17:44:55 +08:00
|
|
|
}
|
|
|
|
|
2016-09-20 14:51:43 +08:00
|
|
|
&-text {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 100%;
|
2017-01-07 22:03:40 +08:00
|
|
|
padding-top: (@spin-dot-size - @font-size-base) / 2 + 2;
|
2016-09-20 14:51:43 +08:00
|
|
|
}
|
2016-09-30 17:44:55 +08:00
|
|
|
&-sm .@{spin-prefix-cls}-text {
|
2017-01-07 22:03:40 +08:00
|
|
|
padding-top: (@spin-dot-size-sm - @font-size-base) / 2 + 2;
|
2016-09-20 14:51:43 +08:00
|
|
|
}
|
2016-09-30 17:44:55 +08:00
|
|
|
&-lg .@{spin-prefix-cls}-text {
|
2017-01-07 22:03:40 +08:00
|
|
|
padding-top: (@spin-dot-size-lg - @font-size-base) / 2 + 2;
|
2016-06-18 15:43:42 +08:00
|
|
|
}
|
2015-10-28 19:33:25 +08:00
|
|
|
}
|
2015-10-31 02:00:03 +08:00
|
|
|
&-container {
|
2016-11-04 13:50:32 +08:00
|
|
|
transition: all 0.3s @ease-in-out;
|
|
|
|
position: relative;
|
2015-10-31 02:00:03 +08:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:53:12 +08:00
|
|
|
&-blur {
|
2015-10-31 02:00:03 +08:00
|
|
|
opacity: 0.7;
|
2016-02-21 14:40:19 +08:00
|
|
|
-webkit-filter: blur(1px);
|
2015-10-31 02:00:03 +08:00
|
|
|
filter: blur(1px);
|
2017-01-11 21:45:09 +08:00
|
|
|
/* IE6~IE9 */
|
|
|
|
filter: ~"progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false)"; // lesshint duplicateProperty: false
|
2017-01-19 17:36:02 +08:00
|
|
|
// workround for a strange style bug in safari:
|
2017-01-19 15:08:28 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/4622
|
2017-01-19 17:36:02 +08:00
|
|
|
// have no clue why this works
|
2017-01-19 15:08:28 +08:00
|
|
|
-webkit-transform: translateZ(0);
|
2016-05-27 21:12:13 +08:00
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: transparent;
|
|
|
|
}
|
2015-10-28 19:33:25 +08:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
display: block;
|
2016-02-20 16:58:29 +08:00
|
|
|
.square(@spin-dot-size);
|
2016-11-04 13:50:32 +08:00
|
|
|
transform: rotate(45deg);
|
2017-01-07 22:03:40 +08:00
|
|
|
animation: antRotate 2s infinite linear;
|
2016-11-04 13:50:32 +08:00
|
|
|
i {
|
2017-01-07 22:03:40 +08:00
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
border-radius: 100%;
|
2016-06-18 15:43:42 +08:00
|
|
|
background-color: @primary-color;
|
2016-11-04 13:50:32 +08:00
|
|
|
transform: scale(0.6);
|
2016-06-18 15:43:42 +08:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
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;
|
|
|
|
transform-origin: 50% 50%;
|
2016-11-04 13:50:32 +08:00
|
|
|
&:nth-child(1) {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
animation-delay: 0.4s;
|
|
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
animation-delay: 0.8s;
|
|
|
|
}
|
|
|
|
&:nth-child(4) {
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
animation-delay: 1.2s;
|
|
|
|
}
|
2016-06-18 15:43:42 +08:00
|
|
|
}
|
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
|
|
|
|
// ------------------------------
|
|
|
|
// small
|
2016-02-20 16:58:29 +08:00
|
|
|
&-sm &-dot {
|
|
|
|
.square(@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 {
|
|
|
|
.square(@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 {
|
2017-01-07 22:03:40 +08:00
|
|
|
transform: scale(0.9);
|
2016-11-04 13:50:32 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antRotate {
|
|
|
|
to {
|
|
|
|
transform: rotate(405deg);
|
|
|
|
}
|
|
|
|
}
|