2015-08-21 19:16:03 +08:00
|
|
|
@radio-prefix-cls: ant-radio;
|
2016-04-08 15:30:49 +08:00
|
|
|
@radio-group-prefix-cls: ~"@{radio-prefix-cls}-group";
|
2015-08-21 19:16:03 +08:00
|
|
|
@radio-inner-prefix-cls: ~"@{radio-prefix-cls}-inner";
|
2016-03-21 18:53:57 +08:00
|
|
|
@radio-duration: .2s;
|
2015-07-16 18:23:25 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-group-prefix-cls} {
|
2015-09-08 12:10:48 +08:00
|
|
|
display: inline-block;
|
2015-07-17 17:31:56 +08:00
|
|
|
label {
|
|
|
|
margin-right: 16px;
|
2015-07-17 16:06:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
// 一般状态
|
2015-08-21 19:16:03 +08:00
|
|
|
.@{radio-prefix-cls} {
|
2015-07-16 18:23:25 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
outline: none;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
line-height: 1;
|
|
|
|
vertical-align: middle;
|
2016-02-24 20:24:47 +08:00
|
|
|
cursor: pointer;
|
2016-04-26 16:14:40 +08:00
|
|
|
&:hover,
|
|
|
|
&-focused {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2015-07-16 18:23:25 +08:00
|
|
|
border-color: #bcbcbc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-inner {
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
left: 3px;
|
2015-07-17 16:06:46 +08:00
|
|
|
top: 3px;
|
2016-01-19 15:09:28 +08:00
|
|
|
border-radius: @border-radius-base;
|
2015-07-16 18:23:25 +08:00
|
|
|
display: table;
|
|
|
|
border-top: 0;
|
|
|
|
border-left: 0;
|
|
|
|
content: ' ';
|
2015-07-16 22:48:53 +08:00
|
|
|
background-color: @primary-color;
|
2015-07-16 18:23:25 +08:00
|
|
|
opacity: 0;
|
2016-03-21 18:53:57 +08:00
|
|
|
transform: scale(0);
|
|
|
|
transition: all @radio-duration @ease-in-out-circ;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-radius: 14px;
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2015-08-20 16:55:42 +08:00
|
|
|
background-color: #fff;
|
2016-03-21 18:53:57 +08:00
|
|
|
transition: all @radio-duration @ease-in-out-circ;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-input {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2015-08-24 16:38:19 +08:00
|
|
|
z-index: 1;
|
2015-07-16 18:23:25 +08:00
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
// 选中状态
|
2015-08-21 19:16:03 +08:00
|
|
|
.@{radio-prefix-cls}-checked {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2015-07-16 18:23:25 +08:00
|
|
|
&:after {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 1;
|
2016-03-21 18:53:57 +08:00
|
|
|
transition: all @radio-duration @ease-in-out-circ;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-21 19:16:03 +08:00
|
|
|
.@{radio-prefix-cls}-disabled {
|
2015-07-16 18:23:25 +08:00
|
|
|
&:hover {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2015-07-16 18:23:25 +08:00
|
|
|
background-color: #f3f3f3;
|
|
|
|
&:after {
|
|
|
|
background-color: #cccccc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls}-input {
|
2015-07-16 18:23:25 +08:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 11:06:38 +08:00
|
|
|
|
2016-03-03 15:24:51 +08:00
|
|
|
span.@{radio-prefix-cls} + * {
|
2015-07-17 11:06:38 +08:00
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
|
|
|
|
.@{radio-prefix-cls} {
|
|
|
|
label&-button {
|
|
|
|
background: #fff;
|
2016-01-21 22:45:21 +08:00
|
|
|
padding: 0 16px;
|
2015-08-21 19:16:03 +08:00
|
|
|
margin: 0;
|
|
|
|
height: 28px;
|
|
|
|
line-height: 26px;
|
|
|
|
color: #666;
|
|
|
|
display: inline-block;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
cursor: pointer;
|
2016-01-19 15:09:28 +08:00
|
|
|
border: 1px solid @border-color-base;
|
2015-08-21 19:16:03 +08:00
|
|
|
border-left: 0;
|
|
|
|
|
2016-03-03 15:24:51 +08:00
|
|
|
a {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2016-01-21 22:45:21 +08:00
|
|
|
> span.@{radio-prefix-cls}-button {
|
2015-08-21 19:16:03 +08:00
|
|
|
margin-left: 0;
|
2016-04-20 19:02:25 +08:00
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2016-01-21 22:45:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.@{radio-group-prefix-cls}-large & {
|
|
|
|
height: 32px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{radio-group-prefix-cls}-small & {
|
|
|
|
height: 22px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 0 12px;
|
|
|
|
&:first-child {
|
|
|
|
border-radius: @border-radius-sm 0 0 @border-radius-sm;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 @border-radius-sm @border-radius-sm 0;
|
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-radius: @border-radius-base 0 0 @border-radius-base;
|
2016-01-19 15:09:28 +08:00
|
|
|
border-left: 1px solid @border-color-base;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
|
|
}
|
|
|
|
|
2015-09-07 15:14:57 +08:00
|
|
|
&:first-child:last-child {
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
}
|
|
|
|
|
2016-04-26 16:14:40 +08:00
|
|
|
&:hover,
|
|
|
|
&-focused {
|
2016-01-19 15:09:28 +08:00
|
|
|
color: @primary-color;
|
2015-08-21 19:16:03 +08:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{radio-prefix-cls}-inner,
|
|
|
|
input {
|
2015-09-22 11:17:18 +08:00
|
|
|
.opacity(0);
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-checked {
|
2016-01-19 15:09:28 +08:00
|
|
|
background: #fff;
|
2015-08-21 19:16:03 +08:00
|
|
|
border-color: @primary-color;
|
2016-01-19 15:09:28 +08:00
|
|
|
color: @primary-color;
|
2015-09-01 18:23:46 +08:00
|
|
|
box-shadow: -1px 0 0 0 @primary-color;
|
2015-08-21 19:16:03 +08:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-color: @primary-color;
|
2016-01-19 15:09:28 +08:00
|
|
|
box-shadow: none!important;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: tint(@primary-color, 20%);
|
2015-09-01 18:23:46 +08:00
|
|
|
box-shadow: -1px 0 0 0 tint(@primary-color, 20%);
|
2016-01-19 15:09:28 +08:00
|
|
|
color: tint(@primary-color, 20%);
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
border-color: shade(@primary-color, 5%);
|
2015-09-01 18:23:46 +08:00
|
|
|
box-shadow: -1px 0 0 0 shade(@primary-color, 5%);
|
2016-01-19 15:09:28 +08:00
|
|
|
color: shade(@primary-color, 5%);
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-06 22:03:09 +08:00
|
|
|
|
|
|
|
&-disabled {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2016-04-20 15:45:31 +08:00
|
|
|
background-color: #f7f7f7;
|
2015-11-06 22:03:09 +08:00
|
|
|
cursor: not-allowed;
|
|
|
|
color: #ccc;
|
|
|
|
|
|
|
|
&:first-child,
|
|
|
|
&:hover {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2016-04-20 15:45:31 +08:00
|
|
|
background-color: #f7f7f7;
|
2016-01-19 15:09:28 +08:00
|
|
|
color: #ccc;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
|
|
|
&:first-child {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-left-color: @border-color-base;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-disabled.@{radio-prefix-cls}-button-checked {
|
|
|
|
color: #fff;
|
2016-01-19 15:09:28 +08:00
|
|
|
background-color: #e6e6e6;
|
|
|
|
border-color: @border-color-base;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
}
|