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.

136 lines
2.5 KiB

@checkboxWrapPrefixCls: ant-checkbox;
@checkboxInnerPrefixCls: ~"@{checkboxWrapPrefixCls}-inner";
10 years ago
/* 一般状态 */
.@{checkboxWrapPrefixCls} {
10 years ago
white-space: nowrap;
cursor: pointer;
outline: none;
display: inline-block;
line-height: 1;
position: relative;
vertical-align: middle;
&:hover {
.@{checkboxInnerPrefixCls} {
border-color: #bcbcbc;
}
}
10 years ago
&-inner {
10 years ago
&:after {
transform: rotate(45deg) scale(0);
10 years ago
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
transition: all .1s @ease-in-back;
10 years ago
}
10 years ago
position: relative;
top: 0;
10 years ago
left: 0;
display: inline-block;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 3px;
border-color: #d9d9d9;
background-color: #ffffff;
transition: border-color 0.1s @ease-in-out-back, background-color 0.1s @ease-in-out-back;
10 years ago
}
&-input {
position: absolute;
left: 0;
z-index: 9999;
cursor: pointer;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
10 years ago
}
}
/* 选中状态 */
.@{checkboxWrapPrefixCls}-checked {
&:hover {
.@{checkboxInnerPrefixCls} {
border-color: @primary-color;
10 years ago
}
}
.@{checkboxInnerPrefixCls} {
border-color: @primary-color;
background-color: @primary-color;
10 years ago
&:after {
transform: rotate(45deg) scale(1);
10 years ago
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
transition: all .2s @ease-out-back .1s;
10 years ago
}
}
}
.@{checkboxWrapPrefixCls}-disabled {
10 years ago
&.@{checkboxWrapPrefixCls}-checked {
&:hover {
.@{checkboxInnerPrefixCls} {
10 years ago
border-color: #d9d9d9;
}
}
.@{checkboxInnerPrefixCls} {
background-color: #f3f3f3;
border-color: #d9d9d9;
10 years ago
&:after {
animation-name: none;
border-color: #cccccc;
}
}
}
&:hover {
.@{checkboxInnerPrefixCls} {
10 years ago
border-color: #d9d9d9;
}
}
.@{checkboxInnerPrefixCls} {
border-color: #d9d9d9;
background-color: #f3f3f3;
10 years ago
&:after {
animation-name: none;
border-color: #f3f3f3;
}
}
.@{checkboxInnerPrefixCls}-input {
cursor: default;
10 years ago
}
}
.@{checkboxWrapPrefixCls} + span {
margin-left: 8px;
}