2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/themes/default';
|
|
|
|
@import '../../style/mixins/index';
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
@switch-prefix-cls: ~'@{ant-prefix}-switch';
|
|
|
|
@switch-duration: 0.36s;
|
2015-07-09 21:05:33 +08:00
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.@{switch-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2015-07-08 19:47:45 +08:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2015-07-09 21:05:33 +08:00
|
|
|
box-sizing: border-box;
|
2017-09-27 22:32:49 +08:00
|
|
|
height: @switch-height;
|
2016-10-21 11:09:24 +08:00
|
|
|
min-width: 44px;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: @switch-height - 2px;
|
2015-07-08 19:47:45 +08:00
|
|
|
vertical-align: middle;
|
2017-09-27 22:32:49 +08:00
|
|
|
border-radius: 100px;
|
2017-07-12 14:51:13 +08:00
|
|
|
border: 1px solid transparent;
|
2017-01-01 22:20:06 +08:00
|
|
|
background-color: @disabled-color;
|
2015-07-08 19:47:45 +08:00
|
|
|
cursor: pointer;
|
2016-10-21 13:09:29 +08:00
|
|
|
transition: all @switch-duration;
|
2015-09-23 11:44:39 +08:00
|
|
|
user-select: none;
|
2015-07-09 21:05:33 +08:00
|
|
|
|
|
|
|
&-inner {
|
2018-12-04 13:11:31 +08:00
|
|
|
color: @text-color-inverse;
|
2017-10-17 15:22:53 +08:00
|
|
|
font-size: @font-size-sm;
|
2016-10-21 11:09:24 +08:00
|
|
|
margin-left: 24px;
|
|
|
|
margin-right: 6px;
|
2016-10-21 12:22:20 +08:00
|
|
|
display: block;
|
2015-07-09 21:05:33 +08:00
|
|
|
}
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-loading-icon,
|
2015-11-26 19:32:55 +08:00
|
|
|
&:after {
|
2015-07-08 19:47:45 +08:00
|
|
|
position: absolute;
|
2017-09-27 22:32:49 +08:00
|
|
|
width: @switch-height - 4px;
|
|
|
|
height: @switch-height - 4px;
|
2016-11-13 18:22:47 +08:00
|
|
|
left: 1px;
|
2015-11-26 19:32:55 +08:00
|
|
|
top: 1px;
|
2016-07-22 14:23:59 +08:00
|
|
|
border-radius: 18px;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2018-12-07 20:02:01 +08:00
|
|
|
content: ' ';
|
2015-07-08 19:47:45 +08:00
|
|
|
cursor: pointer;
|
2017-07-12 14:51:13 +08:00
|
|
|
transition: all @switch-duration @ease-in-out-circ;
|
2016-07-22 14:23:59 +08:00
|
|
|
}
|
|
|
|
|
2017-12-03 23:36:19 +08:00
|
|
|
&:after {
|
2018-12-04 13:11:31 +08:00
|
|
|
box-shadow: 0 2px 4px 0 @switch-shadow-color;
|
2017-12-03 23:36:19 +08:00
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&:active:before,
|
2016-07-22 14:23:59 +08:00
|
|
|
&:active:after {
|
|
|
|
width: 24px;
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-loading-icon {
|
2018-09-06 23:14:14 +08:00
|
|
|
// loading default use animation
|
|
|
|
// animation: loadingCircle 1s infinite linear;
|
2018-02-09 10:05:56 +08:00
|
|
|
background: transparent;
|
2017-12-02 15:57:02 +08:00
|
|
|
z-index: 1;
|
|
|
|
display: none;
|
|
|
|
font-size: 12px;
|
2018-09-01 20:11:13 +08:00
|
|
|
svg {
|
2018-08-07 16:35:56 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2017-12-02 15:57:02 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-loading &-loading-icon {
|
2017-12-02 15:57:02 +08:00
|
|
|
display: inline-block;
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-checked&-loading &-loading-icon {
|
2018-01-12 10:02:34 +08:00
|
|
|
color: @switch-color;
|
2017-12-02 15:57:02 +08:00
|
|
|
}
|
|
|
|
|
2016-04-08 18:08:54 +08:00
|
|
|
&:focus {
|
2018-01-12 10:02:34 +08:00
|
|
|
box-shadow: 0 0 0 2px fade(@switch-color, 20%);
|
2016-04-08 18:08:54 +08:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-12-06 16:39:01 +08:00
|
|
|
&-small {
|
2017-09-27 22:32:49 +08:00
|
|
|
height: @switch-sm-height;
|
2016-10-21 11:09:24 +08:00
|
|
|
min-width: 28px;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: @switch-sm-height - 2px;
|
2016-10-21 11:09:24 +08:00
|
|
|
|
|
|
|
.@{switch-prefix-cls}-inner {
|
|
|
|
margin-left: 18px;
|
|
|
|
margin-right: 3px;
|
2017-09-27 22:32:49 +08:00
|
|
|
font-size: @font-size-sm;
|
2016-10-21 11:09:24 +08:00
|
|
|
}
|
|
|
|
|
2015-12-06 16:39:01 +08:00
|
|
|
&:after {
|
2017-09-27 22:32:49 +08:00
|
|
|
width: @switch-sm-height - 4px;
|
|
|
|
height: @switch-sm-height - 4px;
|
2015-12-06 16:39:01 +08:00
|
|
|
}
|
2016-10-21 11:09:24 +08:00
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&:active:before,
|
2016-07-22 14:23:59 +08:00
|
|
|
&:active:after {
|
|
|
|
width: 16px;
|
|
|
|
}
|
2015-12-06 16:39:01 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-small &-loading-icon {
|
|
|
|
width: @switch-sm-height - 4px;
|
|
|
|
height: @switch-sm-height - 4px;
|
|
|
|
}
|
|
|
|
|
2016-10-21 11:09:24 +08:00
|
|
|
&-small&-checked {
|
|
|
|
.@{switch-prefix-cls}-inner {
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
2015-12-06 16:39:01 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-small&-checked &-loading-icon {
|
|
|
|
left: 100%;
|
|
|
|
margin-left: @switch-sm-checked-margin-left;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small&-loading &-loading-icon {
|
2018-09-06 23:14:14 +08:00
|
|
|
// animation: AntSwitchSmallLoadingCircle 1s infinite linear;
|
|
|
|
transform: scale(0.66667);
|
2017-12-02 15:57:02 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-checked {
|
2018-01-12 10:02:34 +08:00
|
|
|
background-color: @switch-color;
|
2015-07-09 21:05:33 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{switch-prefix-cls}-inner {
|
2016-10-21 11:09:24 +08:00
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 24px;
|
2015-07-09 21:05:33 +08:00
|
|
|
}
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2018-07-16 19:47:28 +08:00
|
|
|
&:after {
|
|
|
|
left: 100%;
|
|
|
|
transform: translateX(-100%);
|
|
|
|
margin-left: -1px;
|
2016-07-22 14:23:59 +08:00
|
|
|
}
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 16:35:56 +08:00
|
|
|
&-checked &-loading-icon {
|
|
|
|
left: 100%;
|
|
|
|
margin-left: -19px;
|
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&-loading,
|
2015-11-26 19:32:55 +08:00
|
|
|
&-disabled {
|
2018-11-21 11:01:18 +08:00
|
|
|
cursor: not-allowed;
|
2017-12-02 15:57:02 +08:00
|
|
|
opacity: @switch-disabled-opacity;
|
2018-11-21 11:01:18 +08:00
|
|
|
* {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2017-12-02 15:57:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes AntSwitchSmallLoadingCircle {
|
|
|
|
0% {
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
transform: rotate(0deg) scale(0.66667);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
transform: rotate(360deg) scale(0.66667);
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
}
|