ant-design/style/components/checkbox.less

136 lines
2.5 KiB
Plaintext
Raw Normal View History

2015-07-15 15:19:24 +08:00
@checkboxWarpPrefixCls: ant-checkbox;
2015-07-16 12:16:56 +08:00
@checkboxInnerPrefixCls: ~"@{checkboxWarpPrefixCls}-inner";
2015-07-15 15:19:24 +08:00
/* 一般状态 */
.@{checkboxWarpPrefixCls} {
white-space: nowrap;
cursor: pointer;
outline: none;
display: inline-block;
2015-07-16 12:27:04 +08:00
line-height: 1;
2015-07-16 12:16:56 +08:00
position: relative;
2015-07-16 12:27:04 +08:00
vertical-align: middle;
2015-07-16 12:16:56 +08:00
&:hover {
.@{checkboxInnerPrefixCls} {
border-color: #bcbcbc;
}
}
2015-07-15 15:19:24 +08:00
2015-07-16 12:16:56 +08:00
&-inner {
2015-07-15 15:19:24 +08:00
&:after {
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
2015-07-16 22:48:53 +08:00
animation-timing-function: @ease-in-out-back;
2015-07-15 15:19:24 +08:00
animation-duration: 0.3s;
2015-07-16 22:48:53 +08:00
animation-name: fadeOut;
2015-07-15 15:19:24 +08:00
}
2015-07-16 12:16:56 +08:00
2015-07-15 15:19:24 +08:00
position: relative;
2015-07-16 12:16:56 +08:00
top: 0;
2015-07-15 15:19:24 +08:00
left: 0;
display: inline-block;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 3px;
border-color: #d9d9d9;
background-color: #ffffff;
2015-07-16 22:48:53 +08:00
transition: border-color 0.3s @ease-in-out-back, background-color 0.3s @ease-in-out-back;
2015-07-15 15:19:24 +08:00
}
2015-07-16 12:16:56 +08:00
&-input {
position: absolute;
left: 0;
z-index: 9999;
cursor: pointer;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
2015-07-15 15:19:24 +08:00
}
}
/* 选中状态 */
.@{checkboxWarpPrefixCls}-checked {
2015-07-16 12:16:56 +08:00
&:hover {
.@{checkboxInnerPrefixCls} {
2015-07-16 22:48:53 +08:00
border-color: @primary-color;
2015-07-15 15:19:24 +08:00
}
2015-07-16 12:16:56 +08:00
}
.@{checkboxInnerPrefixCls} {
2015-07-16 22:48:53 +08:00
border-color: @primary-color;
background-color: @primary-color;
2015-07-16 12:16:56 +08:00
2015-07-15 15:19:24 +08:00
&:after {
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
2015-07-16 22:48:53 +08:00
animation-timing-function: @ease-in-out-back;
2015-07-15 15:19:24 +08:00
animation-duration: 0.3s;
2015-07-16 22:48:53 +08:00
animation-name: fadeOut;
2015-07-15 15:19:24 +08:00
}
}
}
.@{checkboxWarpPrefixCls}-disabled {
&.@{checkboxWarpPrefixCls}-checked {
2015-07-16 12:16:56 +08:00
&:hover {
.@{checkboxInnerPrefixCls} {
2015-07-15 15:19:24 +08:00
border-color: #d9d9d9;
}
2015-07-16 12:16:56 +08:00
}
.@{checkboxInnerPrefixCls} {
background-color: #f3f3f3;
border-color: #d9d9d9;
2015-07-15 15:19:24 +08:00
&:after {
animation-name: none;
border-color: #cccccc;
}
}
}
2015-07-16 12:16:56 +08:00
&:hover {
.@{checkboxInnerPrefixCls} {
2015-07-15 15:19:24 +08:00
border-color: #d9d9d9;
}
2015-07-16 12:16:56 +08:00
}
.@{checkboxInnerPrefixCls} {
border-color: #d9d9d9;
background-color: #f3f3f3;
2015-07-15 15:19:24 +08:00
&:after {
animation-name: none;
border-color: #f3f3f3;
}
}
2015-07-16 12:16:56 +08:00
.@{checkboxInnerPrefixCls}-input {
cursor: default;
2015-07-15 15:19:24 +08:00
}
}