2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@radio-prefix-cls: ~"@{ant-prefix}-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-11-01 00:54:47 +08:00
|
|
|
@radio-duration: .3s;
|
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;
|
2016-04-27 20:44:36 +08:00
|
|
|
font-size: @font-size-base;
|
2015-07-17 16:06:46 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
// 一般状态
|
2016-06-27 17:22:03 +08:00
|
|
|
.@{radio-prefix-cls}-wrapper {
|
2016-04-27 20:44:36 +08:00
|
|
|
font-size: @font-size-base;
|
2016-06-27 17:22:03 +08:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: 8px;
|
2016-11-01 00:54:47 +08:00
|
|
|
cursor: pointer;
|
2016-06-27 17:22: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;
|
2017-03-13 12:43:33 +08:00
|
|
|
vertical-align: text-bottom;
|
2016-02-24 20:24:47 +08:00
|
|
|
cursor: pointer;
|
2016-11-01 00:54:47 +08:00
|
|
|
.@{radio-prefix-cls}-wrapper:hover &,
|
2016-04-26 16:14:40 +08:00
|
|
|
&:hover,
|
|
|
|
&-focused {
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2016-11-08 21:42:46 +08:00
|
|
|
border-color: @primary-color;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&-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;
|
2017-02-22 21:22:42 +08:00
|
|
|
display: block;
|
2015-07-16 18:23:25 +08:00
|
|
|
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;
|
2017-04-22 14:09:25 +08:00
|
|
|
background-color: @radio-button-bg;
|
2016-11-01 00:54:47 +08:00
|
|
|
transition: all @radio-duration;
|
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-11-08 21:42:46 +08:00
|
|
|
border-color: @primary-color;
|
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-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2016-11-01 00:54:47 +08:00
|
|
|
border-color: @border-color-base!important;
|
2015-07-16 18:23:25 +08:00
|
|
|
background-color: #f3f3f3;
|
|
|
|
&:after {
|
2017-02-06 12:04:35 +08:00
|
|
|
background-color: #ccc;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 00:54:47 +08:00
|
|
|
& + span {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-11-08 20:45:56 +08:00
|
|
|
cursor: not-allowed;
|
2016-06-23 11:15:24 +08:00
|
|
|
}
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
2015-07-17 11:06:38 +08:00
|
|
|
|
2016-03-03 15:24:51 +08:00
|
|
|
span.@{radio-prefix-cls} + * {
|
2016-11-01 00:54:47 +08:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2015-07-17 11:06:38 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
.@{radio-prefix-cls}-button-wrapper {
|
|
|
|
margin: 0;
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-base;
|
2017-02-15 11:47:22 +08:00
|
|
|
line-height: @input-height-base - 2;
|
2017-04-22 14:09:25 +08:00
|
|
|
color: @radio-button-color;
|
2016-06-27 17:22:03 +08:00
|
|
|
display: inline-block;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
cursor: pointer;
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
2016-06-27 17:22:03 +08:00
|
|
|
border-left: 0;
|
2017-04-22 14:09:25 +08:00
|
|
|
background: @radio-button-bg;
|
2016-06-27 17:22:03 +08:00
|
|
|
padding: 0 16px;
|
2016-03-03 15:24:51 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
a {
|
2017-04-22 14:09:25 +08:00
|
|
|
color: @radio-button-color;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
2016-01-21 22:45:21 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
> .@{radio-prefix-cls}-button {
|
|
|
|
margin-left: 0;
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
2016-01-21 22:45:21 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
.@{radio-group-prefix-cls}-large & {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-lg;
|
2017-02-15 11:47:22 +08:00
|
|
|
line-height: @input-height-lg - 2px;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
.@{radio-group-prefix-cls}-small & {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-sm;
|
2017-02-15 11:47:22 +08:00
|
|
|
line-height: @input-height-sm - 2;
|
2016-06-27 17:22:03 +08:00
|
|
|
padding: 0 12px;
|
2015-08-21 19:16:03 +08:00
|
|
|
&:first-child {
|
2016-06-27 17:22:03 +08:00
|
|
|
border-radius: @border-radius-sm 0 0 @border-radius-sm;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
&:last-child {
|
2016-06-27 17:22:03 +08:00
|
|
|
border-radius: 0 @border-radius-sm @border-radius-sm 0;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child {
|
|
|
|
border-radius: @border-radius-base 0 0 @border-radius-base;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-left: @border-width-base @border-style-base @border-color-base;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child:last-child {
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&-focused {
|
|
|
|
color: @primary-color;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{radio-prefix-cls}-inner,
|
2016-10-18 22:26:57 +08:00
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"] {
|
2016-06-27 17:22:03 +08:00
|
|
|
.opacity(0);
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-checked {
|
2017-04-22 14:09:25 +08:00
|
|
|
background: @radio-button-bg;
|
2016-06-27 17:22:03 +08:00
|
|
|
border-color: @primary-color;
|
|
|
|
color: @primary-color;
|
|
|
|
box-shadow: -1px 0 0 0 @primary-color;
|
2015-09-07 15:14:57 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child {
|
|
|
|
border-color: @primary-color;
|
|
|
|
box-shadow: none!important;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:hover {
|
2017-01-01 22:20:06 +08:00
|
|
|
border-color: @primary-5;
|
2017-03-16 23:37:10 +08:00
|
|
|
box-shadow: -1px 0 0 0 @primary-5;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @primary-5;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:active {
|
2017-01-01 22:20:06 +08:00
|
|
|
border-color: @primary-7;
|
2017-03-16 23:37:10 +08:00
|
|
|
box-shadow: -1px 0 0 0 @primary-7;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @primary-7;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-disabled {
|
|
|
|
border-color: @border-color-base;
|
2016-07-21 15:02:24 +08:00
|
|
|
background-color: @background-color-base;
|
2016-06-27 17:22:03 +08:00
|
|
|
cursor: not-allowed;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-11-06 22:03:09 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child,
|
|
|
|
&:hover {
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2016-07-21 15:02:24 +08:00
|
|
|
background-color: @background-color-base;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child {
|
|
|
|
border-left-color: @border-color-base;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
|
|
|
|
&-disabled&-checked {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
border-color: @border-color-base;
|
2016-12-05 13:15:49 +08:00
|
|
|
box-shadow: none;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|