2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@switch-prefix-cls: ~"@{ant-prefix}-switch";
|
2017-07-12 14:51:13 +08:00
|
|
|
@switch-duration: .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 {
|
2015-11-26 19:32:55 +08:00
|
|
|
color: #fff;
|
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
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&:before,
|
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;
|
2015-07-08 19:47:45 +08:00
|
|
|
content: " ";
|
|
|
|
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 {
|
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 35, 11, .2);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&:before {
|
|
|
|
content: "\e64d";
|
|
|
|
font-family: anticon;
|
|
|
|
animation: loadingCircle 1s infinite linear;
|
|
|
|
text-align: center;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-loading:before {
|
|
|
|
display: inline-block;
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-checked&-loading:before {
|
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
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&:before,
|
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
|
|
|
}
|
|
|
|
|
2016-10-21 11:09:24 +08:00
|
|
|
&-small&-checked {
|
2018-07-16 19:47:28 +08:00
|
|
|
&:before {
|
2016-10-21 11:09:24 +08:00
|
|
|
left: 100%;
|
2018-03-24 21:52:47 +08:00
|
|
|
margin-left: @switch-sm-checked-margin-left;
|
2016-10-21 11:09:24 +08:00
|
|
|
}
|
|
|
|
.@{switch-prefix-cls}-inner {
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
2015-12-06 16:39:01 +08:00
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&-small&-loading:before {
|
|
|
|
animation: AntSwitchSmallLoadingCircle 1s infinite linear;
|
|
|
|
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
|
|
|
&:before {
|
2016-10-21 11:09:24 +08:00
|
|
|
left: 100%;
|
2016-11-13 18:22:47 +08:00
|
|
|
margin-left: -19px;
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
2016-07-22 14:23:59 +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
|
|
|
}
|
|
|
|
|
2017-12-02 15:57:02 +08:00
|
|
|
&-loading,
|
2015-11-26 19:32:55 +08:00
|
|
|
&-disabled {
|
2017-12-02 15:57:02 +08:00
|
|
|
pointer-events: none;
|
|
|
|
opacity: @switch-disabled-opacity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@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
|
|
|
}
|
|
|
|
}
|