mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
dba09d2765
* style: add rtl.less of Spin\Skeleton\BackTop * fix: remove back top
26 lines
394 B
Plaintext
26 lines
394 B
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@spin-prefix-cls: ~'@{ant-prefix}-spin';
|
|
|
|
.@{spin-prefix-cls} {
|
|
&-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
&-dot {
|
|
&-spin {
|
|
.@{spin-prefix-cls}-rtl & {
|
|
transform: rotate(-45deg);
|
|
animation-name: antRotateRtl;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes antRotateRtl {
|
|
to {
|
|
transform: rotate(-405deg);
|
|
}
|
|
}
|