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
|
|
|
|
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-10-21 11:09:24 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
&:active:after {
|
|
|
|
width: 24px;
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
|
2016-04-08 18:08:54 +08:00
|
|
|
&:focus {
|
2016-04-19 15:09:17 +08:00
|
|
|
box-shadow: 0 0 0 2px fade(@primary-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
|
|
|
|
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 {
|
|
|
|
&:after {
|
|
|
|
left: 100%;
|
2016-11-13 18:22:47 +08:00
|
|
|
margin-left: -12.5px;
|
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
|
|
|
}
|
|
|
|
|
2016-07-22 14:23:59 +08:00
|
|
|
&-small:active&-checked:after {
|
2016-11-14 18:52:50 +08:00
|
|
|
margin-left: -16.5px;
|
2016-07-22 14:23:59 +08:00
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-checked {
|
2015-08-11 21:25:25 +08:00
|
|
|
background-color: @primary-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
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&:after {
|
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
|
|
|
|
|
|
|
&:active:after {
|
2016-11-14 18:52:50 +08:00
|
|
|
margin-left: -25px;
|
2016-07-22 14:23:59 +08:00
|
|
|
}
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-disabled {
|
2015-12-03 09:37:57 +08:00
|
|
|
cursor: not-allowed;
|
2017-09-27 22:32:49 +08:00
|
|
|
opacity: 0.35;
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
|
|
|
}
|