2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
2016-04-27 20:44:36 +08:00
|
|
|
|
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;
|
2021-09-01 10:56:50 +08:00
|
|
|
@radio-focus-shadow: 0 0 0 3px @primary-1;
|
2020-02-16 18:26:11 +08:00
|
|
|
@radio-button-focus-shadow: @radio-focus-shadow;
|
2015-07-16 18:23:25 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-group-prefix-cls} {
|
2020-12-22 11:08:12 +08:00
|
|
|
.reset-component();
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2017-09-27 22:32:49 +08:00
|
|
|
display: inline-block;
|
2020-06-30 15:01:37 +08:00
|
|
|
font-size: 0;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2020-02-04 17:01:19 +08:00
|
|
|
.@{ant-prefix}-badge-count {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .@{ant-prefix}-badge:not(:first-child) > .@{radio-prefix-cls}-button-wrapper {
|
|
|
|
border-left: none;
|
|
|
|
}
|
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 {
|
2020-12-22 11:08:12 +08:00
|
|
|
.reset-component();
|
2016-06-27 17:22:03 +08:00
|
|
|
position: relative;
|
2021-03-17 14:56:32 +08:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
2020-04-28 11:16:01 +08:00
|
|
|
margin-right: @radio-wrapper-margin-right;
|
2016-11-01 00:54:47 +08:00
|
|
|
cursor: pointer;
|
2021-04-22 20:15:23 +08:00
|
|
|
|
2021-12-08 10:38:06 +08:00
|
|
|
&-disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2021-04-22 20:15:23 +08:00
|
|
|
&::after {
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
content: '\a0';
|
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.@{radio-prefix-cls} {
|
2020-12-22 11:08:12 +08:00
|
|
|
.reset-component();
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2015-07-16 18:23:25 +08:00
|
|
|
position: relative;
|
2020-04-28 11:16:01 +08:00
|
|
|
top: @radio-top;
|
2019-02-15 10:48:07 +08:00
|
|
|
display: inline-block;
|
|
|
|
outline: none;
|
2016-02-24 20:24:47 +08:00
|
|
|
cursor: pointer;
|
2019-01-10 16:55:18 +08:00
|
|
|
|
2016-11-01 00:54:47 +08:00
|
|
|
.@{radio-prefix-cls}-wrapper:hover &,
|
2019-01-10 16:55:18 +08:00
|
|
|
&:hover .@{radio-inner-prefix-cls},
|
|
|
|
&-input:focus + .@{radio-inner-prefix-cls} {
|
|
|
|
border-color: @radio-dot-color;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
2019-01-10 16:55:18 +08:00
|
|
|
|
|
|
|
&-input:focus + .@{radio-inner-prefix-cls} {
|
2020-02-16 18:26:11 +08:00
|
|
|
box-shadow: @radio-focus-shadow;
|
2019-01-10 16:55:18 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&-checked::after {
|
2017-07-02 19:14:56 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-01-18 10:22:03 +08:00
|
|
|
border: 1px solid @radio-dot-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
visibility: hidden;
|
2017-07-02 19:14:56 +08:00
|
|
|
animation: antRadioEffect 0.36s ease-in-out;
|
|
|
|
animation-fill-mode: both;
|
2019-02-15 10:48:07 +08:00
|
|
|
content: '';
|
2017-07-02 19:14:56 +08:00
|
|
|
}
|
2019-01-10 16:55:18 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&:hover::after,
|
|
|
|
.@{radio-prefix-cls}-wrapper:hover &::after {
|
2017-07-02 19:14:56 +08:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2019-01-10 16:55:18 +08:00
|
|
|
|
2015-07-16 18:23:25 +08:00
|
|
|
&-inner {
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2015-07-16 18:23:25 +08:00
|
|
|
position: absolute;
|
2021-12-02 11:47:13 +08:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2021-04-30 11:42:13 +08:00
|
|
|
display: block;
|
2021-12-02 11:47:13 +08:00
|
|
|
width: @radio-size;
|
|
|
|
height: @radio-size;
|
|
|
|
margin-top: -(@radio-size / 2);
|
|
|
|
margin-left: -(@radio-size / 2);
|
2019-02-15 10:48:07 +08:00
|
|
|
background-color: @radio-dot-color;
|
2015-07-16 18:23:25 +08:00
|
|
|
border-top: 0;
|
|
|
|
border-left: 0;
|
2021-12-02 11:47:13 +08:00
|
|
|
border-radius: @radio-size;
|
2016-03-21 18:53:57 +08:00
|
|
|
transform: scale(0);
|
2019-02-15 10:48:07 +08:00
|
|
|
opacity: 0;
|
2016-03-21 18:53:57 +08:00
|
|
|
transition: all @radio-duration @ease-in-out-circ;
|
2019-02-15 10:48:07 +08:00
|
|
|
content: ' ';
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2017-02-22 21:22:42 +08:00
|
|
|
display: block;
|
2017-09-27 22:32:49 +08:00
|
|
|
width: @radio-size;
|
|
|
|
height: @radio-size;
|
2019-02-15 10:48:07 +08:00
|
|
|
background-color: @radio-button-bg;
|
2016-01-19 15:09:28 +08:00
|
|
|
border-color: @border-color-base;
|
2019-04-15 22:44:51 +08:00
|
|
|
border-style: solid;
|
2020-11-11 23:44:49 +08:00
|
|
|
border-width: @radio-border-width;
|
|
|
|
border-radius: 50%;
|
2016-11-01 00:54:47 +08:00
|
|
|
transition: all @radio-duration;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-input {
|
|
|
|
position: absolute;
|
2019-02-15 10:48:07 +08:00
|
|
|
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} {
|
2018-01-18 10:22:03 +08:00
|
|
|
border-color: @radio-dot-color;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2021-12-02 11:47:13 +08:00
|
|
|
transform: scale((unit(@radio-dot-size) / unit(@radio-size)));
|
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 {
|
2020-10-13 18:32:18 +08:00
|
|
|
cursor: not-allowed;
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{radio-inner-prefix-cls} {
|
2017-04-29 04:04:41 +08:00
|
|
|
background-color: @input-disabled-bg;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-color: @border-color-base !important;
|
2018-12-16 17:46:57 +08:00
|
|
|
cursor: not-allowed;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2019-12-02 12:03:05 +08:00
|
|
|
background-color: @radio-dot-disabled-color;
|
2015-07-16 18:23:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:47:18 +08:00
|
|
|
.@{radio-prefix-cls}-input {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
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-right: 8px;
|
2019-02-15 10:48:07 +08:00
|
|
|
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 {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2017-12-02 16:05:13 +08:00
|
|
|
height: @btn-height-base;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0 @padding-md - 1px;
|
2017-04-22 14:09:25 +08:00
|
|
|
color: @radio-button-color;
|
2020-06-30 15:01:37 +08:00
|
|
|
font-size: @font-size-base;
|
2019-02-15 10:48:07 +08:00
|
|
|
line-height: @btn-height-base - 2px;
|
|
|
|
background: @radio-button-bg;
|
2017-01-31 16:05:10 +08:00
|
|
|
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;
|
2020-03-10 20:29:50 +08:00
|
|
|
border-left-width: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2020-02-16 18:26:11 +08:00
|
|
|
transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
|
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 {
|
2020-07-07 17:57:40 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2020-10-09 18:01:04 +08:00
|
|
|
z-index: -1;
|
2020-07-07 17:57:40 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
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 & {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-lg;
|
2017-12-28 15:41:10 +08:00
|
|
|
font-size: @font-size-lg;
|
2019-02-15 10:48:07 +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-09-27 22:32:49 +08:00
|
|
|
padding: 0 @control-padding-horizontal-sm - 1px;
|
2019-02-15 10:48:07 +08:00
|
|
|
line-height: @input-height-sm - 2px;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
|
2017-06-16 05:53:05 +08:00
|
|
|
&:not(:first-child) {
|
|
|
|
&::before {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: absolute;
|
2020-02-16 18:26:11 +08:00
|
|
|
top: @border-width-base * -1;
|
2017-06-16 05:53:05 +08:00
|
|
|
left: -1px;
|
2019-02-15 10:48:07 +08:00
|
|
|
display: block;
|
2020-02-16 18:26:11 +08:00
|
|
|
box-sizing: content-box;
|
2017-06-16 05:53:05 +08:00
|
|
|
width: 1px;
|
|
|
|
height: 100%;
|
2020-02-16 18:26:11 +08:00
|
|
|
padding: @border-width-base 0;
|
2017-06-16 05:53:05 +08:00
|
|
|
background-color: @border-color-base;
|
2020-02-16 18:26:11 +08:00
|
|
|
transition: background-color 0.3s;
|
2019-02-15 10:48:07 +08:00
|
|
|
content: '';
|
2017-06-16 05:53:05 +08:00
|
|
|
}
|
|
|
|
}
|
2020-02-04 17:01:19 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-left: @border-width-base @border-style-base @border-color-base;
|
2019-02-15 10:48:07 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-01-10 16:55:18 +08:00
|
|
|
&:hover {
|
2016-06-27 17:22:03 +08:00
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @radio-dot-color;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
2019-01-10 16:55:18 +08:00
|
|
|
&:focus-within {
|
2020-02-16 18:26:11 +08:00
|
|
|
box-shadow: @radio-button-focus-shadow;
|
2019-01-10 16:55:18 +08:00
|
|
|
}
|
|
|
|
|
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;
|
2019-02-15 10:48:07 +08:00
|
|
|
opacity: 0;
|
2018-12-26 17:11:11 +08:00
|
|
|
pointer-events: none;
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
2019-07-22 10:47:49 +08:00
|
|
|
&-checked:not(&-disabled) {
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: 1;
|
|
|
|
color: @radio-dot-color;
|
2019-03-20 16:46:23 +08:00
|
|
|
background: @radio-button-checked-bg;
|
2018-01-18 10:22:03 +08:00
|
|
|
border-color: @radio-dot-color;
|
2019-07-22 10:47:49 +08:00
|
|
|
|
2017-06-16 05:53:05 +08:00
|
|
|
&::before {
|
2020-02-16 18:26:11 +08:00
|
|
|
background-color: @radio-dot-color;
|
2017-06-16 05:53:05 +08:00
|
|
|
}
|
2019-07-22 10:47:49 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child {
|
2018-01-18 10:22:03 +08:00
|
|
|
border-color: @radio-dot-color;
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:hover {
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @radio-button-hover-color;
|
2018-01-18 10:22:03 +08:00
|
|
|
border-color: @radio-button-hover-color;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-02-16 18:26:11 +08:00
|
|
|
&::before {
|
|
|
|
background-color: @radio-button-hover-color;
|
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:active {
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @radio-button-active-color;
|
2018-01-18 10:22:03 +08:00
|
|
|
border-color: @radio-button-active-color;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-02-16 18:26:11 +08:00
|
|
|
&::before {
|
|
|
|
background-color: @radio-button-active-color;
|
|
|
|
}
|
2015-08-21 19:16:03 +08:00
|
|
|
}
|
2019-01-10 16:55:18 +08:00
|
|
|
|
|
|
|
&:focus-within {
|
2020-02-16 18:26:11 +08:00
|
|
|
box-shadow: @radio-button-focus-shadow;
|
2019-01-10 16:55:18 +08:00
|
|
|
}
|
2016-06-27 17:22:03 +08:00
|
|
|
}
|
|
|
|
|
2018-06-28 14:59:19 +08:00
|
|
|
.@{radio-group-prefix-cls}-solid &-checked:not(&-disabled) {
|
2020-04-01 11:13:08 +08:00
|
|
|
color: @radio-solid-checked-color;
|
2018-06-28 14:59:19 +08:00
|
|
|
background: @radio-dot-color;
|
|
|
|
border-color: @radio-dot-color;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2018-06-28 14:59:19 +08:00
|
|
|
&:hover {
|
2020-04-01 11:13:08 +08:00
|
|
|
color: @radio-solid-checked-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
background: @radio-button-hover-color;
|
|
|
|
border-color: @radio-button-hover-color;
|
2018-06-28 14:59:19 +08:00
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2018-06-28 14:59:19 +08:00
|
|
|
&:active {
|
2020-04-01 11:13:08 +08:00
|
|
|
color: @radio-solid-checked-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
background: @radio-button-active-color;
|
|
|
|
border-color: @radio-button-active-color;
|
2018-06-28 14:59:19 +08:00
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2019-01-10 16:55:18 +08:00
|
|
|
&:focus-within {
|
2020-02-16 18:26:11 +08:00
|
|
|
box-shadow: @radio-button-focus-shadow;
|
2019-01-10 16:55:18 +08:00
|
|
|
}
|
2018-06-28 14:59:19 +08:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&-disabled {
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @disabled-color;
|
2017-04-29 04:04:41 +08:00
|
|
|
background-color: @input-disabled-bg;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-color: @border-color-base;
|
2016-06-27 17:22:03 +08:00
|
|
|
cursor: not-allowed;
|
2015-11-06 22:03:09 +08:00
|
|
|
|
2016-06-27 17:22:03 +08:00
|
|
|
&:first-child,
|
|
|
|
&:hover {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
background-color: @input-disabled-bg;
|
|
|
|
border-color: @border-color-base;
|
2015-11-06 22:03:09 +08:00
|
|
|
}
|
2021-10-13 15:38:59 +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 {
|
2019-11-27 19:50:53 +08:00
|
|
|
color: @radio-disabled-button-checked-color;
|
|
|
|
background-color: @radio-disabled-button-checked-bg;
|
2016-06-27 17:22:03 +08:00
|
|
|
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
|
|
|
}
|
2017-07-02 19:14:56 +08:00
|
|
|
|
|
|
|
@keyframes antRadioEffect {
|
|
|
|
0% {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2017-07-02 19:14:56 +08:00
|
|
|
100% {
|
|
|
|
transform: scale(1.6);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-08-11 20:51:03 +08:00
|
|
|
|
2020-03-19 19:53:24 +08:00
|
|
|
@import './rtl';
|