You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
161 lines
3.4 KiB
161 lines
3.4 KiB
@import "../../style/mixins/index";
|
|
|
|
.antCheckboxFn(@checkbox-prefix-cls: ~"@{ant-prefix}-checkbox") {
|
|
@checkbox-inner-prefix-cls: ~"@{checkbox-prefix-cls}-inner";
|
|
// 一般状态
|
|
.@{checkbox-prefix-cls} {
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
outline: none;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
|
|
.@{checkbox-prefix-cls}-wrapper:hover &,
|
|
&:hover,
|
|
&-focused {
|
|
.@{checkbox-inner-prefix-cls} {
|
|
border-color: @primary-color;
|
|
}
|
|
}
|
|
|
|
&-inner {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
display: inline-block;
|
|
width: 14px;
|
|
height: 14px;
|
|
border: 1px solid @border-color-base;
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
transition: all .3s;
|
|
|
|
&:after {
|
|
transform: rotate(45deg) scale(0);
|
|
position: absolute;
|
|
left: 4px;
|
|
top: 1px;
|
|
display: table;
|
|
width: 5px;
|
|
height: 8px;
|
|
border: 2px solid #fff;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
content: ' ';
|
|
transition: all .1s @ease-in-back;
|
|
}
|
|
}
|
|
|
|
&-input {
|
|
position: absolute;
|
|
left: 0;
|
|
z-index: 1;
|
|
cursor: pointer;
|
|
.opacity(0);
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
// 半选状态
|
|
.@{checkbox-prefix-cls}-indeterminate .@{checkbox-inner-prefix-cls}:after {
|
|
content: ' ';
|
|
transform: scale(1);
|
|
position: absolute;
|
|
left: 2px;
|
|
top: 5px;
|
|
width: 8px;
|
|
height: 1px;
|
|
}
|
|
|
|
// 选中状态
|
|
.@{checkbox-prefix-cls}-checked .@{checkbox-inner-prefix-cls}:after {
|
|
transform: rotate(45deg) scale(1);
|
|
position: absolute;
|
|
left: 4px;
|
|
top: 1px;
|
|
display: table;
|
|
width: 5px;
|
|
height: 8px;
|
|
border: 2px solid #fff;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
content: ' ';
|
|
transition: all .2s @ease-out-back .1s;
|
|
}
|
|
|
|
.@{checkbox-prefix-cls}-checked,
|
|
.@{checkbox-prefix-cls}-indeterminate {
|
|
.@{checkbox-inner-prefix-cls} {
|
|
background-color: @primary-color;
|
|
border-color: @primary-color;
|
|
}
|
|
}
|
|
|
|
.@{checkbox-prefix-cls}-disabled {
|
|
&.@{checkbox-prefix-cls}-checked {
|
|
.@{checkbox-inner-prefix-cls}:after {
|
|
animation-name: none;
|
|
border-color: #ccc;
|
|
}
|
|
}
|
|
|
|
.@{checkbox-inner-prefix-cls} {
|
|
border-color: @border-color-base!important;
|
|
background-color: #f3f3f3;
|
|
&:after {
|
|
animation-name: none;
|
|
border-color: #f3f3f3;
|
|
}
|
|
}
|
|
|
|
& + span {
|
|
color: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
.@{checkbox-prefix-cls}-wrapper {
|
|
cursor: pointer;
|
|
font-size: @font-size-base;
|
|
display: inline-block;
|
|
&:not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
.@{checkbox-prefix-cls}-wrapper + span,
|
|
.@{checkbox-prefix-cls} + span {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.@{checkbox-prefix-cls}-group {
|
|
font-size: @font-size-base;
|
|
&-item {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
@ie8: \0screen;
|
|
|
|
// IE8 hack for https://github.com/ant-design/ant-design/issues/2148
|
|
@media @ie8 {
|
|
.@{checkbox-prefix-cls}-checked .@{checkbox-prefix-cls}-inner:before,
|
|
.@{checkbox-prefix-cls}-checked .@{checkbox-prefix-cls}-inner:after {
|
|
.iconfont-font("\e632");
|
|
font-weight: bold;
|
|
font-size: 8px;
|
|
border: 0;
|
|
color: #fff;
|
|
left: 2px;
|
|
top: 3px;
|
|
position: absolute;
|
|
}
|
|
}
|
|
}
|
|
|