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

174 lines
3.2 KiB
Plaintext
Raw Normal View History

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} {
.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;
height: @switch-height;
min-width: 44px;
line-height: @switch-height - 2px;
2015-07-08 19:47:45 +08:00
vertical-align: middle;
border-radius: 100px;
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 {
color: @text-color-inverse;
2017-10-17 15:22:53 +08:00
font-size: @font-size-sm;
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
&-loading-icon,
2015-11-26 19:32:55 +08:00
&:after {
2015-07-08 19:47:45 +08:00
position: absolute;
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;
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 {
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
}
&-loading-icon {
2018-09-06 23:14:14 +08:00
// loading default use animation
// animation: loadingCircle 1s infinite linear;
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 {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
2017-12-02 15:57:02 +08:00
}
&-loading &-loading-icon {
2017-12-02 15:57:02 +08:00
display: inline-block;
color: @text-color;
}
&-checked&-loading &-loading-icon {
color: @switch-color;
2017-12-02 15:57:02 +08:00
}
&:focus {
box-shadow: 0 0 0 2px fade(@switch-color, 20%);
outline: 0;
}
&:focus:hover {
box-shadow: none;
}
2015-12-06 16:39:01 +08:00
&-small {
height: @switch-sm-height;
min-width: 28px;
line-height: @switch-sm-height - 2px;
.@{switch-prefix-cls}-inner {
margin-left: 18px;
margin-right: 3px;
font-size: @font-size-sm;
}
2015-12-06 16:39:01 +08:00
&:after {
width: @switch-sm-height - 4px;
height: @switch-sm-height - 4px;
2015-12-06 16:39:01 +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
}
&-small &-loading-icon {
width: @switch-sm-height - 4px;
height: @switch-sm-height - 4px;
}
&-small&-checked {
.@{switch-prefix-cls}-inner {
margin-left: 3px;
margin-right: 18px;
}
2015-12-06 16:39:01 +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 {
background-color: @switch-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
&: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
}
&-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 {
cursor: not-allowed;
2017-12-02 15:57:02 +08:00
opacity: @switch-disabled-opacity;
* {
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
}
}