rsuite 5.55.1 → 5.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AutoComplete/styles/index.css +3 -3
- package/CHANGELOG.md +17 -0
- package/Cascader/styles/index.css +3 -3
- package/CheckPicker/styles/index.css +142 -40
- package/CheckPicker/styles/index.less +1 -1
- package/CheckTree/styles/index.css +143 -41
- package/CheckTreePicker/styles/index.css +143 -41
- package/CheckTreePicker/styles/index.less +2 -2
- package/Checkbox/styles/index.css +159 -36
- package/Checkbox/styles/index.less +32 -13
- package/DatePicker/styles/index.css +3 -3
- package/DateRangePicker/styles/index.css +3 -3
- package/InputPicker/styles/index.css +3 -3
- package/MultiCascader/styles/index.css +141 -39
- package/Pagination/styles/index.css +3 -3
- package/Radio/styles/index.css +133 -19
- package/Radio/styles/index.less +28 -12
- package/RadioGroup/styles/index.css +1 -1
- package/RadioGroup/styles/index.less +1 -1
- package/SelectPicker/styles/index.css +3 -3
- package/TagGroup/styles/index.css +1 -1
- package/TagGroup/styles/index.less +1 -1
- package/TagInput/styles/index.css +141 -39
- package/TagPicker/styles/index.css +141 -39
- package/cjs/Checkbox/Checkbox.d.ts +67 -25
- package/cjs/Checkbox/Checkbox.js +36 -26
- package/cjs/InputPicker/InputPicker.js +2 -2
- package/cjs/InputPicker/InputPickerContext.d.ts +1 -1
- package/cjs/MultiCascader/TreeView.js +2 -1
- package/cjs/Radio/Radio.d.ts +42 -16
- package/cjs/Radio/Radio.js +42 -37
- package/cjs/RadioGroup/RadioGroup.d.ts +1 -1
- package/cjs/RadioGroup/RadioGroup.js +3 -3
- package/cjs/TagPicker/index.js +1 -1
- package/cjs/internals/Picker/ListCheckItem.d.ts +2 -11
- package/cjs/internals/Picker/ListCheckItem.js +8 -6
- package/dist/rsuite-no-reset-rtl.css +258 -63
- package/dist/rsuite-no-reset-rtl.min.css +1 -1
- package/dist/rsuite-no-reset-rtl.min.css.map +1 -1
- package/dist/rsuite-no-reset.css +258 -63
- package/dist/rsuite-no-reset.min.css +1 -1
- package/dist/rsuite-no-reset.min.css.map +1 -1
- package/dist/rsuite-rtl.css +258 -63
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +258 -63
- package/dist/rsuite.js +7 -7
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/Checkbox/Checkbox.d.ts +67 -25
- package/esm/Checkbox/Checkbox.js +38 -28
- package/esm/InputPicker/InputPicker.js +2 -2
- package/esm/InputPicker/InputPickerContext.d.ts +1 -1
- package/esm/MultiCascader/TreeView.js +2 -1
- package/esm/Radio/Radio.d.ts +42 -16
- package/esm/Radio/Radio.js +43 -38
- package/esm/RadioGroup/RadioGroup.d.ts +1 -1
- package/esm/RadioGroup/RadioGroup.js +5 -5
- package/esm/TagPicker/index.js +1 -1
- package/esm/internals/Picker/ListCheckItem.d.ts +2 -11
- package/esm/internals/Picker/ListCheckItem.js +8 -6
- package/internals/Picker/styles/index.less +1 -1
- package/package.json +1 -1
|
@@ -3897,17 +3897,16 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3897
3897
|
line-height: 1;
|
|
3898
3898
|
position: relative;
|
|
3899
3899
|
}
|
|
3900
|
-
.rs-checkbox-
|
|
3901
|
-
.rs-checkbox-
|
|
3902
|
-
.rs-checkbox-
|
|
3903
|
-
.rs-checkbox-wrapper .rs-checkbox-inner::after {
|
|
3900
|
+
.rs-checkbox-control::before,
|
|
3901
|
+
.rs-checkbox-control .rs-checkbox-inner::before,
|
|
3902
|
+
.rs-checkbox-control .rs-checkbox-inner::after {
|
|
3904
3903
|
content: '';
|
|
3905
3904
|
position: absolute;
|
|
3906
3905
|
left: 0;
|
|
3907
3906
|
top: 0;
|
|
3908
3907
|
display: block;
|
|
3909
3908
|
}
|
|
3910
|
-
.rs-checkbox-
|
|
3909
|
+
.rs-checkbox-control .rs-checkbox-inner::after {
|
|
3911
3910
|
opacity: 0;
|
|
3912
3911
|
-webkit-transform: rotate(45deg) scale(0);
|
|
3913
3912
|
transform: rotate(45deg) scale(0);
|
|
@@ -3916,12 +3915,12 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3916
3915
|
transition: opacity 0.2s ease-in, transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
|
|
3917
3916
|
transition: opacity 0.2s ease-in, transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46), -webkit-transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
|
|
3918
3917
|
}
|
|
3919
|
-
.rs-theme-high-contrast .rs-checkbox-
|
|
3918
|
+
.rs-theme-high-contrast .rs-checkbox-control .rs-checkbox-inner::after {
|
|
3920
3919
|
-webkit-transition: none;
|
|
3921
3920
|
transition: none;
|
|
3922
3921
|
}
|
|
3923
|
-
.rs-checkbox-checked .rs-checkbox-
|
|
3924
|
-
.rs-checkbox-indeterminate .rs-checkbox-
|
|
3922
|
+
.rs-checkbox-checked .rs-checkbox-control .rs-checkbox-inner::after,
|
|
3923
|
+
.rs-checkbox-indeterminate .rs-checkbox-control .rs-checkbox-inner::after {
|
|
3925
3924
|
border: solid #fff;
|
|
3926
3925
|
border: solid var(--rs-checkbox-icon);
|
|
3927
3926
|
width: 6px;
|
|
@@ -3930,12 +3929,12 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3930
3929
|
margin-left: 5px;
|
|
3931
3930
|
opacity: 1;
|
|
3932
3931
|
}
|
|
3933
|
-
.rs-checkbox-checked .rs-checkbox-
|
|
3932
|
+
.rs-checkbox-checked .rs-checkbox-control .rs-checkbox-inner::after {
|
|
3934
3933
|
border-width: 0 2px 2px 0;
|
|
3935
3934
|
-webkit-transform: rotate(45deg) scale(1);
|
|
3936
3935
|
transform: rotate(45deg) scale(1);
|
|
3937
3936
|
}
|
|
3938
|
-
.rs-checkbox-indeterminate .rs-checkbox-
|
|
3937
|
+
.rs-checkbox-indeterminate .rs-checkbox-control .rs-checkbox-inner::after {
|
|
3939
3938
|
border-width: 0 0 2px;
|
|
3940
3939
|
-webkit-transform: rotate(0deg) scale(1);
|
|
3941
3940
|
transform: rotate(0deg) scale(1);
|
|
@@ -3944,7 +3943,7 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3944
3943
|
margin-left: 3px;
|
|
3945
3944
|
}
|
|
3946
3945
|
/* stylelint-disable-next-line */
|
|
3947
|
-
.rs-checkbox-
|
|
3946
|
+
.rs-checkbox-control {
|
|
3948
3947
|
position: absolute;
|
|
3949
3948
|
width: 16px;
|
|
3950
3949
|
height: 16px;
|
|
@@ -3952,18 +3951,22 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3952
3951
|
right: 10px;
|
|
3953
3952
|
top: 10px;
|
|
3954
3953
|
}
|
|
3955
|
-
.rs-checkbox-
|
|
3956
|
-
|
|
3957
|
-
height: 0;
|
|
3954
|
+
.rs-checkbox-control [type='checkbox'] {
|
|
3955
|
+
position: absolute;
|
|
3958
3956
|
opacity: 0;
|
|
3957
|
+
z-index: 1;
|
|
3958
|
+
top: -10px;
|
|
3959
|
+
left: -10px;
|
|
3960
|
+
bottom: -10px;
|
|
3961
|
+
right: -10px;
|
|
3959
3962
|
}
|
|
3960
|
-
.rs-checkbox-
|
|
3961
|
-
.rs-checkbox-
|
|
3962
|
-
.rs-checkbox-
|
|
3963
|
+
.rs-checkbox-control::before,
|
|
3964
|
+
.rs-checkbox-control .rs-checkbox-inner::before,
|
|
3965
|
+
.rs-checkbox-control .rs-checkbox-inner::after {
|
|
3963
3966
|
width: 16px;
|
|
3964
3967
|
height: 16px;
|
|
3965
3968
|
}
|
|
3966
|
-
.rs-checkbox-
|
|
3969
|
+
.rs-checkbox-control::before {
|
|
3967
3970
|
border: 1px solid #3498ff;
|
|
3968
3971
|
border: 1px solid var(--rs-checkbox-checked-bg);
|
|
3969
3972
|
background-color: transparent;
|
|
@@ -3977,23 +3980,17 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3977
3980
|
transition: transform 0.2s linear, opacity 0.2s linear;
|
|
3978
3981
|
transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear;
|
|
3979
3982
|
}
|
|
3980
|
-
.rs-theme-high-contrast .rs-checkbox-
|
|
3983
|
+
.rs-theme-high-contrast .rs-checkbox-control::before {
|
|
3981
3984
|
-webkit-transition: none;
|
|
3982
3985
|
transition: none;
|
|
3983
3986
|
}
|
|
3984
|
-
.rs-checkbox-checked .rs-checkbox-
|
|
3987
|
+
.rs-checkbox-checked .rs-checkbox-control::before {
|
|
3985
3988
|
-webkit-transform: scale(1.5);
|
|
3986
3989
|
transform: scale(1.5);
|
|
3987
3990
|
opacity: 0;
|
|
3988
3991
|
visibility: visible;
|
|
3989
3992
|
}
|
|
3990
|
-
.rs-checkbox-
|
|
3991
|
-
top: -10px;
|
|
3992
|
-
left: -10px;
|
|
3993
|
-
bottom: -10px;
|
|
3994
|
-
right: -10px;
|
|
3995
|
-
}
|
|
3996
|
-
.rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
3993
|
+
.rs-checkbox-control .rs-checkbox-inner::before {
|
|
3997
3994
|
border: 1px solid #d9d9d9;
|
|
3998
3995
|
border: 1px solid var(--rs-checkbox-border);
|
|
3999
3996
|
background-color: transparent;
|
|
@@ -4003,35 +4000,140 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
4003
4000
|
transition: background 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
|
|
4004
4001
|
transition: background 0.2s linear, border 0.2s linear, box-shadow 0.2s linear, -webkit-box-shadow 0.2s linear;
|
|
4005
4002
|
}
|
|
4006
|
-
.rs-theme-high-contrast .rs-checkbox-
|
|
4003
|
+
.rs-theme-high-contrast .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4007
4004
|
-webkit-transition: none;
|
|
4008
4005
|
transition: none;
|
|
4009
4006
|
}
|
|
4010
|
-
label:hover .rs-checkbox-
|
|
4007
|
+
label:hover .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4011
4008
|
border-color: #3498ff;
|
|
4012
4009
|
border-color: var(--rs-checkbox-checked-bg);
|
|
4013
4010
|
}
|
|
4014
|
-
.rs-checkbox-disabled:not(.rs-checkbox-checked):not(.rs-checkbox-indeterminate) .rs-checkbox-
|
|
4011
|
+
.rs-checkbox-disabled:not(.rs-checkbox-checked):not(.rs-checkbox-indeterminate) .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4015
4012
|
border-color: #f7f7fa;
|
|
4016
4013
|
border-color: var(--rs-checkbox-disabled-bg);
|
|
4017
4014
|
background-color: #f7f7fa;
|
|
4018
4015
|
background-color: var(--rs-checkbox-disabled-bg);
|
|
4019
4016
|
}
|
|
4020
|
-
.rs-checkbox-checked .rs-checkbox-
|
|
4021
|
-
.rs-checkbox-indeterminate .rs-checkbox-
|
|
4017
|
+
.rs-checkbox-checked .rs-checkbox-control .rs-checkbox-inner::before,
|
|
4018
|
+
.rs-checkbox-indeterminate .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4022
4019
|
border-color: #3498ff;
|
|
4023
4020
|
border-color: var(--rs-checkbox-checked-bg);
|
|
4024
4021
|
background-color: #3498ff;
|
|
4025
4022
|
background-color: var(--rs-checkbox-checked-bg);
|
|
4026
4023
|
}
|
|
4027
|
-
.rs-checkbox-disabled.rs-checkbox-checked .rs-checkbox-
|
|
4028
|
-
.rs-checkbox-disabled.rs-checkbox-indeterminate .rs-checkbox-
|
|
4024
|
+
.rs-checkbox-disabled.rs-checkbox-checked .rs-checkbox-control .rs-checkbox-inner::before,
|
|
4025
|
+
.rs-checkbox-disabled.rs-checkbox-indeterminate .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4029
4026
|
opacity: 0.3;
|
|
4030
4027
|
}
|
|
4031
|
-
.rs-theme-high-contrast .rs-checkbox-disabled.rs-checkbox-checked .rs-checkbox-
|
|
4032
|
-
.rs-theme-high-contrast .rs-checkbox-disabled.rs-checkbox-indeterminate .rs-checkbox-
|
|
4028
|
+
.rs-theme-high-contrast .rs-checkbox-disabled.rs-checkbox-checked .rs-checkbox-control .rs-checkbox-inner::before,
|
|
4029
|
+
.rs-theme-high-contrast .rs-checkbox-disabled.rs-checkbox-indeterminate .rs-checkbox-control .rs-checkbox-inner::before {
|
|
4033
4030
|
opacity: 0.5;
|
|
4034
4031
|
}
|
|
4032
|
+
.rs-checkbox-red .rs-checkbox-control::before {
|
|
4033
|
+
border-color: #f44336;
|
|
4034
|
+
border-color: var(--rs-red-500);
|
|
4035
|
+
}
|
|
4036
|
+
.rs-checkbox-red label:hover .rs-checkbox-inner::before {
|
|
4037
|
+
border-color: #f44336;
|
|
4038
|
+
border-color: var(--rs-red-500);
|
|
4039
|
+
}
|
|
4040
|
+
.rs-checkbox-red.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4041
|
+
.rs-checkbox-red.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4042
|
+
border-color: #f44336;
|
|
4043
|
+
border-color: var(--rs-red-500);
|
|
4044
|
+
background-color: #f44336;
|
|
4045
|
+
background-color: var(--rs-red-500);
|
|
4046
|
+
}
|
|
4047
|
+
.rs-checkbox-orange .rs-checkbox-control::before {
|
|
4048
|
+
border-color: #fa8900;
|
|
4049
|
+
border-color: var(--rs-orange-500);
|
|
4050
|
+
}
|
|
4051
|
+
.rs-checkbox-orange label:hover .rs-checkbox-inner::before {
|
|
4052
|
+
border-color: #fa8900;
|
|
4053
|
+
border-color: var(--rs-orange-500);
|
|
4054
|
+
}
|
|
4055
|
+
.rs-checkbox-orange.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4056
|
+
.rs-checkbox-orange.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4057
|
+
border-color: #fa8900;
|
|
4058
|
+
border-color: var(--rs-orange-500);
|
|
4059
|
+
background-color: #fa8900;
|
|
4060
|
+
background-color: var(--rs-orange-500);
|
|
4061
|
+
}
|
|
4062
|
+
.rs-checkbox-yellow .rs-checkbox-control::before {
|
|
4063
|
+
border-color: #ffb300;
|
|
4064
|
+
border-color: var(--rs-yellow-500);
|
|
4065
|
+
}
|
|
4066
|
+
.rs-checkbox-yellow label:hover .rs-checkbox-inner::before {
|
|
4067
|
+
border-color: #ffb300;
|
|
4068
|
+
border-color: var(--rs-yellow-500);
|
|
4069
|
+
}
|
|
4070
|
+
.rs-checkbox-yellow.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4071
|
+
.rs-checkbox-yellow.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4072
|
+
border-color: #ffb300;
|
|
4073
|
+
border-color: var(--rs-yellow-500);
|
|
4074
|
+
background-color: #ffb300;
|
|
4075
|
+
background-color: var(--rs-yellow-500);
|
|
4076
|
+
}
|
|
4077
|
+
.rs-checkbox-green .rs-checkbox-control::before {
|
|
4078
|
+
border-color: #4caf50;
|
|
4079
|
+
border-color: var(--rs-green-500);
|
|
4080
|
+
}
|
|
4081
|
+
.rs-checkbox-green label:hover .rs-checkbox-inner::before {
|
|
4082
|
+
border-color: #4caf50;
|
|
4083
|
+
border-color: var(--rs-green-500);
|
|
4084
|
+
}
|
|
4085
|
+
.rs-checkbox-green.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4086
|
+
.rs-checkbox-green.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4087
|
+
border-color: #4caf50;
|
|
4088
|
+
border-color: var(--rs-green-500);
|
|
4089
|
+
background-color: #4caf50;
|
|
4090
|
+
background-color: var(--rs-green-500);
|
|
4091
|
+
}
|
|
4092
|
+
.rs-checkbox-cyan .rs-checkbox-control::before {
|
|
4093
|
+
border-color: #00bcd4;
|
|
4094
|
+
border-color: var(--rs-cyan-500);
|
|
4095
|
+
}
|
|
4096
|
+
.rs-checkbox-cyan label:hover .rs-checkbox-inner::before {
|
|
4097
|
+
border-color: #00bcd4;
|
|
4098
|
+
border-color: var(--rs-cyan-500);
|
|
4099
|
+
}
|
|
4100
|
+
.rs-checkbox-cyan.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4101
|
+
.rs-checkbox-cyan.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4102
|
+
border-color: #00bcd4;
|
|
4103
|
+
border-color: var(--rs-cyan-500);
|
|
4104
|
+
background-color: #00bcd4;
|
|
4105
|
+
background-color: var(--rs-cyan-500);
|
|
4106
|
+
}
|
|
4107
|
+
.rs-checkbox-blue .rs-checkbox-control::before {
|
|
4108
|
+
border-color: #2196f3;
|
|
4109
|
+
border-color: var(--rs-blue-500);
|
|
4110
|
+
}
|
|
4111
|
+
.rs-checkbox-blue label:hover .rs-checkbox-inner::before {
|
|
4112
|
+
border-color: #2196f3;
|
|
4113
|
+
border-color: var(--rs-blue-500);
|
|
4114
|
+
}
|
|
4115
|
+
.rs-checkbox-blue.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4116
|
+
.rs-checkbox-blue.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4117
|
+
border-color: #2196f3;
|
|
4118
|
+
border-color: var(--rs-blue-500);
|
|
4119
|
+
background-color: #2196f3;
|
|
4120
|
+
background-color: var(--rs-blue-500);
|
|
4121
|
+
}
|
|
4122
|
+
.rs-checkbox-violet .rs-checkbox-control::before {
|
|
4123
|
+
border-color: #673ab7;
|
|
4124
|
+
border-color: var(--rs-violet-500);
|
|
4125
|
+
}
|
|
4126
|
+
.rs-checkbox-violet label:hover .rs-checkbox-inner::before {
|
|
4127
|
+
border-color: #673ab7;
|
|
4128
|
+
border-color: var(--rs-violet-500);
|
|
4129
|
+
}
|
|
4130
|
+
.rs-checkbox-violet.rs-checkbox-checked .rs-checkbox-inner::before,
|
|
4131
|
+
.rs-checkbox-violet.rs-checkbox-indeterminate .rs-checkbox-inner::before {
|
|
4132
|
+
border-color: #673ab7;
|
|
4133
|
+
border-color: var(--rs-violet-500);
|
|
4134
|
+
background-color: #673ab7;
|
|
4135
|
+
background-color: var(--rs-violet-500);
|
|
4136
|
+
}
|
|
4035
4137
|
.rs-checkbox-group {
|
|
4036
4138
|
display: -webkit-box;
|
|
4037
4139
|
display: -ms-flexbox;
|
|
@@ -4092,7 +4194,7 @@ label:hover .rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
|
4092
4194
|
.rs-picker-check-menu-items.rs-picker-check-menu-grouped .rs-check-item .rs-checkbox-checker > label {
|
|
4093
4195
|
padding-right: 52px;
|
|
4094
4196
|
}
|
|
4095
|
-
.rs-picker-check-menu-items.rs-picker-check-menu-grouped .rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
4197
|
+
.rs-picker-check-menu-items.rs-picker-check-menu-grouped .rs-check-item .rs-checkbox-checker .rs-checkbox-control {
|
|
4096
4198
|
right: 26px;
|
|
4097
4199
|
}
|
|
4098
4200
|
.rs-check-tree {
|
|
@@ -4112,7 +4214,7 @@ label:hover .rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
|
4112
4214
|
margin: 0;
|
|
4113
4215
|
padding: 1px 42px 1px 0;
|
|
4114
4216
|
}
|
|
4115
|
-
.rs-check-tree .rs-check-tree-node-label .rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
4217
|
+
.rs-check-tree .rs-check-tree-node-label .rs-check-item .rs-checkbox-checker .rs-checkbox-control {
|
|
4116
4218
|
right: 20px;
|
|
4117
4219
|
}
|
|
4118
4220
|
.rs-check-tree .rs-check-tree-node-label .rs-check-item .rs-checkbox-checker .rs-check-tree-node-label-content {
|
|
@@ -4133,7 +4235,7 @@ label:hover .rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
|
4133
4235
|
width: 28px;
|
|
4134
4236
|
margin-right: -34px;
|
|
4135
4237
|
}
|
|
4136
|
-
.rs-check-tree-without-children .rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
4238
|
+
.rs-check-tree-without-children .rs-check-item .rs-checkbox-checker .rs-checkbox-control {
|
|
4137
4239
|
right: 0;
|
|
4138
4240
|
}
|
|
4139
4241
|
.rs-check-tree-node {
|
|
@@ -11710,7 +11812,7 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
11710
11812
|
line-height: 1;
|
|
11711
11813
|
position: relative;
|
|
11712
11814
|
}
|
|
11713
|
-
.rs-radio-
|
|
11815
|
+
.rs-radio-control {
|
|
11714
11816
|
position: absolute;
|
|
11715
11817
|
width: 16px;
|
|
11716
11818
|
height: 16px;
|
|
@@ -11718,30 +11820,31 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
11718
11820
|
right: 10px;
|
|
11719
11821
|
top: 10px;
|
|
11720
11822
|
}
|
|
11721
|
-
.rs-radio-
|
|
11823
|
+
.rs-radio-control [type='radio'] {
|
|
11722
11824
|
opacity: 0;
|
|
11723
11825
|
position: absolute;
|
|
11724
11826
|
z-index: 1;
|
|
11725
|
-
width: 16px;
|
|
11726
|
-
height: 16px;
|
|
11727
11827
|
cursor: pointer;
|
|
11828
|
+
top: -10px;
|
|
11829
|
+
left: -10px;
|
|
11830
|
+
bottom: -10px;
|
|
11831
|
+
right: -10px;
|
|
11728
11832
|
}
|
|
11729
|
-
.rs-radio-
|
|
11730
|
-
.rs-radio-
|
|
11731
|
-
.rs-radio-
|
|
11732
|
-
.rs-radio-wrapper .rs-radio-inner::after {
|
|
11833
|
+
.rs-radio-control::before,
|
|
11834
|
+
.rs-radio-control .rs-radio-inner::before,
|
|
11835
|
+
.rs-radio-control .rs-radio-inner::after {
|
|
11733
11836
|
content: '';
|
|
11734
11837
|
position: absolute;
|
|
11735
11838
|
right: 0;
|
|
11736
11839
|
top: 0;
|
|
11737
11840
|
display: block;
|
|
11738
11841
|
}
|
|
11739
|
-
.rs-radio-
|
|
11740
|
-
.rs-radio-
|
|
11842
|
+
.rs-radio-control::before,
|
|
11843
|
+
.rs-radio-control .rs-radio-inner::before {
|
|
11741
11844
|
width: 16px;
|
|
11742
11845
|
height: 16px;
|
|
11743
11846
|
}
|
|
11744
|
-
.rs-radio-
|
|
11847
|
+
.rs-radio-control::before {
|
|
11745
11848
|
border: 1px solid #3498ff;
|
|
11746
11849
|
border: 1px solid var(--rs-radio-checked-bg);
|
|
11747
11850
|
background-color: transparent;
|
|
@@ -11755,22 +11858,16 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
11755
11858
|
transition: transform 0.2s linear, opacity 0.2s linear;
|
|
11756
11859
|
transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear;
|
|
11757
11860
|
}
|
|
11758
|
-
.rs-theme-high-contrast .rs-radio-
|
|
11861
|
+
.rs-theme-high-contrast .rs-radio-control::before {
|
|
11759
11862
|
-webkit-transition: none;
|
|
11760
11863
|
transition: none;
|
|
11761
11864
|
}
|
|
11762
|
-
.rs-radio-checked .rs-radio-
|
|
11865
|
+
.rs-radio-checked .rs-radio-control::before {
|
|
11763
11866
|
-webkit-transform: scale(1.5);
|
|
11764
11867
|
transform: scale(1.5);
|
|
11765
11868
|
opacity: 0;
|
|
11766
11869
|
visibility: visible;
|
|
11767
11870
|
}
|
|
11768
|
-
.rs-radio-wrapper::after {
|
|
11769
|
-
top: -10px;
|
|
11770
|
-
left: -10px;
|
|
11771
|
-
bottom: -10px;
|
|
11772
|
-
right: -10px;
|
|
11773
|
-
}
|
|
11774
11871
|
.rs-radio-inner::before {
|
|
11775
11872
|
border: 1px solid #d9d9d9;
|
|
11776
11873
|
border: 1px solid var(--rs-radio-border);
|
|
@@ -11832,6 +11929,104 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
11832
11929
|
transform: scale(1);
|
|
11833
11930
|
opacity: 1;
|
|
11834
11931
|
}
|
|
11932
|
+
.rs-radio-red .rs-radio-control::before {
|
|
11933
|
+
border-color: #f44336;
|
|
11934
|
+
border-color: var(--rs-red-500);
|
|
11935
|
+
}
|
|
11936
|
+
.rs-radio-red label:hover .rs-radio-inner::before {
|
|
11937
|
+
border-color: #f44336;
|
|
11938
|
+
border-color: var(--rs-red-500);
|
|
11939
|
+
}
|
|
11940
|
+
.rs-radio-red.rs-radio-checked .rs-radio-inner::before {
|
|
11941
|
+
border-color: #f44336;
|
|
11942
|
+
border-color: var(--rs-red-500);
|
|
11943
|
+
background-color: #f44336;
|
|
11944
|
+
background-color: var(--rs-red-500);
|
|
11945
|
+
}
|
|
11946
|
+
.rs-radio-orange .rs-radio-control::before {
|
|
11947
|
+
border-color: #fa8900;
|
|
11948
|
+
border-color: var(--rs-orange-500);
|
|
11949
|
+
}
|
|
11950
|
+
.rs-radio-orange label:hover .rs-radio-inner::before {
|
|
11951
|
+
border-color: #fa8900;
|
|
11952
|
+
border-color: var(--rs-orange-500);
|
|
11953
|
+
}
|
|
11954
|
+
.rs-radio-orange.rs-radio-checked .rs-radio-inner::before {
|
|
11955
|
+
border-color: #fa8900;
|
|
11956
|
+
border-color: var(--rs-orange-500);
|
|
11957
|
+
background-color: #fa8900;
|
|
11958
|
+
background-color: var(--rs-orange-500);
|
|
11959
|
+
}
|
|
11960
|
+
.rs-radio-yellow .rs-radio-control::before {
|
|
11961
|
+
border-color: #ffb300;
|
|
11962
|
+
border-color: var(--rs-yellow-500);
|
|
11963
|
+
}
|
|
11964
|
+
.rs-radio-yellow label:hover .rs-radio-inner::before {
|
|
11965
|
+
border-color: #ffb300;
|
|
11966
|
+
border-color: var(--rs-yellow-500);
|
|
11967
|
+
}
|
|
11968
|
+
.rs-radio-yellow.rs-radio-checked .rs-radio-inner::before {
|
|
11969
|
+
border-color: #ffb300;
|
|
11970
|
+
border-color: var(--rs-yellow-500);
|
|
11971
|
+
background-color: #ffb300;
|
|
11972
|
+
background-color: var(--rs-yellow-500);
|
|
11973
|
+
}
|
|
11974
|
+
.rs-radio-green .rs-radio-control::before {
|
|
11975
|
+
border-color: #4caf50;
|
|
11976
|
+
border-color: var(--rs-green-500);
|
|
11977
|
+
}
|
|
11978
|
+
.rs-radio-green label:hover .rs-radio-inner::before {
|
|
11979
|
+
border-color: #4caf50;
|
|
11980
|
+
border-color: var(--rs-green-500);
|
|
11981
|
+
}
|
|
11982
|
+
.rs-radio-green.rs-radio-checked .rs-radio-inner::before {
|
|
11983
|
+
border-color: #4caf50;
|
|
11984
|
+
border-color: var(--rs-green-500);
|
|
11985
|
+
background-color: #4caf50;
|
|
11986
|
+
background-color: var(--rs-green-500);
|
|
11987
|
+
}
|
|
11988
|
+
.rs-radio-cyan .rs-radio-control::before {
|
|
11989
|
+
border-color: #00bcd4;
|
|
11990
|
+
border-color: var(--rs-cyan-500);
|
|
11991
|
+
}
|
|
11992
|
+
.rs-radio-cyan label:hover .rs-radio-inner::before {
|
|
11993
|
+
border-color: #00bcd4;
|
|
11994
|
+
border-color: var(--rs-cyan-500);
|
|
11995
|
+
}
|
|
11996
|
+
.rs-radio-cyan.rs-radio-checked .rs-radio-inner::before {
|
|
11997
|
+
border-color: #00bcd4;
|
|
11998
|
+
border-color: var(--rs-cyan-500);
|
|
11999
|
+
background-color: #00bcd4;
|
|
12000
|
+
background-color: var(--rs-cyan-500);
|
|
12001
|
+
}
|
|
12002
|
+
.rs-radio-blue .rs-radio-control::before {
|
|
12003
|
+
border-color: #2196f3;
|
|
12004
|
+
border-color: var(--rs-blue-500);
|
|
12005
|
+
}
|
|
12006
|
+
.rs-radio-blue label:hover .rs-radio-inner::before {
|
|
12007
|
+
border-color: #2196f3;
|
|
12008
|
+
border-color: var(--rs-blue-500);
|
|
12009
|
+
}
|
|
12010
|
+
.rs-radio-blue.rs-radio-checked .rs-radio-inner::before {
|
|
12011
|
+
border-color: #2196f3;
|
|
12012
|
+
border-color: var(--rs-blue-500);
|
|
12013
|
+
background-color: #2196f3;
|
|
12014
|
+
background-color: var(--rs-blue-500);
|
|
12015
|
+
}
|
|
12016
|
+
.rs-radio-violet .rs-radio-control::before {
|
|
12017
|
+
border-color: #673ab7;
|
|
12018
|
+
border-color: var(--rs-violet-500);
|
|
12019
|
+
}
|
|
12020
|
+
.rs-radio-violet label:hover .rs-radio-inner::before {
|
|
12021
|
+
border-color: #673ab7;
|
|
12022
|
+
border-color: var(--rs-violet-500);
|
|
12023
|
+
}
|
|
12024
|
+
.rs-radio-violet.rs-radio-checked .rs-radio-inner::before {
|
|
12025
|
+
border-color: #673ab7;
|
|
12026
|
+
border-color: var(--rs-violet-500);
|
|
12027
|
+
background-color: #673ab7;
|
|
12028
|
+
background-color: var(--rs-violet-500);
|
|
12029
|
+
}
|
|
11835
12030
|
.rs-radio-group {
|
|
11836
12031
|
display: -webkit-box;
|
|
11837
12032
|
display: -ms-flexbox;
|
|
@@ -11874,7 +12069,7 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
11874
12069
|
padding: 0;
|
|
11875
12070
|
min-height: auto;
|
|
11876
12071
|
}
|
|
11877
|
-
.rs-radio-group-picker .rs-radio-
|
|
12072
|
+
.rs-radio-group-picker .rs-radio-control {
|
|
11878
12073
|
display: none;
|
|
11879
12074
|
}
|
|
11880
12075
|
.rs-radio-group-picker .rs-radio-checker > label {
|
|
@@ -13722,7 +13917,7 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
13722
13917
|
.rs-tag-group {
|
|
13723
13918
|
margin: -10px -10px 0 0;
|
|
13724
13919
|
}
|
|
13725
|
-
.rs-tag-group >
|
|
13920
|
+
.rs-tag-group > .rs-tag {
|
|
13726
13921
|
margin-top: 10px;
|
|
13727
13922
|
margin-right: 10px;
|
|
13728
13923
|
}
|
|
@@ -16779,11 +16974,11 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
16779
16974
|
.rs-picker-check-menu-group-children .rs-check-item .rs-checkbox-checker > label {
|
|
16780
16975
|
padding-right: 52px;
|
|
16781
16976
|
}
|
|
16782
|
-
.rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
16977
|
+
.rs-check-item .rs-checkbox-checker .rs-checkbox-control {
|
|
16783
16978
|
right: 12px;
|
|
16784
16979
|
}
|
|
16785
|
-
.grouped .rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
16786
|
-
.rs-picker-check-menu-group-children .rs-check-item .rs-checkbox-checker .rs-checkbox-
|
|
16980
|
+
.grouped .rs-check-item .rs-checkbox-checker .rs-checkbox-control,
|
|
16981
|
+
.rs-picker-check-menu-group-children .rs-check-item .rs-checkbox-checker .rs-checkbox-control {
|
|
16787
16982
|
right: 26px;
|
|
16788
16983
|
}
|
|
16789
16984
|
.rs-search-box {
|