@jiaozhiye/qm-design-react 1.6.7 → 1.7.1
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/lib/antd/DatePicker.d.ts +43 -6
- package/lib/antd/TimePicker.d.ts +2 -0
- package/lib/form/src/fields-filter.d.ts +1 -1
- package/lib/index.esm.js +1 -3
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -3
- package/lib/locale/index.js +0 -6
- package/lib/style/compact.css +497 -82
- package/lib/style/compact.min.css +1 -1
- package/lib/style/index.css +499 -980
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -0
- package/lib/table/src/hooks/useTableRef.d.ts +3 -0
- package/lib/tabs/src/tabs.d.ts +1 -0
- package/package.json +3 -3
package/lib/style/compact.css
CHANGED
|
@@ -681,6 +681,8 @@ html {
|
|
|
681
681
|
}
|
|
682
682
|
.ant-slide-up-enter,
|
|
683
683
|
.ant-slide-up-appear {
|
|
684
|
+
transform: scale(0);
|
|
685
|
+
transform-origin: 0% 0%;
|
|
684
686
|
opacity: 0;
|
|
685
687
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
686
688
|
}
|
|
@@ -710,6 +712,8 @@ html {
|
|
|
710
712
|
}
|
|
711
713
|
.ant-slide-down-enter,
|
|
712
714
|
.ant-slide-down-appear {
|
|
715
|
+
transform: scale(0);
|
|
716
|
+
transform-origin: 0% 0%;
|
|
713
717
|
opacity: 0;
|
|
714
718
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
715
719
|
}
|
|
@@ -739,6 +743,8 @@ html {
|
|
|
739
743
|
}
|
|
740
744
|
.ant-slide-left-enter,
|
|
741
745
|
.ant-slide-left-appear {
|
|
746
|
+
transform: scale(0);
|
|
747
|
+
transform-origin: 0% 0%;
|
|
742
748
|
opacity: 0;
|
|
743
749
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
744
750
|
}
|
|
@@ -768,6 +774,8 @@ html {
|
|
|
768
774
|
}
|
|
769
775
|
.ant-slide-right-enter,
|
|
770
776
|
.ant-slide-right-appear {
|
|
777
|
+
transform: scale(0);
|
|
778
|
+
transform-origin: 0% 0%;
|
|
771
779
|
opacity: 0;
|
|
772
780
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
773
781
|
}
|
|
@@ -1261,7 +1269,7 @@ html {
|
|
|
1261
1269
|
position: relative;
|
|
1262
1270
|
display: flex;
|
|
1263
1271
|
align-items: center;
|
|
1264
|
-
padding:
|
|
1272
|
+
padding: 4px 7px;
|
|
1265
1273
|
word-wrap: break-word;
|
|
1266
1274
|
border-radius: 2px;
|
|
1267
1275
|
}
|
|
@@ -1446,7 +1454,7 @@ html {
|
|
|
1446
1454
|
transform: translateX(-50%);
|
|
1447
1455
|
transition: top 0.3s ease-in-out;
|
|
1448
1456
|
}
|
|
1449
|
-
.ant-anchor-ink-ball.visible {
|
|
1457
|
+
.ant-anchor-ink-ball.ant-anchor-ink-ball-visible {
|
|
1450
1458
|
display: inline-block;
|
|
1451
1459
|
}
|
|
1452
1460
|
.ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
|
|
@@ -4068,6 +4076,109 @@ a.ant-btn-lg {
|
|
|
4068
4076
|
a.ant-btn-sm {
|
|
4069
4077
|
line-height: 22px;
|
|
4070
4078
|
}
|
|
4079
|
+
.ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
|
|
4080
|
+
margin-right: -1px;
|
|
4081
|
+
}
|
|
4082
|
+
.ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl {
|
|
4083
|
+
margin-left: -1px;
|
|
4084
|
+
}
|
|
4085
|
+
.ant-btn-compact-item:hover,
|
|
4086
|
+
.ant-btn-compact-item:focus,
|
|
4087
|
+
.ant-btn-compact-item:active {
|
|
4088
|
+
z-index: 2;
|
|
4089
|
+
}
|
|
4090
|
+
.ant-btn-compact-item[disabled] {
|
|
4091
|
+
z-index: 0;
|
|
4092
|
+
}
|
|
4093
|
+
.ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn {
|
|
4094
|
+
border-radius: 0;
|
|
4095
|
+
}
|
|
4096
|
+
.ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
|
|
4097
|
+
border-top-right-radius: 0;
|
|
4098
|
+
border-bottom-right-radius: 0;
|
|
4099
|
+
}
|
|
4100
|
+
.ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl) {
|
|
4101
|
+
border-top-left-radius: 0;
|
|
4102
|
+
border-bottom-left-radius: 0;
|
|
4103
|
+
}
|
|
4104
|
+
.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item) {
|
|
4105
|
+
border-top-left-radius: 0;
|
|
4106
|
+
border-bottom-left-radius: 0;
|
|
4107
|
+
}
|
|
4108
|
+
.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item) {
|
|
4109
|
+
border-top-right-radius: 0;
|
|
4110
|
+
border-bottom-right-radius: 0;
|
|
4111
|
+
}
|
|
4112
|
+
.ant-btn-icon-only.ant-btn-compact-item {
|
|
4113
|
+
flex: none;
|
|
4114
|
+
}
|
|
4115
|
+
.ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled]) {
|
|
4116
|
+
position: relative;
|
|
4117
|
+
}
|
|
4118
|
+
.ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled])::after {
|
|
4119
|
+
position: absolute;
|
|
4120
|
+
top: -1px;
|
|
4121
|
+
left: -1px;
|
|
4122
|
+
display: inline-block;
|
|
4123
|
+
width: 1px;
|
|
4124
|
+
height: calc(100% + 1px * 2);
|
|
4125
|
+
background-color: #40a9ff;
|
|
4126
|
+
content: ' ';
|
|
4127
|
+
}
|
|
4128
|
+
.ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
|
|
4129
|
+
border-top-left-radius: 0;
|
|
4130
|
+
border-bottom-left-radius: 0;
|
|
4131
|
+
}
|
|
4132
|
+
.ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item) {
|
|
4133
|
+
border-top-right-radius: 0;
|
|
4134
|
+
border-bottom-right-radius: 0;
|
|
4135
|
+
}
|
|
4136
|
+
.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item) {
|
|
4137
|
+
border-top-left-radius: 0;
|
|
4138
|
+
border-bottom-left-radius: 0;
|
|
4139
|
+
}
|
|
4140
|
+
.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item) {
|
|
4141
|
+
border-top-right-radius: 0;
|
|
4142
|
+
border-bottom-right-radius: 0;
|
|
4143
|
+
}
|
|
4144
|
+
.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled]) + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
|
|
4145
|
+
right: -1px;
|
|
4146
|
+
}
|
|
4147
|
+
.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
|
|
4148
|
+
margin-bottom: -1px;
|
|
4149
|
+
}
|
|
4150
|
+
.ant-btn-compact-vertical-item:hover,
|
|
4151
|
+
.ant-btn-compact-vertical-item:focus,
|
|
4152
|
+
.ant-btn-compact-vertical-item:active {
|
|
4153
|
+
z-index: 2;
|
|
4154
|
+
}
|
|
4155
|
+
.ant-btn-compact-vertical-item[disabled] {
|
|
4156
|
+
z-index: 0;
|
|
4157
|
+
}
|
|
4158
|
+
.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item) {
|
|
4159
|
+
border-radius: 0;
|
|
4160
|
+
}
|
|
4161
|
+
.ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item) {
|
|
4162
|
+
border-bottom-right-radius: 0;
|
|
4163
|
+
border-bottom-left-radius: 0;
|
|
4164
|
+
}
|
|
4165
|
+
.ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item) {
|
|
4166
|
+
border-top-left-radius: 0;
|
|
4167
|
+
border-top-right-radius: 0;
|
|
4168
|
+
}
|
|
4169
|
+
.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) {
|
|
4170
|
+
position: relative;
|
|
4171
|
+
}
|
|
4172
|
+
.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])::after {
|
|
4173
|
+
position: absolute;
|
|
4174
|
+
top: -1px;
|
|
4175
|
+
left: -1px;
|
|
4176
|
+
display: inline-block;
|
|
4177
|
+
width: calc(100% + 1px * 2);
|
|
4178
|
+
height: 1px;
|
|
4179
|
+
background-color: #40a9ff;
|
|
4180
|
+
content: ' ';
|
|
4181
|
+
}
|
|
4071
4182
|
.ant-btn-rtl {
|
|
4072
4183
|
direction: rtl;
|
|
4073
4184
|
}
|
|
@@ -4528,6 +4639,7 @@ a.ant-btn-sm {
|
|
|
4528
4639
|
padding-left: 16px;
|
|
4529
4640
|
}
|
|
4530
4641
|
.ant-card-meta-detail {
|
|
4642
|
+
flex: 1;
|
|
4531
4643
|
overflow: hidden;
|
|
4532
4644
|
}
|
|
4533
4645
|
.ant-card-meta-detail > div:not(:last-child) {
|
|
@@ -4720,6 +4832,7 @@ a.ant-btn-sm {
|
|
|
4720
4832
|
display: flex !important;
|
|
4721
4833
|
justify-content: center;
|
|
4722
4834
|
margin-right: 15%;
|
|
4835
|
+
margin-bottom: 0;
|
|
4723
4836
|
margin-left: 15%;
|
|
4724
4837
|
padding-left: 0;
|
|
4725
4838
|
list-style: none;
|
|
@@ -4738,9 +4851,7 @@ a.ant-btn-sm {
|
|
|
4738
4851
|
box-sizing: content-box;
|
|
4739
4852
|
width: 16px;
|
|
4740
4853
|
height: 3px;
|
|
4741
|
-
margin: 0
|
|
4742
|
-
margin-right: 3px;
|
|
4743
|
-
margin-left: 3px;
|
|
4854
|
+
margin: 0 4px;
|
|
4744
4855
|
padding: 0;
|
|
4745
4856
|
text-align: center;
|
|
4746
4857
|
text-indent: -999px;
|
|
@@ -4748,6 +4859,7 @@ a.ant-btn-sm {
|
|
|
4748
4859
|
transition: all 0.5s;
|
|
4749
4860
|
}
|
|
4750
4861
|
.ant-carousel .slick-dots li button {
|
|
4862
|
+
position: relative;
|
|
4751
4863
|
display: block;
|
|
4752
4864
|
width: 100%;
|
|
4753
4865
|
height: 3px;
|
|
@@ -4766,6 +4878,14 @@ a.ant-btn-sm {
|
|
|
4766
4878
|
.ant-carousel .slick-dots li button:focus {
|
|
4767
4879
|
opacity: 0.75;
|
|
4768
4880
|
}
|
|
4881
|
+
.ant-carousel .slick-dots li button::after {
|
|
4882
|
+
position: absolute;
|
|
4883
|
+
top: -4px;
|
|
4884
|
+
right: -4px;
|
|
4885
|
+
bottom: -4px;
|
|
4886
|
+
left: -4px;
|
|
4887
|
+
content: '';
|
|
4888
|
+
}
|
|
4769
4889
|
.ant-carousel .slick-dots li.slick-active {
|
|
4770
4890
|
width: 24px;
|
|
4771
4891
|
}
|
|
@@ -4797,7 +4917,7 @@ a.ant-btn-sm {
|
|
|
4797
4917
|
.ant-carousel-vertical .slick-dots li {
|
|
4798
4918
|
width: 3px;
|
|
4799
4919
|
height: 16px;
|
|
4800
|
-
margin: 4px
|
|
4920
|
+
margin: 4px 0;
|
|
4801
4921
|
vertical-align: baseline;
|
|
4802
4922
|
}
|
|
4803
4923
|
.ant-carousel-vertical .slick-dots li button {
|
|
@@ -5137,6 +5257,39 @@ a.ant-btn-sm {
|
|
|
5137
5257
|
.ant-cascader-menu-item-keyword {
|
|
5138
5258
|
color: #ff4d4f;
|
|
5139
5259
|
}
|
|
5260
|
+
.ant-cascader-compact-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
|
|
5261
|
+
margin-right: -1px;
|
|
5262
|
+
}
|
|
5263
|
+
.ant-cascader-compact-item:not(.ant-cascader-compact-last-item).ant-cascader-compact-item-rtl {
|
|
5264
|
+
margin-left: -1px;
|
|
5265
|
+
}
|
|
5266
|
+
.ant-cascader-compact-item:hover,
|
|
5267
|
+
.ant-cascader-compact-item:focus,
|
|
5268
|
+
.ant-cascader-compact-item:active {
|
|
5269
|
+
z-index: 2;
|
|
5270
|
+
}
|
|
5271
|
+
.ant-cascader-compact-item[disabled] {
|
|
5272
|
+
z-index: 0;
|
|
5273
|
+
}
|
|
5274
|
+
.ant-cascader-compact-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-last-item).ant-cascader {
|
|
5275
|
+
border-radius: 0;
|
|
5276
|
+
}
|
|
5277
|
+
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
|
|
5278
|
+
border-top-right-radius: 0;
|
|
5279
|
+
border-bottom-right-radius: 0;
|
|
5280
|
+
}
|
|
5281
|
+
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-item-rtl) {
|
|
5282
|
+
border-top-left-radius: 0;
|
|
5283
|
+
border-bottom-left-radius: 0;
|
|
5284
|
+
}
|
|
5285
|
+
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item) {
|
|
5286
|
+
border-top-left-radius: 0;
|
|
5287
|
+
border-bottom-left-radius: 0;
|
|
5288
|
+
}
|
|
5289
|
+
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item) {
|
|
5290
|
+
border-top-right-radius: 0;
|
|
5291
|
+
border-bottom-right-radius: 0;
|
|
5292
|
+
}
|
|
5140
5293
|
.ant-cascader-rtl .ant-cascader-menu-item-expand-icon,
|
|
5141
5294
|
.ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
|
|
5142
5295
|
margin-right: 0px;
|
|
@@ -5416,6 +5569,12 @@ a.ant-btn-sm {
|
|
|
5416
5569
|
flex: none;
|
|
5417
5570
|
cursor: pointer;
|
|
5418
5571
|
}
|
|
5572
|
+
.ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only {
|
|
5573
|
+
cursor: default;
|
|
5574
|
+
}
|
|
5575
|
+
.ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only .ant-collapse-expand-icon {
|
|
5576
|
+
cursor: pointer;
|
|
5577
|
+
}
|
|
5419
5578
|
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
|
|
5420
5579
|
padding-left: 8px;
|
|
5421
5580
|
}
|
|
@@ -6050,6 +6209,42 @@ textarea.ant-picker-input > input {
|
|
|
6050
6209
|
.ant-picker-panel-container .ant-picker-panel-focused {
|
|
6051
6210
|
border-color: #f0f0f0;
|
|
6052
6211
|
}
|
|
6212
|
+
.ant-picker-compact-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
|
|
6213
|
+
margin-right: -1px;
|
|
6214
|
+
}
|
|
6215
|
+
.ant-picker-compact-item:not(.ant-picker-compact-last-item).ant-picker-compact-item-rtl {
|
|
6216
|
+
margin-left: -1px;
|
|
6217
|
+
}
|
|
6218
|
+
.ant-picker-compact-item:hover,
|
|
6219
|
+
.ant-picker-compact-item:focus,
|
|
6220
|
+
.ant-picker-compact-item:active {
|
|
6221
|
+
z-index: 2;
|
|
6222
|
+
}
|
|
6223
|
+
.ant-picker-compact-item.ant-picker-focused {
|
|
6224
|
+
z-index: 2;
|
|
6225
|
+
}
|
|
6226
|
+
.ant-picker-compact-item[disabled] {
|
|
6227
|
+
z-index: 0;
|
|
6228
|
+
}
|
|
6229
|
+
.ant-picker-compact-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-last-item).ant-picker {
|
|
6230
|
+
border-radius: 0;
|
|
6231
|
+
}
|
|
6232
|
+
.ant-picker-compact-item.ant-picker.ant-picker-compact-first-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
|
|
6233
|
+
border-top-right-radius: 0;
|
|
6234
|
+
border-bottom-right-radius: 0;
|
|
6235
|
+
}
|
|
6236
|
+
.ant-picker-compact-item.ant-picker.ant-picker-compact-last-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-item-rtl) {
|
|
6237
|
+
border-top-left-radius: 0;
|
|
6238
|
+
border-bottom-left-radius: 0;
|
|
6239
|
+
}
|
|
6240
|
+
.ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-first-item:not(.ant-picker-compact-last-item) {
|
|
6241
|
+
border-top-left-radius: 0;
|
|
6242
|
+
border-bottom-left-radius: 0;
|
|
6243
|
+
}
|
|
6244
|
+
.ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-last-item:not(.ant-picker-compact-first-item) {
|
|
6245
|
+
border-top-right-radius: 0;
|
|
6246
|
+
border-bottom-right-radius: 0;
|
|
6247
|
+
}
|
|
6053
6248
|
.ant-picker-panel {
|
|
6054
6249
|
display: inline-flex;
|
|
6055
6250
|
flex-direction: column;
|
|
@@ -6851,6 +7046,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6851
7046
|
}
|
|
6852
7047
|
.ant-divider-horizontal.ant-divider-with-text {
|
|
6853
7048
|
display: flex;
|
|
7049
|
+
align-items: center;
|
|
6854
7050
|
margin: 16px 0;
|
|
6855
7051
|
color: rgba(0, 0, 0, 0.85);
|
|
6856
7052
|
font-weight: 500;
|
|
@@ -6863,7 +7059,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6863
7059
|
.ant-divider-horizontal.ant-divider-with-text::before,
|
|
6864
7060
|
.ant-divider-horizontal.ant-divider-with-text::after {
|
|
6865
7061
|
position: relative;
|
|
6866
|
-
top: 50%;
|
|
6867
7062
|
width: 50%;
|
|
6868
7063
|
border-top: 1px solid transparent;
|
|
6869
7064
|
border-top-color: inherit;
|
|
@@ -6872,19 +7067,15 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6872
7067
|
content: '';
|
|
6873
7068
|
}
|
|
6874
7069
|
.ant-divider-horizontal.ant-divider-with-text-left::before {
|
|
6875
|
-
top: 50%;
|
|
6876
7070
|
width: 5%;
|
|
6877
7071
|
}
|
|
6878
7072
|
.ant-divider-horizontal.ant-divider-with-text-left::after {
|
|
6879
|
-
top: 50%;
|
|
6880
7073
|
width: 95%;
|
|
6881
7074
|
}
|
|
6882
7075
|
.ant-divider-horizontal.ant-divider-with-text-right::before {
|
|
6883
|
-
top: 50%;
|
|
6884
7076
|
width: 95%;
|
|
6885
7077
|
}
|
|
6886
7078
|
.ant-divider-horizontal.ant-divider-with-text-right::after {
|
|
6887
|
-
top: 50%;
|
|
6888
7079
|
width: 5%;
|
|
6889
7080
|
}
|
|
6890
7081
|
.ant-divider-inner-text {
|
|
@@ -7026,7 +7217,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7026
7217
|
min-height: 0;
|
|
7027
7218
|
}
|
|
7028
7219
|
.ant-drawer-extra {
|
|
7029
|
-
flex:
|
|
7220
|
+
flex: none;
|
|
7030
7221
|
}
|
|
7031
7222
|
.ant-drawer-close {
|
|
7032
7223
|
display: inline-block;
|
|
@@ -7110,9 +7301,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7110
7301
|
.ant-drawer-panel-motion-left-leave-active {
|
|
7111
7302
|
transition: all 0.3s;
|
|
7112
7303
|
}
|
|
7113
|
-
.ant-drawer-panel-motion-left-enter,
|
|
7114
|
-
.ant-drawer-panel-motion-left-appear {
|
|
7115
|
-
transform: translateX(-100%);
|
|
7304
|
+
.ant-drawer-panel-motion-left-enter-start,
|
|
7305
|
+
.ant-drawer-panel-motion-left-appear-start {
|
|
7306
|
+
transform: translateX(-100%) !important;
|
|
7116
7307
|
}
|
|
7117
7308
|
.ant-drawer-panel-motion-left-enter-active,
|
|
7118
7309
|
.ant-drawer-panel-motion-left-appear-active {
|
|
@@ -7134,9 +7325,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7134
7325
|
.ant-drawer-panel-motion-right-leave-active {
|
|
7135
7326
|
transition: all 0.3s;
|
|
7136
7327
|
}
|
|
7137
|
-
.ant-drawer-panel-motion-right-enter,
|
|
7138
|
-
.ant-drawer-panel-motion-right-appear {
|
|
7139
|
-
transform: translateX(100%);
|
|
7328
|
+
.ant-drawer-panel-motion-right-enter-start,
|
|
7329
|
+
.ant-drawer-panel-motion-right-appear-start {
|
|
7330
|
+
transform: translateX(100%) !important;
|
|
7140
7331
|
}
|
|
7141
7332
|
.ant-drawer-panel-motion-right-enter-active,
|
|
7142
7333
|
.ant-drawer-panel-motion-right-appear-active {
|
|
@@ -7158,9 +7349,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7158
7349
|
.ant-drawer-panel-motion-top-leave-active {
|
|
7159
7350
|
transition: all 0.3s;
|
|
7160
7351
|
}
|
|
7161
|
-
.ant-drawer-panel-motion-top-enter,
|
|
7162
|
-
.ant-drawer-panel-motion-top-appear {
|
|
7163
|
-
transform: translateY(-100%);
|
|
7352
|
+
.ant-drawer-panel-motion-top-enter-start,
|
|
7353
|
+
.ant-drawer-panel-motion-top-appear-start {
|
|
7354
|
+
transform: translateY(-100%) !important;
|
|
7164
7355
|
}
|
|
7165
7356
|
.ant-drawer-panel-motion-top-enter-active,
|
|
7166
7357
|
.ant-drawer-panel-motion-top-appear-active {
|
|
@@ -7182,9 +7373,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7182
7373
|
.ant-drawer-panel-motion-bottom-leave-active {
|
|
7183
7374
|
transition: all 0.3s;
|
|
7184
7375
|
}
|
|
7185
|
-
.ant-drawer-panel-motion-bottom-enter,
|
|
7186
|
-
.ant-drawer-panel-motion-bottom-appear {
|
|
7187
|
-
transform: translateY(100%);
|
|
7376
|
+
.ant-drawer-panel-motion-bottom-enter-start,
|
|
7377
|
+
.ant-drawer-panel-motion-bottom-appear-start {
|
|
7378
|
+
transform: translateY(100%) !important;
|
|
7188
7379
|
}
|
|
7189
7380
|
.ant-drawer-panel-motion-bottom-enter-active,
|
|
7190
7381
|
.ant-drawer-panel-motion-bottom-appear-active {
|
|
@@ -7404,19 +7595,25 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7404
7595
|
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-active {
|
|
7405
7596
|
background-color: #f5f5f5;
|
|
7406
7597
|
}
|
|
7407
|
-
.ant-dropdown-menu-item-disabled,
|
|
7408
|
-
.ant-dropdown-menu-submenu-title-disabled
|
|
7598
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
|
|
7599
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled,
|
|
7600
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
|
|
7601
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled {
|
|
7409
7602
|
color: rgba(0, 0, 0, 0.25);
|
|
7410
7603
|
cursor: not-allowed;
|
|
7411
7604
|
}
|
|
7412
|
-
.ant-dropdown-menu-item-disabled:hover,
|
|
7413
|
-
.ant-dropdown-menu-submenu-title-disabled:hover
|
|
7605
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled:hover,
|
|
7606
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled:hover,
|
|
7607
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled:hover,
|
|
7608
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled:hover {
|
|
7414
7609
|
color: rgba(0, 0, 0, 0.25);
|
|
7415
7610
|
background-color: #fff;
|
|
7416
7611
|
cursor: not-allowed;
|
|
7417
7612
|
}
|
|
7418
|
-
.ant-dropdown-menu-item-disabled a,
|
|
7419
|
-
.ant-dropdown-menu-submenu-title-disabled a
|
|
7613
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled a,
|
|
7614
|
+
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled a,
|
|
7615
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled a,
|
|
7616
|
+
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled a {
|
|
7420
7617
|
pointer-events: none;
|
|
7421
7618
|
}
|
|
7422
7619
|
.ant-dropdown-menu-item-divider,
|
|
@@ -13538,6 +13735,13 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
13538
13735
|
.ant-image-preview-wrap {
|
|
13539
13736
|
z-index: 1080;
|
|
13540
13737
|
}
|
|
13738
|
+
.ant-image-preview-operations-wrapper {
|
|
13739
|
+
position: fixed;
|
|
13740
|
+
top: 0;
|
|
13741
|
+
right: 0;
|
|
13742
|
+
z-index: 1081;
|
|
13743
|
+
width: 100%;
|
|
13744
|
+
}
|
|
13541
13745
|
.ant-image-preview-operations {
|
|
13542
13746
|
box-sizing: border-box;
|
|
13543
13747
|
margin: 0;
|
|
@@ -13547,14 +13751,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
13547
13751
|
font-variant: tabular-nums;
|
|
13548
13752
|
line-height: 1.66667;
|
|
13549
13753
|
font-feature-settings: 'tnum';
|
|
13550
|
-
position: absolute;
|
|
13551
|
-
top: 0;
|
|
13552
|
-
right: 0;
|
|
13553
|
-
z-index: 1;
|
|
13554
13754
|
display: flex;
|
|
13555
13755
|
flex-direction: row-reverse;
|
|
13556
13756
|
align-items: center;
|
|
13557
|
-
width: 100%;
|
|
13558
13757
|
color: rgba(255, 255, 255, 0.85);
|
|
13559
13758
|
list-style: none;
|
|
13560
13759
|
background: rgba(0, 0, 0, 0.1);
|
|
@@ -13564,6 +13763,10 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
13564
13763
|
margin-left: 8px;
|
|
13565
13764
|
padding: 8px;
|
|
13566
13765
|
cursor: pointer;
|
|
13766
|
+
transition: all 0.3s;
|
|
13767
|
+
}
|
|
13768
|
+
.ant-image-preview-operations-operation:hover {
|
|
13769
|
+
background: rgba(0, 0, 0, 0.2);
|
|
13567
13770
|
}
|
|
13568
13771
|
.ant-image-preview-operations-operation-disabled {
|
|
13569
13772
|
color: rgba(255, 255, 255, 0.25);
|
|
@@ -13582,29 +13785,39 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
13582
13785
|
}
|
|
13583
13786
|
.ant-image-preview-switch-left,
|
|
13584
13787
|
.ant-image-preview-switch-right {
|
|
13585
|
-
position:
|
|
13788
|
+
position: fixed;
|
|
13586
13789
|
top: 50%;
|
|
13587
|
-
right:
|
|
13588
|
-
z-index:
|
|
13790
|
+
right: 8px;
|
|
13791
|
+
z-index: 1081;
|
|
13589
13792
|
display: flex;
|
|
13590
13793
|
align-items: center;
|
|
13591
13794
|
justify-content: center;
|
|
13592
13795
|
width: 44px;
|
|
13593
13796
|
height: 44px;
|
|
13594
|
-
margin-top: -22px;
|
|
13595
13797
|
color: rgba(255, 255, 255, 0.85);
|
|
13596
13798
|
background: rgba(0, 0, 0, 0.1);
|
|
13597
13799
|
border-radius: 50%;
|
|
13800
|
+
transform: translateY(-50%);
|
|
13598
13801
|
cursor: pointer;
|
|
13802
|
+
transition: all 0.3s;
|
|
13599
13803
|
pointer-events: auto;
|
|
13600
13804
|
}
|
|
13805
|
+
.ant-image-preview-switch-left:hover,
|
|
13806
|
+
.ant-image-preview-switch-right:hover {
|
|
13807
|
+
background: rgba(0, 0, 0, 0.2);
|
|
13808
|
+
}
|
|
13601
13809
|
.ant-image-preview-switch-left-disabled,
|
|
13602
|
-
.ant-image-preview-switch-right-disabled
|
|
13810
|
+
.ant-image-preview-switch-right-disabled,
|
|
13811
|
+
.ant-image-preview-switch-left-disabled:hover,
|
|
13812
|
+
.ant-image-preview-switch-right-disabled:hover {
|
|
13603
13813
|
color: rgba(255, 255, 255, 0.25);
|
|
13814
|
+
background: rgba(0, 0, 0, 0.1);
|
|
13604
13815
|
cursor: not-allowed;
|
|
13605
13816
|
}
|
|
13606
13817
|
.ant-image-preview-switch-left-disabled > .anticon,
|
|
13607
|
-
.ant-image-preview-switch-right-disabled > .anticon
|
|
13818
|
+
.ant-image-preview-switch-right-disabled > .anticon,
|
|
13819
|
+
.ant-image-preview-switch-left-disabled:hover > .anticon,
|
|
13820
|
+
.ant-image-preview-switch-right-disabled:hover > .anticon {
|
|
13608
13821
|
cursor: not-allowed;
|
|
13609
13822
|
}
|
|
13610
13823
|
.ant-image-preview-switch-left > .anticon,
|
|
@@ -13612,10 +13825,10 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
13612
13825
|
font-size: 18px;
|
|
13613
13826
|
}
|
|
13614
13827
|
.ant-image-preview-switch-left {
|
|
13615
|
-
left:
|
|
13828
|
+
left: 8px;
|
|
13616
13829
|
}
|
|
13617
13830
|
.ant-image-preview-switch-right {
|
|
13618
|
-
right:
|
|
13831
|
+
right: 8px;
|
|
13619
13832
|
}
|
|
13620
13833
|
.ant-input-affix-wrapper {
|
|
13621
13834
|
position: relative;
|
|
@@ -13729,16 +13942,19 @@ textarea.ant-input-affix-wrapper {
|
|
|
13729
13942
|
z-index: 1;
|
|
13730
13943
|
}
|
|
13731
13944
|
.ant-input-affix-wrapper-disabled .ant-input[disabled] {
|
|
13732
|
-
background:
|
|
13945
|
+
background: rgba(255, 255, 255, 0);
|
|
13733
13946
|
}
|
|
13734
|
-
.ant-input-affix-wrapper >
|
|
13735
|
-
|
|
13947
|
+
.ant-input-affix-wrapper > .ant-input {
|
|
13948
|
+
font-size: inherit;
|
|
13736
13949
|
border: none;
|
|
13737
13950
|
outline: none;
|
|
13738
13951
|
}
|
|
13739
|
-
.ant-input-affix-wrapper >
|
|
13952
|
+
.ant-input-affix-wrapper > .ant-input:focus {
|
|
13740
13953
|
box-shadow: none !important;
|
|
13741
13954
|
}
|
|
13955
|
+
.ant-input-affix-wrapper > .ant-input:not(textarea) {
|
|
13956
|
+
padding: 0;
|
|
13957
|
+
}
|
|
13742
13958
|
.ant-input-affix-wrapper::before {
|
|
13743
13959
|
width: 0;
|
|
13744
13960
|
visibility: hidden;
|
|
@@ -13791,11 +14007,10 @@ textarea.ant-input-affix-wrapper {
|
|
|
13791
14007
|
.ant-input-clear-icon-has-suffix {
|
|
13792
14008
|
margin: 0 4px;
|
|
13793
14009
|
}
|
|
13794
|
-
.ant-input-affix-wrapper-textarea-with-clear-btn {
|
|
13795
|
-
padding: 0
|
|
13796
|
-
border: 0 !important;
|
|
14010
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn {
|
|
14011
|
+
padding: 0;
|
|
13797
14012
|
}
|
|
13798
|
-
.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
|
|
14013
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
|
|
13799
14014
|
position: absolute;
|
|
13800
14015
|
top: 8px;
|
|
13801
14016
|
right: 8px;
|
|
@@ -14356,6 +14571,39 @@ textarea.ant-input {
|
|
|
14356
14571
|
align-items: center;
|
|
14357
14572
|
margin: auto;
|
|
14358
14573
|
}
|
|
14574
|
+
.ant-input-compact-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
|
|
14575
|
+
margin-right: -1px;
|
|
14576
|
+
}
|
|
14577
|
+
.ant-input-compact-item:not(.ant-input-compact-last-item).ant-input-compact-item-rtl {
|
|
14578
|
+
margin-left: -1px;
|
|
14579
|
+
}
|
|
14580
|
+
.ant-input-compact-item:hover,
|
|
14581
|
+
.ant-input-compact-item:focus,
|
|
14582
|
+
.ant-input-compact-item:active {
|
|
14583
|
+
z-index: 2;
|
|
14584
|
+
}
|
|
14585
|
+
.ant-input-compact-item[disabled] {
|
|
14586
|
+
z-index: 0;
|
|
14587
|
+
}
|
|
14588
|
+
.ant-input-compact-item:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input {
|
|
14589
|
+
border-radius: 0;
|
|
14590
|
+
}
|
|
14591
|
+
.ant-input-compact-item.ant-input.ant-input-compact-first-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
|
|
14592
|
+
border-top-right-radius: 0;
|
|
14593
|
+
border-bottom-right-radius: 0;
|
|
14594
|
+
}
|
|
14595
|
+
.ant-input-compact-item.ant-input.ant-input-compact-last-item:not(.ant-input-compact-first-item):not(.ant-input-compact-item-rtl) {
|
|
14596
|
+
border-top-left-radius: 0;
|
|
14597
|
+
border-bottom-left-radius: 0;
|
|
14598
|
+
}
|
|
14599
|
+
.ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-first-item:not(.ant-input-compact-last-item) {
|
|
14600
|
+
border-top-left-radius: 0;
|
|
14601
|
+
border-bottom-left-radius: 0;
|
|
14602
|
+
}
|
|
14603
|
+
.ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-last-item:not(.ant-input-compact-first-item) {
|
|
14604
|
+
border-top-right-radius: 0;
|
|
14605
|
+
border-bottom-right-radius: 0;
|
|
14606
|
+
}
|
|
14359
14607
|
.ant-input-search .ant-input:hover,
|
|
14360
14608
|
.ant-input-search .ant-input:focus {
|
|
14361
14609
|
border-color: #40a9ff;
|
|
@@ -14402,6 +14650,32 @@ textarea.ant-input {
|
|
|
14402
14650
|
.ant-input-search-small .ant-input-search-button {
|
|
14403
14651
|
height: 24px;
|
|
14404
14652
|
}
|
|
14653
|
+
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-item-rtl):not(.ant-input-compact-last-item) .ant-input-group-addon .ant-input-search-button {
|
|
14654
|
+
margin-right: -1px;
|
|
14655
|
+
border-radius: 0;
|
|
14656
|
+
}
|
|
14657
|
+
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input,
|
|
14658
|
+
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input-affix-wrapper {
|
|
14659
|
+
border-radius: 0;
|
|
14660
|
+
}
|
|
14661
|
+
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:hover,
|
|
14662
|
+
.ant-input-search.ant-input-compact-item > .ant-input:hover,
|
|
14663
|
+
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:hover,
|
|
14664
|
+
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:focus,
|
|
14665
|
+
.ant-input-search.ant-input-compact-item > .ant-input:focus,
|
|
14666
|
+
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:focus,
|
|
14667
|
+
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:active,
|
|
14668
|
+
.ant-input-search.ant-input-compact-item > .ant-input:active,
|
|
14669
|
+
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:active {
|
|
14670
|
+
z-index: 2;
|
|
14671
|
+
}
|
|
14672
|
+
.ant-input-search.ant-input-compact-item > .ant-input-affix-wrapper-focused {
|
|
14673
|
+
z-index: 2;
|
|
14674
|
+
}
|
|
14675
|
+
.ant-input-search.ant-input-compact-item-rtl:not(.ant-input-compact-last-item) .ant-input-group-addon:last-child .ant-input-search-button {
|
|
14676
|
+
margin-left: -1px;
|
|
14677
|
+
border-radius: 0;
|
|
14678
|
+
}
|
|
14405
14679
|
.ant-input-group-wrapper-rtl {
|
|
14406
14680
|
direction: rtl;
|
|
14407
14681
|
}
|
|
@@ -14437,18 +14711,21 @@ textarea.ant-input {
|
|
|
14437
14711
|
}
|
|
14438
14712
|
.ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
|
|
14439
14713
|
.ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
|
|
14440
|
-
border-right-color: #40a9ff;
|
|
14441
14714
|
border-left-color: #d9d9d9;
|
|
14442
14715
|
}
|
|
14716
|
+
.ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover,
|
|
14717
|
+
.ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover {
|
|
14718
|
+
border-left-color: #40a9ff;
|
|
14719
|
+
}
|
|
14443
14720
|
.ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
|
|
14444
14721
|
.ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused {
|
|
14445
14722
|
border-right-color: #40a9ff;
|
|
14446
14723
|
}
|
|
14447
|
-
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon {
|
|
14724
|
+
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child {
|
|
14448
14725
|
right: -1px;
|
|
14449
14726
|
left: auto;
|
|
14450
14727
|
}
|
|
14451
|
-
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon .ant-input-search-button {
|
|
14728
|
+
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
|
|
14452
14729
|
border-radius: 2px 0 0 2px;
|
|
14453
14730
|
}
|
|
14454
14731
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
@@ -15342,6 +15619,42 @@ textarea.ant-input-number {
|
|
|
15342
15619
|
.ant-input-number-out-of-range input {
|
|
15343
15620
|
color: #ff4d4f;
|
|
15344
15621
|
}
|
|
15622
|
+
.ant-input-number-compact-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
|
|
15623
|
+
margin-right: -1px;
|
|
15624
|
+
}
|
|
15625
|
+
.ant-input-number-compact-item:not(.ant-input-number-compact-last-item).ant-input-number-compact-item-rtl {
|
|
15626
|
+
margin-left: -1px;
|
|
15627
|
+
}
|
|
15628
|
+
.ant-input-number-compact-item:hover,
|
|
15629
|
+
.ant-input-number-compact-item:focus,
|
|
15630
|
+
.ant-input-number-compact-item:active {
|
|
15631
|
+
z-index: 2;
|
|
15632
|
+
}
|
|
15633
|
+
.ant-input-number-compact-item.ant-input-number-focused {
|
|
15634
|
+
z-index: 2;
|
|
15635
|
+
}
|
|
15636
|
+
.ant-input-number-compact-item[disabled] {
|
|
15637
|
+
z-index: 0;
|
|
15638
|
+
}
|
|
15639
|
+
.ant-input-number-compact-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number {
|
|
15640
|
+
border-radius: 0;
|
|
15641
|
+
}
|
|
15642
|
+
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
|
|
15643
|
+
border-top-right-radius: 0;
|
|
15644
|
+
border-bottom-right-radius: 0;
|
|
15645
|
+
}
|
|
15646
|
+
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-item-rtl) {
|
|
15647
|
+
border-top-left-radius: 0;
|
|
15648
|
+
border-bottom-left-radius: 0;
|
|
15649
|
+
}
|
|
15650
|
+
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item) {
|
|
15651
|
+
border-top-left-radius: 0;
|
|
15652
|
+
border-bottom-left-radius: 0;
|
|
15653
|
+
}
|
|
15654
|
+
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item) {
|
|
15655
|
+
border-top-right-radius: 0;
|
|
15656
|
+
border-bottom-right-radius: 0;
|
|
15657
|
+
}
|
|
15345
15658
|
.ant-input-number-rtl {
|
|
15346
15659
|
direction: rtl;
|
|
15347
15660
|
}
|
|
@@ -16351,8 +16664,8 @@ textarea.ant-mentions {
|
|
|
16351
16664
|
.ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon {
|
|
16352
16665
|
margin-right: 0;
|
|
16353
16666
|
}
|
|
16354
|
-
.ant-menu-item:focus-visible,
|
|
16355
|
-
.ant-menu-submenu-title:focus-visible {
|
|
16667
|
+
.ant-menu-item:not(.ant-menu-item-disabled):focus-visible,
|
|
16668
|
+
.ant-menu-submenu-title:not(.ant-menu-item-disabled):focus-visible {
|
|
16356
16669
|
box-shadow: 0 0 0 2px #bae7ff;
|
|
16357
16670
|
}
|
|
16358
16671
|
.ant-menu > .ant-menu-item-divider {
|
|
@@ -16490,9 +16803,9 @@ textarea.ant-mentions {
|
|
|
16490
16803
|
.ant-menu-horizontal > .ant-menu-item::after,
|
|
16491
16804
|
.ant-menu-horizontal > .ant-menu-submenu::after {
|
|
16492
16805
|
position: absolute;
|
|
16493
|
-
right:
|
|
16806
|
+
right: 12px;
|
|
16494
16807
|
bottom: 0;
|
|
16495
|
-
left:
|
|
16808
|
+
left: 12px;
|
|
16496
16809
|
border-bottom: 2px solid transparent;
|
|
16497
16810
|
transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
16498
16811
|
content: '';
|
|
@@ -17315,6 +17628,9 @@ textarea.ant-mentions {
|
|
|
17315
17628
|
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
|
|
17316
17629
|
color: #52c41a;
|
|
17317
17630
|
}
|
|
17631
|
+
.ant-modal-confirm .ant-zoom-leave .ant-modal-confirm-btns {
|
|
17632
|
+
pointer-events: none;
|
|
17633
|
+
}
|
|
17318
17634
|
.ant-modal-wrap-rtl {
|
|
17319
17635
|
direction: rtl;
|
|
17320
17636
|
}
|
|
@@ -18293,6 +18609,7 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18293
18609
|
top: 0;
|
|
18294
18610
|
left: 0;
|
|
18295
18611
|
z-index: 1030;
|
|
18612
|
+
max-width: 100%;
|
|
18296
18613
|
font-weight: normal;
|
|
18297
18614
|
white-space: normal;
|
|
18298
18615
|
text-align: left;
|
|
@@ -18354,24 +18671,23 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18354
18671
|
border-bottom: 1px solid #f0f0f0;
|
|
18355
18672
|
}
|
|
18356
18673
|
.ant-popover-inner-content {
|
|
18674
|
+
width: max-content;
|
|
18675
|
+
max-width: 100%;
|
|
18357
18676
|
padding: 8px 12px;
|
|
18358
18677
|
color: rgba(0, 0, 0, 0.85);
|
|
18359
18678
|
}
|
|
18360
18679
|
.ant-popover-message {
|
|
18361
|
-
|
|
18680
|
+
display: flex;
|
|
18362
18681
|
padding: 4px 0 12px;
|
|
18363
18682
|
color: rgba(0, 0, 0, 0.85);
|
|
18364
18683
|
font-size: 12px;
|
|
18365
18684
|
}
|
|
18366
|
-
.ant-popover-message
|
|
18367
|
-
|
|
18368
|
-
|
|
18685
|
+
.ant-popover-message-icon {
|
|
18686
|
+
display: inline-block;
|
|
18687
|
+
margin-right: 8px;
|
|
18369
18688
|
color: #faad14;
|
|
18370
18689
|
font-size: 12px;
|
|
18371
18690
|
}
|
|
18372
|
-
.ant-popover-message-title {
|
|
18373
|
-
padding-left: 20px;
|
|
18374
|
-
}
|
|
18375
18691
|
.ant-popover-buttons {
|
|
18376
18692
|
margin-bottom: 4px;
|
|
18377
18693
|
text-align: right;
|
|
@@ -18587,8 +18903,11 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18587
18903
|
direction: rtl;
|
|
18588
18904
|
text-align: right;
|
|
18589
18905
|
}
|
|
18906
|
+
.ant-popover-rtl .ant-popover-message-icon {
|
|
18907
|
+
margin-right: 0;
|
|
18908
|
+
margin-left: 8px;
|
|
18909
|
+
}
|
|
18590
18910
|
.ant-popover-rtl .ant-popover-message-title {
|
|
18591
|
-
padding-right: 20px;
|
|
18592
18911
|
padding-left: 8px;
|
|
18593
18912
|
}
|
|
18594
18913
|
.ant-popover-rtl .ant-popover-buttons {
|
|
@@ -19425,7 +19744,7 @@ span.ant-radio + * {
|
|
|
19425
19744
|
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
|
|
19426
19745
|
padding: 0;
|
|
19427
19746
|
line-height: 30px;
|
|
19428
|
-
transition: all 0.3s;
|
|
19747
|
+
transition: all 0.3s, visibility 0s;
|
|
19429
19748
|
}
|
|
19430
19749
|
.ant-select-single .ant-select-selector .ant-select-selection-item {
|
|
19431
19750
|
position: relative;
|
|
@@ -20035,6 +20354,43 @@ span.ant-radio + * {
|
|
|
20035
20354
|
.ant-select.ant-select-in-form-item {
|
|
20036
20355
|
width: 100%;
|
|
20037
20356
|
}
|
|
20357
|
+
.ant-select-compact-item:not(.ant-select-compact-last-item) {
|
|
20358
|
+
margin-right: -1px;
|
|
20359
|
+
}
|
|
20360
|
+
.ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl {
|
|
20361
|
+
margin-right: 0;
|
|
20362
|
+
margin-left: -1px;
|
|
20363
|
+
}
|
|
20364
|
+
.ant-select-compact-item:hover > *,
|
|
20365
|
+
.ant-select-compact-item:focus > *,
|
|
20366
|
+
.ant-select-compact-item:active > * {
|
|
20367
|
+
z-index: 2;
|
|
20368
|
+
}
|
|
20369
|
+
.ant-select-compact-item.ant-select-focused > * {
|
|
20370
|
+
z-index: 2;
|
|
20371
|
+
}
|
|
20372
|
+
.ant-select-compact-item[disabled] > * {
|
|
20373
|
+
z-index: 0;
|
|
20374
|
+
}
|
|
20375
|
+
.ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select > .ant-select-selector {
|
|
20376
|
+
border-radius: 0;
|
|
20377
|
+
}
|
|
20378
|
+
.ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
|
|
20379
|
+
border-top-right-radius: 0;
|
|
20380
|
+
border-bottom-right-radius: 0;
|
|
20381
|
+
}
|
|
20382
|
+
.ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
|
|
20383
|
+
border-top-left-radius: 0;
|
|
20384
|
+
border-bottom-left-radius: 0;
|
|
20385
|
+
}
|
|
20386
|
+
.ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item) > .ant-select-selector {
|
|
20387
|
+
border-top-left-radius: 0;
|
|
20388
|
+
border-bottom-left-radius: 0;
|
|
20389
|
+
}
|
|
20390
|
+
.ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item) > .ant-select-selector {
|
|
20391
|
+
border-top-right-radius: 0;
|
|
20392
|
+
border-bottom-right-radius: 0;
|
|
20393
|
+
}
|
|
20038
20394
|
.ant-select-rtl {
|
|
20039
20395
|
direction: rtl;
|
|
20040
20396
|
}
|
|
@@ -20594,9 +20950,22 @@ span.ant-radio + * {
|
|
|
20594
20950
|
.ant-space-item:empty {
|
|
20595
20951
|
display: none;
|
|
20596
20952
|
}
|
|
20953
|
+
.ant-space-compact {
|
|
20954
|
+
display: inline-flex;
|
|
20955
|
+
}
|
|
20956
|
+
.ant-space-compact-block {
|
|
20957
|
+
display: flex;
|
|
20958
|
+
width: 100%;
|
|
20959
|
+
}
|
|
20960
|
+
.ant-space-compact-vertical {
|
|
20961
|
+
flex-direction: column;
|
|
20962
|
+
}
|
|
20597
20963
|
.ant-space-rtl {
|
|
20598
20964
|
direction: rtl;
|
|
20599
20965
|
}
|
|
20966
|
+
.ant-space-compact-rtl {
|
|
20967
|
+
direction: rtl;
|
|
20968
|
+
}
|
|
20600
20969
|
.ant-spin {
|
|
20601
20970
|
box-sizing: border-box;
|
|
20602
20971
|
margin: 0;
|
|
@@ -21168,7 +21537,7 @@ span.ant-radio + * {
|
|
|
21168
21537
|
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21169
21538
|
position: absolute;
|
|
21170
21539
|
top: 0;
|
|
21171
|
-
left:
|
|
21540
|
+
left: 11px;
|
|
21172
21541
|
width: 1px;
|
|
21173
21542
|
height: 100%;
|
|
21174
21543
|
padding: 30px 0 6px;
|
|
@@ -21186,7 +21555,7 @@ span.ant-radio + * {
|
|
|
21186
21555
|
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
|
|
21187
21556
|
position: absolute;
|
|
21188
21557
|
top: 0;
|
|
21189
|
-
left:
|
|
21558
|
+
left: 9px;
|
|
21190
21559
|
padding: 26px 0 6px;
|
|
21191
21560
|
}
|
|
21192
21561
|
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
|
|
@@ -21557,6 +21926,15 @@ span.ant-radio + * {
|
|
|
21557
21926
|
right: -2px;
|
|
21558
21927
|
left: auto;
|
|
21559
21928
|
}
|
|
21929
|
+
.ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item {
|
|
21930
|
+
padding-right: 4px;
|
|
21931
|
+
}
|
|
21932
|
+
.ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21933
|
+
right: 15px;
|
|
21934
|
+
}
|
|
21935
|
+
.ant-steps-rtl.ant-steps-with-progress.ant-steps-small.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21936
|
+
right: 13px;
|
|
21937
|
+
}
|
|
21560
21938
|
.ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child {
|
|
21561
21939
|
padding-right: 4px;
|
|
21562
21940
|
padding-left: 0;
|
|
@@ -21567,13 +21945,21 @@ span.ant-radio + * {
|
|
|
21567
21945
|
.ant-steps-with-progress .ant-steps-item {
|
|
21568
21946
|
padding-top: 4px;
|
|
21569
21947
|
}
|
|
21570
|
-
.ant-steps-with-progress .ant-steps-item .ant-steps-item-tail {
|
|
21571
|
-
top: 4px
|
|
21948
|
+
.ant-steps-with-progress .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21949
|
+
top: 4px;
|
|
21950
|
+
left: 15px;
|
|
21572
21951
|
}
|
|
21573
|
-
.ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child
|
|
21952
|
+
.ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child,
|
|
21953
|
+
.ant-steps-with-progress.ant-steps-small.ant-steps-horizontal .ant-steps-item:first-child {
|
|
21574
21954
|
padding-bottom: 4px;
|
|
21575
21955
|
padding-left: 4px;
|
|
21576
21956
|
}
|
|
21957
|
+
.ant-steps-with-progress.ant-steps-small > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21958
|
+
left: 13px;
|
|
21959
|
+
}
|
|
21960
|
+
.ant-steps-with-progress.ant-steps-vertical .ant-steps-item {
|
|
21961
|
+
padding-left: 4px;
|
|
21962
|
+
}
|
|
21577
21963
|
.ant-steps-with-progress.ant-steps-label-vertical .ant-steps-item .ant-steps-item-tail {
|
|
21578
21964
|
top: 14px !important;
|
|
21579
21965
|
}
|
|
@@ -21603,7 +21989,7 @@ span.ant-radio + * {
|
|
|
21603
21989
|
height: 20px;
|
|
21604
21990
|
line-height: 20px;
|
|
21605
21991
|
vertical-align: middle;
|
|
21606
|
-
background-
|
|
21992
|
+
background-color: rgba(0, 0, 0, 0.25);
|
|
21607
21993
|
border: 0;
|
|
21608
21994
|
border-radius: 100px;
|
|
21609
21995
|
cursor: pointer;
|
|
@@ -21621,7 +22007,7 @@ span.ant-radio + * {
|
|
|
21621
22007
|
box-shadow: none;
|
|
21622
22008
|
}
|
|
21623
22009
|
.ant-switch-checked {
|
|
21624
|
-
background: #1890ff;
|
|
22010
|
+
background-color: #1890ff;
|
|
21625
22011
|
}
|
|
21626
22012
|
.ant-switch-loading,
|
|
21627
22013
|
.ant-switch-disabled {
|
|
@@ -22400,7 +22786,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22400
22786
|
position: absolute;
|
|
22401
22787
|
top: 0;
|
|
22402
22788
|
bottom: 0;
|
|
22403
|
-
z-index: 2;
|
|
22789
|
+
z-index: calc(calc(2 + 1) + 1);
|
|
22404
22790
|
width: 30px;
|
|
22405
22791
|
transition: box-shadow 0.3s;
|
|
22406
22792
|
content: '';
|
|
@@ -23163,7 +23549,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
23163
23549
|
margin: 0 0 0 32px;
|
|
23164
23550
|
}
|
|
23165
23551
|
.ant-tabs-content {
|
|
23166
|
-
|
|
23552
|
+
position: relative;
|
|
23167
23553
|
width: 100%;
|
|
23168
23554
|
}
|
|
23169
23555
|
.ant-tabs-content-holder {
|
|
@@ -23171,14 +23557,37 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
23171
23557
|
min-width: 0;
|
|
23172
23558
|
min-height: 0;
|
|
23173
23559
|
}
|
|
23174
|
-
.ant-tabs-content-animated {
|
|
23175
|
-
transition: margin 0.3s;
|
|
23176
|
-
}
|
|
23177
23560
|
.ant-tabs-tabpane {
|
|
23178
|
-
flex: none;
|
|
23179
|
-
width: 100%;
|
|
23180
23561
|
outline: none;
|
|
23181
23562
|
}
|
|
23563
|
+
.ant-tabs-tabpane-hidden {
|
|
23564
|
+
display: none;
|
|
23565
|
+
}
|
|
23566
|
+
.ant-tabs-switch-appear,
|
|
23567
|
+
.ant-tabs-switch-enter {
|
|
23568
|
+
transition: none;
|
|
23569
|
+
}
|
|
23570
|
+
.ant-tabs-switch-appear-start,
|
|
23571
|
+
.ant-tabs-switch-enter-start {
|
|
23572
|
+
opacity: 0;
|
|
23573
|
+
}
|
|
23574
|
+
.ant-tabs-switch-appear-active,
|
|
23575
|
+
.ant-tabs-switch-enter-active {
|
|
23576
|
+
opacity: 1;
|
|
23577
|
+
transition: opacity 0.3s;
|
|
23578
|
+
}
|
|
23579
|
+
.ant-tabs-switch-leave {
|
|
23580
|
+
position: absolute;
|
|
23581
|
+
transition: none;
|
|
23582
|
+
inset: 0;
|
|
23583
|
+
}
|
|
23584
|
+
.ant-tabs-switch-leave-start {
|
|
23585
|
+
opacity: 1;
|
|
23586
|
+
}
|
|
23587
|
+
.ant-tabs-switch-leave-active {
|
|
23588
|
+
opacity: 0;
|
|
23589
|
+
transition: opacity 0.3s;
|
|
23590
|
+
}
|
|
23182
23591
|
.ant-tag {
|
|
23183
23592
|
box-sizing: border-box;
|
|
23184
23593
|
margin: 0;
|
|
@@ -24540,6 +24949,9 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
24540
24949
|
.ant-tree-treenode:hover .ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
|
|
24541
24950
|
opacity: 0.45;
|
|
24542
24951
|
}
|
|
24952
|
+
.ant-tree .ant-tree-treenode-draggable.ant-tree-treenode-disabled .ant-tree-draggable-icon {
|
|
24953
|
+
visibility: hidden;
|
|
24954
|
+
}
|
|
24543
24955
|
.ant-tree-indent {
|
|
24544
24956
|
align-self: stretch;
|
|
24545
24957
|
white-space: nowrap;
|
|
@@ -25019,6 +25431,9 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
25019
25431
|
.ant-select-tree-treenode:hover .ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
|
|
25020
25432
|
opacity: 0.45;
|
|
25021
25433
|
}
|
|
25434
|
+
.ant-select-tree .ant-select-tree-treenode-draggable.ant-select-tree-treenode-disabled .ant-select-tree-draggable-icon {
|
|
25435
|
+
visibility: hidden;
|
|
25436
|
+
}
|
|
25022
25437
|
.ant-select-tree-indent {
|
|
25023
25438
|
align-self: stretch;
|
|
25024
25439
|
white-space: nowrap;
|
|
@@ -25181,7 +25596,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
25181
25596
|
}
|
|
25182
25597
|
.ant-typography {
|
|
25183
25598
|
color: rgba(0, 0, 0, 0.85);
|
|
25184
|
-
|
|
25599
|
+
word-break: break-word;
|
|
25185
25600
|
}
|
|
25186
25601
|
.ant-typography.ant-typography-secondary {
|
|
25187
25602
|
color: rgba(0, 0, 0, 0.45);
|