ant-design/style/components/checkbox.less

176 lines
3.2 KiB
Plaintext
Raw Normal View History

2015-08-19 21:19:11 +08:00
.antCheckboxFn();
2015-07-16 12:16:56 +08:00
2015-08-20 16:55:42 +08:00
.antCheckboxFn(@checkbox-prefix-cls: ant-checkbox) {
@checkbox-wrap-prefix-cls: @checkbox-prefix-cls;
@checkbox-inner-prefix-cls: ~"@{checkbox-wrap-prefix-cls}-inner";
// 一般状态
.@{checkbox-wrap-prefix-cls} {
2015-07-15 15:19:24 +08:00
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 {
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
2015-07-16 12:16:56 +08:00
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 {
2015-07-17 16:48:01 +08:00
transform: rotate(45deg) scale(0);
2015-07-15 15:19:24 +08:00
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
2015-08-20 16:55:42 +08:00
border: 2px solid #fff;
2015-07-15 15:19:24 +08:00
border-top: 0;
border-left: 0;
content: ' ';
transition: all .1s @ease-in-back;
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;
2015-08-20 16:55:42 +08:00
background-color: #fff;
transition: border-color 0.1s @ease-in-out-back, background-color 0.1s @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;
2015-08-24 16:38:19 +08:00
z-index: 1;
2015-07-16 12:16:56 +08:00
cursor: pointer;
2015-08-17 20:44:40 +08:00
.opacity(0);
2015-07-16 12:16:56 +08:00
top: 0;
bottom: 0;
right: 0;
2015-09-12 14:24:48 +08:00
width: 100%;
height: 100%;
2015-07-15 15:19:24 +08:00
}
}
2015-08-20 16:55:42 +08:00
// 半选状态
.@{checkbox-wrap-prefix-cls}-indeterminate {
.@{checkbox-inner-prefix-cls} {
2015-08-16 20:04:42 +08:00
border-color: @primary-color;
2015-08-16 20:38:58 +08:00
background-color: @primary-color;
2015-08-16 20:04:42 +08:00
&:after {
content: ' ';
2015-08-16 20:38:58 +08:00
transform: scale(1);
position: absolute;
left: 2px;
top: 5px;
width: 8px;
height: 1px;
2015-08-16 20:04:42 +08:00
}
}
2015-11-13 23:09:04 +08:00
&:hover {
.@{checkbox-inner-prefix-cls} {
border-color: @primary-color;
}
}
2015-08-16 20:04:42 +08:00
}
2015-08-20 16:55:42 +08:00
// 选中状态
.@{checkbox-wrap-prefix-cls}-checked {
2015-07-16 12:16:56 +08:00
&:hover {
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
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
}
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
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 {
2015-07-17 16:48:01 +08:00
transform: rotate(45deg) scale(1);
2015-07-15 15:19:24 +08:00
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
2015-08-20 16:55:42 +08:00
border: 2px solid #fff;
2015-07-15 15:19:24 +08:00
border-top: 0;
border-left: 0;
content: ' ';
transition: all .2s @ease-out-back .1s;
2015-07-15 15:19:24 +08:00
}
}
}
2015-08-20 16:55:42 +08:00
.@{checkbox-wrap-prefix-cls}-disabled {
2015-07-15 15:19:24 +08:00
2015-08-20 16:55:42 +08:00
&.@{checkbox-wrap-prefix-cls}-checked {
2015-07-16 12:16:56 +08:00
&:hover {
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
2015-07-15 15:19:24 +08:00
border-color: #d9d9d9;
}
2015-07-16 12:16:56 +08:00
}
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
2015-07-16 12:16:56 +08:00
background-color: #f3f3f3;
border-color: #d9d9d9;
2015-07-15 15:19:24 +08:00
&:after {
animation-name: none;
2015-08-20 16:55:42 +08:00
border-color: #ccc;
2015-07-15 15:19:24 +08:00
}
}
}
2015-07-16 12:16:56 +08:00
&:hover {
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
2015-07-15 15:19:24 +08:00
border-color: #d9d9d9;
}
2015-07-16 12:16:56 +08:00
}
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls} {
2015-07-16 12:16:56 +08:00
border-color: #d9d9d9;
background-color: #f3f3f3;
2015-07-15 15:19:24 +08:00
&:after {
animation-name: none;
border-color: #f3f3f3;
}
}
2015-08-20 16:55:42 +08:00
.@{checkbox-inner-prefix-cls}-input {
2015-07-16 12:16:56 +08:00
cursor: default;
2015-07-15 15:19:24 +08:00
}
}
2015-07-17 11:06:38 +08:00
2015-08-20 16:55:42 +08:00
.@{checkbox-wrap-prefix-cls} + span {
2015-07-17 11:06:38 +08:00
margin-left: 8px;
}
2015-08-17 00:24:39 +08:00
.@{checkbox-wrap-prefix-cls}-group {
font-size: @font-size-base;
&-item {
display: inline-block;
margin-left: 16px;
&:first-child {
margin-left: 0;
}
}
}
2015-08-17 00:24:39 +08:00
}