ant-design/components/radio/style/index.less

327 lines
7.1 KiB
Plaintext
Raw Normal View History

2018-12-07 20:02:01 +08:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
2018-12-07 20:02:01 +08:00
@radio-prefix-cls: ~'@{ant-prefix}-radio';
@radio-group-prefix-cls: ~'@{radio-prefix-cls}-group';
@radio-inner-prefix-cls: ~'@{radio-prefix-cls}-inner';
@radio-duration: 0.3s;
@radio-focused-outline: 3px solid fade(@radio-dot-color, 6%);
2015-07-16 18:23:25 +08:00
2015-08-20 16:55:42 +08:00
.@{radio-group-prefix-cls} {
.reset-component;
2019-04-15 10:52:00 +08:00
display: inline-block;
line-height: unset;
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 {
.reset-component;
2019-04-15 10:52:00 +08:00
2016-06-27 17:22:03 +08:00
position: relative;
display: inline-block;
2016-06-27 17:22:03 +08:00
margin-right: 8px;
white-space: nowrap;
cursor: pointer;
2016-06-27 17:22:03 +08:00
}
.@{radio-prefix-cls} {
.reset-component;
2019-04-15 10:52:00 +08:00
2015-07-16 18:23:25 +08:00
position: relative;
display: inline-block;
2015-07-16 18:23:25 +08:00
line-height: 1;
white-space: nowrap;
2018-08-11 20:51:03 +08:00
vertical-align: sub;
outline: none;
cursor: pointer;
.@{radio-prefix-cls}-wrapper:hover &,
&:hover .@{radio-inner-prefix-cls},
&-input:focus + .@{radio-inner-prefix-cls} {
border-color: @radio-dot-color;
2015-07-16 18:23:25 +08:00
}
&-input:focus + .@{radio-inner-prefix-cls} {
box-shadow: 0 0 0 3px fade(@radio-dot-color, 8%);
}
&-checked::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 1px solid @radio-dot-color;
border-radius: 50%;
visibility: hidden;
animation: antRadioEffect 0.36s ease-in-out;
animation-fill-mode: both;
content: '';
}
&:hover::after,
.@{radio-prefix-cls}-wrapper:hover &::after {
visibility: visible;
}
2015-07-16 18:23:25 +08:00
&-inner {
&::after {
2017-09-29 11:45:01 +08:00
@radio-dot-size: @radio-size - 8px;
2019-04-15 10:52:00 +08:00
2015-07-16 18:23:25 +08:00
position: absolute;
top: (@radio-size - @radio-dot-size) / 2 - 1px;
left: (@radio-size - @radio-dot-size) / 2 - 1px;
2015-07-16 18:23:25 +08:00
display: table;
width: @radio-dot-size;
height: @radio-dot-size;
background-color: @radio-dot-color;
2015-07-16 18:23:25 +08:00
border-top: 0;
border-left: 0;
border-radius: @radio-dot-size;
2016-03-21 18:53:57 +08:00
transform: scale(0);
opacity: 0;
2016-03-21 18:53:57 +08:00
transition: all @radio-duration @ease-in-out-circ;
content: ' ';
2015-07-16 18:23:25 +08:00
}
position: relative;
top: 0;
left: 0;
display: block;
width: @radio-size;
height: @radio-size;
background-color: @radio-button-bg;
border-color: @border-color-base;
2019-04-15 22:44:51 +08:00
border-style: solid;
border-width: 1px;
border-radius: 100px;
transition: all @radio-duration;
2015-07-16 18:23:25 +08:00
}
&-input {
position: absolute;
top: 0;
right: 0;
bottom: 0;
2015-07-16 18:23:25 +08:00
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;
}
}
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} {
border-color: @radio-dot-color;
&::after {
2019-04-16 15:48:36 +08:00
transform: scale(1);
2015-07-16 18:23:25 +08:00
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} {
background-color: @input-disabled-bg;
border-color: @border-color-base !important;
cursor: not-allowed;
&::after {
background-color: fade(@black, 20%);
2015-07-16 18:23:25 +08:00
}
}
.@{radio-prefix-cls}-input {
cursor: not-allowed;
}
& + span {
color: @disabled-color;
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} + * {
padding-right: 8px;
padding-left: 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 {
position: relative;
display: inline-block;
height: @btn-height-base;
margin: 0;
padding: 0 @padding-md - 1px;
color: @radio-button-color;
line-height: @btn-height-base - 2px;
background: @radio-button-bg;
border: @border-width-base @border-style-base @border-color-base;
2018-01-03 20:58:31 +08:00
// strange align fix for chrome but works
// https://gw.alipayobjects.com/zos/rmsportal/VFTfKXJuogBAXcvfAUWJ.gif
border-top-width: @border-width-base + 0.02px;
border-left: 0;
cursor: pointer;
transition: color 0.3s, background 0.3s, border-color 0.3s;
2016-03-03 15:24:51 +08:00
2016-06-27 17:22:03 +08:00
a {
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 {
display: block;
width: 0;
height: 0;
margin-left: 0;
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-group-prefix-cls}-large & {
height: @input-height-lg;
font-size: @font-size-lg;
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 & {
height: @input-height-sm;
padding: 0 @control-padding-horizontal-sm - 1px;
line-height: @input-height-sm - 2px;
2016-06-27 17:22:03 +08:00
}
2015-08-21 19:16:03 +08:00
&:not(:first-child) {
&::before {
position: absolute;
top: 0;
left: -1px;
display: block;
width: 1px;
height: 100%;
background-color: @border-color-base;
content: '';
}
}
2016-06-27 17:22:03 +08:00
&:first-child {
border-left: @border-width-base @border-style-base @border-color-base;
border-radius: @border-radius-base 0 0 @border-radius-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 {
2016-06-27 17:22:03 +08:00
position: relative;
color: @radio-dot-color;
2016-06-27 17:22:03 +08:00
}
&:focus-within {
outline: @radio-focused-outline;
}
2016-06-27 17:22:03 +08:00
.@{radio-prefix-cls}-inner,
2018-12-07 20:02:01 +08:00
input[type='checkbox'],
input[type='radio'] {
2016-06-27 17:22:03 +08:00
width: 0;
height: 0;
opacity: 0;
2018-12-26 17:11:11 +08:00
pointer-events: none;
2016-06-27 17:22:03 +08:00
}
&-checked {
z-index: 1;
color: @radio-dot-color;
2019-03-20 16:46:23 +08:00
background: @radio-button-checked-bg;
border-color: @radio-dot-color;
box-shadow: -1px 0 0 0 @radio-dot-color;
&::before {
background-color: @radio-dot-color !important;
opacity: 0.1;
}
2016-06-27 17:22:03 +08:00
&:first-child {
border-color: @radio-dot-color;
2017-08-04 17:58:32 +08:00
box-shadow: none !important;
2015-08-21 19:16:03 +08:00
}
2016-06-27 17:22:03 +08:00
&:hover {
color: @radio-button-hover-color;
border-color: @radio-button-hover-color;
box-shadow: -1px 0 0 0 @radio-button-hover-color;
2015-08-21 19:16:03 +08:00
}
2016-06-27 17:22:03 +08:00
&:active {
color: @radio-button-active-color;
border-color: @radio-button-active-color;
box-shadow: -1px 0 0 0 @radio-button-active-color;
2015-08-21 19:16:03 +08:00
}
&:focus-within {
outline: @radio-focused-outline;
}
2016-06-27 17:22:03 +08:00
}
.@{radio-group-prefix-cls}-solid &-checked:not(&-disabled) {
color: @component-background;
background: @radio-dot-color;
border-color: @radio-dot-color;
&:hover {
color: @component-background;
background: @radio-button-hover-color;
border-color: @radio-button-hover-color;
}
&:active {
color: @component-background;
background: @radio-button-active-color;
border-color: @radio-button-active-color;
}
&:focus-within {
outline: @radio-focused-outline;
}
}
2016-06-27 17:22:03 +08:00
&-disabled {
color: @disabled-color;
background-color: @input-disabled-bg;
border-color: @border-color-base;
2016-06-27 17:22:03 +08:00
cursor: not-allowed;
2016-06-27 17:22:03 +08:00
&:first-child,
&:hover {
color: @disabled-color;
background-color: @input-disabled-bg;
border-color: @border-color-base;
}
2016-06-27 17:22:03 +08:00
&:first-child {
border-left-color: @border-color-base;
}
2015-08-21 19:16:03 +08:00
}
2016-06-27 17:22:03 +08:00
&-disabled&-checked {
color: @text-color-inverse;
background-color: tint(@black, 90%);
2016-06-27 17:22:03 +08:00
border-color: @border-color-base;
box-shadow: none;
2016-06-27 17:22:03 +08:00
}
2015-08-21 19:16:03 +08:00
}
@keyframes antRadioEffect {
0% {
transform: scale(1);
opacity: 0.5;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
2018-08-11 20:51:03 +08:00
// Firefox hack
2018-12-07 20:02:01 +08:00
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
2018-08-11 20:51:03 +08:00
.@{radio-prefix-cls} {
vertical-align: text-bottom;
}
}