ant-design/components/switch/style/index.less

127 lines
2.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-07-08 19:47:45 +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} {
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;
2016-12-15 12:06:38 +08:00
height: 22px;
min-width: 44px;
2015-07-08 19:47:45 +08:00
line-height: 20px;
vertical-align: middle;
2016-02-03 17:45:42 +08:00
border-radius: 20px;
2017-07-12 14:51:13 +08:00
border: 1px solid transparent;
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;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
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;
2015-07-09 21:05:33 +08:00
width: 18px;
height: 18px;
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;
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
}
&:focus {
box-shadow: 0 0 0 2px fade(@primary-color, 20%);
outline: 0;
}
&:focus:hover {
box-shadow: none;
}
2015-12-06 16:39:01 +08:00
&-small {
height: 14px;
min-width: 28px;
2015-12-06 16:39:01 +08:00
line-height: 12px;
.@{switch-prefix-cls}-inner {
margin-left: 18px;
margin-right: 3px;
}
2015-12-06 16:39:01 +08:00
&:after {
width: 12px;
height: 12px;
top: 0;
2016-11-13 18:22:47 +08:00
left: 0.5px;
2015-12-06 16:39:01 +08:00
}
2016-07-22 14:23:59 +08:00
&:active:after {
width: 16px;
}
2015-12-06 16:39:01 +08:00
}
&-small&-checked {
&:after {
left: 100%;
2016-11-13 18:22:47 +08:00
margin-left: -12.5px;
}
.@{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 {
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 {
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 {
cursor: not-allowed;
2016-06-15 14:18:48 +08:00
background: #f4f4f4;
2015-07-08 19:47:45 +08:00
2015-11-26 19:32:55 +08:00
&:after {
2015-07-16 13:00:56 +08:00
background: #ccc;
cursor: not-allowed;
2015-07-08 19:47:45 +08:00
}
2016-06-15 14:10:26 +08:00
.@{switch-prefix-cls}-inner {
color: @disabled-color;
2015-07-16 13:00:56 +08:00
}
2015-07-08 19:47:45 +08:00
}
}