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.

279 lines
5.7 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../style/mixins/index";
@radio-prefix-cls: ~"@{ant-prefix}-radio";
@radio-group-prefix-cls: ~"@{radio-prefix-cls}-group";
@radio-inner-prefix-cls: ~"@{radio-prefix-cls}-inner";
@radio-duration: .3s;
9 years ago
.@{radio-group-prefix-cls} {
.reset-component;
display: inline-block;
line-height: unset;
9 years ago
}
// 一般状态
.@{radio-prefix-cls}-wrapper {
.reset-component;
display: inline-block;
position: relative;
white-space: nowrap;
margin-right: 8px;
cursor: pointer;
}
.@{radio-prefix-cls} {
.reset-component;
9 years ago
white-space: nowrap;
outline: none;
display: inline-block;
position: relative;
line-height: 1;
vertical-align: text-bottom;
cursor: pointer;
.@{radio-prefix-cls}-wrapper:hover &,
&:hover,
&-focused {
.@{radio-inner-prefix-cls} {
border-color: @primary-color;
9 years ago
}
}
&-checked:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid @primary-color;
content: '';
animation: antRadioEffect 0.36s ease-in-out;
animation-fill-mode: both;
visibility: hidden;
}
&:hover:after,
.@{radio-prefix-cls}-wrapper:hover &:after {
visibility: visible;
}
9 years ago
&-inner {
&:after {
@radio-dot-size: @radio-size - 8px;
9 years ago
position: absolute;
width: @radio-dot-size;
height: @radio-dot-size;
left: (@radio-size - @radio-dot-size) / 2 - 1px;
top: (@radio-size - @radio-dot-size) / 2 - 1px;
border-radius: @border-radius-base;
9 years ago
display: table;
border-top: 0;
border-left: 0;
content: ' ';
background-color: @primary-color;
9 years ago
opacity: 0;
transform: scale(0);
transition: all @radio-duration @ease-in-out-circ;
9 years ago
}
position: relative;
top: 0;
left: 0;
display: block;
width: @radio-size;
height: @radio-size;
9 years ago
border-width: 1px;
border-style: solid;
border-radius: 100px;
border-color: @border-color-base;
background-color: @radio-button-bg;
transition: all @radio-duration;
9 years ago
}
&-input {
position: absolute;
left: 0;
z-index: 1;
9 years ago
cursor: pointer;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
}
}
// 选中状态
.@{radio-prefix-cls}-checked {
.@{radio-inner-prefix-cls} {
border-color: @primary-color;
9 years ago
&:after {
transform: scale(.875);
9 years ago
opacity: 1;
transition: all @radio-duration @ease-in-out-circ;
9 years ago
}
}
}
.@{radio-prefix-cls}-disabled {
.@{radio-inner-prefix-cls} {
border-color: @border-color-base !important;
background-color: @input-disabled-bg;