synos-helena 21.12.7-beta.0 → 21.13.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/CHANGELOG.md +25 -1
- package/lib/dark.css +226 -22
- package/lib/dark.css.map +1 -1
- package/lib/helena.css +226 -22
- package/lib/helena.css.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +588 -60
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/light.css +226 -22
- package/lib/light.css.map +1 -1
- package/package.json +3 -2
package/lib/helena.css
CHANGED
|
@@ -1439,7 +1439,7 @@ html {
|
|
|
1439
1439
|
.ant-anchor-ink-ball.visible {
|
|
1440
1440
|
display: inline-block;
|
|
1441
1441
|
}
|
|
1442
|
-
.ant-anchor
|
|
1442
|
+
.ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
|
|
1443
1443
|
display: none;
|
|
1444
1444
|
}
|
|
1445
1445
|
.ant-anchor-link {
|
|
@@ -3469,7 +3469,7 @@ a.ant-btn-icon-only > .anticon {
|
|
|
3469
3469
|
display: block;
|
|
3470
3470
|
}
|
|
3471
3471
|
.ant-btn > .ant-btn-loading-icon {
|
|
3472
|
-
transition:
|
|
3472
|
+
transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
3473
3473
|
}
|
|
3474
3474
|
.ant-btn > .ant-btn-loading-icon .anticon {
|
|
3475
3475
|
padding-right: 8px;
|
|
@@ -5343,6 +5343,7 @@ a.ant-btn-sm {
|
|
|
5343
5343
|
border-radius: 0 0 2px 2px;
|
|
5344
5344
|
}
|
|
5345
5345
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
|
|
5346
|
+
position: relative;
|
|
5346
5347
|
display: flex;
|
|
5347
5348
|
flex-wrap: nowrap;
|
|
5348
5349
|
align-items: flex-start;
|
|
@@ -6610,7 +6611,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6610
6611
|
}
|
|
6611
6612
|
.ant-descriptions-view {
|
|
6612
6613
|
width: 100%;
|
|
6613
|
-
overflow: hidden;
|
|
6614
6614
|
border-radius: 2px;
|
|
6615
6615
|
}
|
|
6616
6616
|
.ant-descriptions-view table {
|
|
@@ -6801,9 +6801,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6801
6801
|
border-style: dashed;
|
|
6802
6802
|
border-width: 1px 0 0;
|
|
6803
6803
|
}
|
|
6804
|
-
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed {
|
|
6805
|
-
border-top: 0;
|
|
6806
|
-
}
|
|
6807
6804
|
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
|
|
6808
6805
|
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
|
|
6809
6806
|
border-style: dashed none none;
|
|
@@ -6816,6 +6813,24 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6816
6813
|
font-weight: normal;
|
|
6817
6814
|
font-size: 14px;
|
|
6818
6815
|
}
|
|
6816
|
+
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
|
|
6817
|
+
width: 0;
|
|
6818
|
+
}
|
|
6819
|
+
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
|
|
6820
|
+
width: 100%;
|
|
6821
|
+
}
|
|
6822
|
+
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
|
|
6823
|
+
padding-left: 0;
|
|
6824
|
+
}
|
|
6825
|
+
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
|
|
6826
|
+
width: 100%;
|
|
6827
|
+
}
|
|
6828
|
+
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
|
|
6829
|
+
width: 0;
|
|
6830
|
+
}
|
|
6831
|
+
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
|
|
6832
|
+
padding-right: 0;
|
|
6833
|
+
}
|
|
6819
6834
|
.ant-divider-rtl {
|
|
6820
6835
|
direction: rtl;
|
|
6821
6836
|
}
|
|
@@ -6927,6 +6942,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6927
6942
|
pointer-events: auto;
|
|
6928
6943
|
}
|
|
6929
6944
|
.ant-drawer-title {
|
|
6945
|
+
flex: 1;
|
|
6930
6946
|
margin: 0;
|
|
6931
6947
|
color: rgba(0, 0, 0, 0.85);
|
|
6932
6948
|
font-weight: 500;
|
|
@@ -6977,6 +6993,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6977
6993
|
}
|
|
6978
6994
|
.ant-drawer-header-title {
|
|
6979
6995
|
display: flex;
|
|
6996
|
+
flex: 1;
|
|
6980
6997
|
align-items: center;
|
|
6981
6998
|
justify-content: space-between;
|
|
6982
6999
|
}
|
|
@@ -7317,6 +7334,14 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7317
7334
|
.ant-dropdown-button {
|
|
7318
7335
|
white-space: nowrap;
|
|
7319
7336
|
}
|
|
7337
|
+
.ant-dropdown-button.ant-btn-group > .ant-btn-loading,
|
|
7338
|
+
.ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn {
|
|
7339
|
+
cursor: default;
|
|
7340
|
+
pointer-events: none;
|
|
7341
|
+
}
|
|
7342
|
+
.ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn::before {
|
|
7343
|
+
display: block;
|
|
7344
|
+
}
|
|
7320
7345
|
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) {
|
|
7321
7346
|
padding-right: 8px;
|
|
7322
7347
|
padding-left: 8px;
|
|
@@ -7472,10 +7497,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7472
7497
|
.ant-empty-rtl {
|
|
7473
7498
|
direction: rtl;
|
|
7474
7499
|
}
|
|
7475
|
-
.ant-form-item .ant-mentions,
|
|
7476
|
-
.ant-form-item textarea.ant-input {
|
|
7477
|
-
height: auto;
|
|
7478
|
-
}
|
|
7479
7500
|
.ant-form-item .ant-upload {
|
|
7480
7501
|
background: transparent;
|
|
7481
7502
|
}
|
|
@@ -7557,6 +7578,8 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7557
7578
|
}
|
|
7558
7579
|
.ant-form-horizontal .ant-form-item-control {
|
|
7559
7580
|
flex: 1 1 0;
|
|
7581
|
+
}
|
|
7582
|
+
.ant-form-horizontal .ant-form-item-control:not(.ant-col) {
|
|
7560
7583
|
min-width: 0;
|
|
7561
7584
|
}
|
|
7562
7585
|
.ant-form-vertical .ant-form-item {
|
|
@@ -7773,15 +7796,19 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7773
7796
|
}
|
|
7774
7797
|
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
7775
7798
|
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
7799
|
+
.ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
|
|
7776
7800
|
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
7777
|
-
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover
|
|
7801
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover,
|
|
7802
|
+
.ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
|
|
7778
7803
|
background-color: #fff;
|
|
7779
7804
|
border-color: #faad14;
|
|
7780
7805
|
}
|
|
7781
7806
|
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
7782
7807
|
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
7808
|
+
.ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus,
|
|
7783
7809
|
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
7784
|
-
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused
|
|
7810
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,
|
|
7811
|
+
.ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {
|
|
7785
7812
|
border-color: #ffc53d;
|
|
7786
7813
|
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
7787
7814
|
border-right-width: 1px !important;
|
|
@@ -7793,7 +7820,8 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7793
7820
|
border-right-width: 1px !important;
|
|
7794
7821
|
outline: 0;
|
|
7795
7822
|
}
|
|
7796
|
-
.ant-form-item-has-warning .ant-input-prefix
|
|
7823
|
+
.ant-form-item-has-warning .ant-input-prefix,
|
|
7824
|
+
.ant-form-item-has-warning .ant-input-number-prefix {
|
|
7797
7825
|
color: #faad14;
|
|
7798
7826
|
}
|
|
7799
7827
|
.ant-form-item-has-warning .ant-input-group-addon,
|
|
@@ -7849,15 +7877,19 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7849
7877
|
}
|
|
7850
7878
|
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
7851
7879
|
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
7880
|
+
.ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
|
|
7852
7881
|
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
7853
|
-
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover
|
|
7882
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover,
|
|
7883
|
+
.ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
|
|
7854
7884
|
background-color: #fff;
|
|
7855
7885
|
border-color: #ff4d4f;
|
|
7856
7886
|
}
|
|
7857
7887
|
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
7858
7888
|
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
7889
|
+
.ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus,
|
|
7859
7890
|
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
7860
|
-
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused
|
|
7891
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,
|
|
7892
|
+
.ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {
|
|
7861
7893
|
border-color: #ff7875;
|
|
7862
7894
|
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
7863
7895
|
border-right-width: 1px !important;
|
|
@@ -7869,7 +7901,8 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7869
7901
|
border-right-width: 1px !important;
|
|
7870
7902
|
outline: 0;
|
|
7871
7903
|
}
|
|
7872
|
-
.ant-form-item-has-error .ant-input-prefix
|
|
7904
|
+
.ant-form-item-has-error .ant-input-prefix,
|
|
7905
|
+
.ant-form-item-has-error .ant-input-number-prefix {
|
|
7873
7906
|
color: #ff4d4f;
|
|
7874
7907
|
}
|
|
7875
7908
|
.ant-form-item-has-error .ant-input-group-addon,
|
|
@@ -8095,6 +8128,11 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8095
8128
|
.ant-form-item-label-left {
|
|
8096
8129
|
text-align: left;
|
|
8097
8130
|
}
|
|
8131
|
+
.ant-form-item-label-wrap {
|
|
8132
|
+
overflow: unset;
|
|
8133
|
+
line-height: 1.3215em;
|
|
8134
|
+
white-space: unset;
|
|
8135
|
+
}
|
|
8098
8136
|
.ant-form-item-label > label {
|
|
8099
8137
|
position: relative;
|
|
8100
8138
|
display: inline-flex;
|
|
@@ -8273,6 +8311,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8273
8311
|
.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input {
|
|
8274
8312
|
padding: 0;
|
|
8275
8313
|
}
|
|
8314
|
+
.ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number {
|
|
8315
|
+
padding: 0;
|
|
8316
|
+
}
|
|
8276
8317
|
.ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix {
|
|
8277
8318
|
right: auto;
|
|
8278
8319
|
left: 28px;
|
|
@@ -13841,6 +13882,12 @@ textarea.ant-input-affix-wrapper {
|
|
|
13841
13882
|
flex: none;
|
|
13842
13883
|
align-items: center;
|
|
13843
13884
|
}
|
|
13885
|
+
.ant-input-show-count-suffix {
|
|
13886
|
+
color: rgba(0, 0, 0, 0.45);
|
|
13887
|
+
}
|
|
13888
|
+
.ant-input-show-count-has-suffix {
|
|
13889
|
+
margin-right: 2px;
|
|
13890
|
+
}
|
|
13844
13891
|
.ant-input-prefix {
|
|
13845
13892
|
margin-right: 4px;
|
|
13846
13893
|
}
|
|
@@ -14322,6 +14369,9 @@ textarea.ant-input {
|
|
|
14322
14369
|
padding-top: 3px;
|
|
14323
14370
|
padding-bottom: 3px;
|
|
14324
14371
|
}
|
|
14372
|
+
.ant-input-textarea-show-count > .ant-input {
|
|
14373
|
+
height: 100%;
|
|
14374
|
+
}
|
|
14325
14375
|
.ant-input-textarea-show-count::after {
|
|
14326
14376
|
float: right;
|
|
14327
14377
|
color: rgba(0, 0, 0, 0.45);
|
|
@@ -14438,6 +14488,150 @@ textarea.ant-input {
|
|
|
14438
14488
|
height: auto;
|
|
14439
14489
|
}
|
|
14440
14490
|
}
|
|
14491
|
+
.ant-input-number-affix-wrapper {
|
|
14492
|
+
position: relative;
|
|
14493
|
+
display: inline-block;
|
|
14494
|
+
width: 100%;
|
|
14495
|
+
min-width: 0;
|
|
14496
|
+
padding: 4px 11px;
|
|
14497
|
+
color: #595959;
|
|
14498
|
+
font-size: 14px;
|
|
14499
|
+
line-height: 1.5715;
|
|
14500
|
+
background-color: #fff;
|
|
14501
|
+
background-image: none;
|
|
14502
|
+
border: 1px solid #d9d9d9;
|
|
14503
|
+
border-radius: 2px;
|
|
14504
|
+
transition: all 0.3s;
|
|
14505
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
14506
|
+
position: static;
|
|
14507
|
+
display: inline-flex;
|
|
14508
|
+
width: 90px;
|
|
14509
|
+
padding: 0;
|
|
14510
|
+
padding-inline-start: 11px;
|
|
14511
|
+
}
|
|
14512
|
+
.ant-input-number-affix-wrapper::-moz-placeholder {
|
|
14513
|
+
opacity: 1;
|
|
14514
|
+
}
|
|
14515
|
+
.ant-input-number-affix-wrapper::placeholder {
|
|
14516
|
+
color: #bfbfbf;
|
|
14517
|
+
user-select: none;
|
|
14518
|
+
}
|
|
14519
|
+
.ant-input-number-affix-wrapper:placeholder-shown {
|
|
14520
|
+
text-overflow: ellipsis;
|
|
14521
|
+
}
|
|
14522
|
+
.ant-input-number-affix-wrapper:hover {
|
|
14523
|
+
border-color: #40a9ff;
|
|
14524
|
+
border-right-width: 1px !important;
|
|
14525
|
+
}
|
|
14526
|
+
.ant-input-rtl .ant-input-number-affix-wrapper:hover {
|
|
14527
|
+
border-right-width: 0;
|
|
14528
|
+
border-left-width: 1px !important;
|
|
14529
|
+
}
|
|
14530
|
+
.ant-input-number-affix-wrapper:focus,
|
|
14531
|
+
.ant-input-number-affix-wrapper-focused {
|
|
14532
|
+
border-color: #40a9ff;
|
|
14533
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
14534
|
+
border-right-width: 1px !important;
|
|
14535
|
+
outline: 0;
|
|
14536
|
+
}
|
|
14537
|
+
.ant-input-rtl .ant-input-number-affix-wrapper:focus,
|
|
14538
|
+
.ant-input-rtl .ant-input-number-affix-wrapper-focused {
|
|
14539
|
+
border-right-width: 0;
|
|
14540
|
+
border-left-width: 1px !important;
|
|
14541
|
+
}
|
|
14542
|
+
.ant-input-number-affix-wrapper-disabled {
|
|
14543
|
+
color: rgba(0, 0, 0, 0.25);
|
|
14544
|
+
background-color: #f5f5f5;
|
|
14545
|
+
border-color: #d9d9d9;
|
|
14546
|
+
box-shadow: none;
|
|
14547
|
+
cursor: not-allowed;
|
|
14548
|
+
opacity: 1;
|
|
14549
|
+
}
|
|
14550
|
+
.ant-input-number-affix-wrapper-disabled:hover {
|
|
14551
|
+
border-color: #d9d9d9;
|
|
14552
|
+
border-right-width: 1px !important;
|
|
14553
|
+
}
|
|
14554
|
+
.ant-input-number-affix-wrapper[disabled] {
|
|
14555
|
+
color: rgba(0, 0, 0, 0.25);
|
|
14556
|
+
background-color: #f5f5f5;
|
|
14557
|
+
border-color: #d9d9d9;
|
|
14558
|
+
box-shadow: none;
|
|
14559
|
+
cursor: not-allowed;
|
|
14560
|
+
opacity: 1;
|
|
14561
|
+
}
|
|
14562
|
+
.ant-input-number-affix-wrapper[disabled]:hover {
|
|
14563
|
+
border-color: #d9d9d9;
|
|
14564
|
+
border-right-width: 1px !important;
|
|
14565
|
+
}
|
|
14566
|
+
.ant-input-number-affix-wrapper-borderless,
|
|
14567
|
+
.ant-input-number-affix-wrapper-borderless:hover,
|
|
14568
|
+
.ant-input-number-affix-wrapper-borderless:focus,
|
|
14569
|
+
.ant-input-number-affix-wrapper-borderless-focused,
|
|
14570
|
+
.ant-input-number-affix-wrapper-borderless-disabled,
|
|
14571
|
+
.ant-input-number-affix-wrapper-borderless[disabled] {
|
|
14572
|
+
background-color: transparent;
|
|
14573
|
+
border: none;
|
|
14574
|
+
box-shadow: none;
|
|
14575
|
+
}
|
|
14576
|
+
textarea.ant-input-number-affix-wrapper {
|
|
14577
|
+
max-width: 100%;
|
|
14578
|
+
height: auto;
|
|
14579
|
+
min-height: 32px;
|
|
14580
|
+
line-height: 1.5715;
|
|
14581
|
+
vertical-align: bottom;
|
|
14582
|
+
transition: all 0.3s, height 0s;
|
|
14583
|
+
}
|
|
14584
|
+
.ant-input-number-affix-wrapper-lg {
|
|
14585
|
+
padding: 6.5px 11px;
|
|
14586
|
+
font-size: 16px;
|
|
14587
|
+
}
|
|
14588
|
+
.ant-input-number-affix-wrapper-sm {
|
|
14589
|
+
padding: 0px 7px;
|
|
14590
|
+
}
|
|
14591
|
+
.ant-input-number-affix-wrapper-rtl {
|
|
14592
|
+
direction: rtl;
|
|
14593
|
+
}
|
|
14594
|
+
.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
|
|
14595
|
+
border-color: #40a9ff;
|
|
14596
|
+
border-right-width: 1px !important;
|
|
14597
|
+
z-index: 1;
|
|
14598
|
+
}
|
|
14599
|
+
.ant-input-rtl .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
|
|
14600
|
+
border-right-width: 0;
|
|
14601
|
+
border-left-width: 1px !important;
|
|
14602
|
+
}
|
|
14603
|
+
.ant-input-number-affix-wrapper-focused,
|
|
14604
|
+
.ant-input-number-affix-wrapper:focus {
|
|
14605
|
+
z-index: 1;
|
|
14606
|
+
}
|
|
14607
|
+
.ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] {
|
|
14608
|
+
background: transparent;
|
|
14609
|
+
}
|
|
14610
|
+
.ant-input-number-affix-wrapper > div.ant-input-number {
|
|
14611
|
+
width: 100%;
|
|
14612
|
+
border: none;
|
|
14613
|
+
outline: none;
|
|
14614
|
+
}
|
|
14615
|
+
.ant-input-number-affix-wrapper > div.ant-input-number.ant-input-number-focused {
|
|
14616
|
+
box-shadow: none !important;
|
|
14617
|
+
}
|
|
14618
|
+
.ant-input-number-affix-wrapper input.ant-input-number-input {
|
|
14619
|
+
padding: 0;
|
|
14620
|
+
}
|
|
14621
|
+
.ant-input-number-affix-wrapper::before {
|
|
14622
|
+
width: 0;
|
|
14623
|
+
visibility: hidden;
|
|
14624
|
+
content: '\a0';
|
|
14625
|
+
}
|
|
14626
|
+
.ant-input-number-prefix {
|
|
14627
|
+
display: flex;
|
|
14628
|
+
flex: none;
|
|
14629
|
+
align-items: center;
|
|
14630
|
+
margin-inline-end: 4px;
|
|
14631
|
+
}
|
|
14632
|
+
.ant-input-number-group-wrapper .ant-input-number-affix-wrapper {
|
|
14633
|
+
width: 100%;
|
|
14634
|
+
}
|
|
14441
14635
|
.ant-input-number {
|
|
14442
14636
|
box-sizing: border-box;
|
|
14443
14637
|
font-variant: tabular-nums;
|
|
@@ -16934,6 +17128,7 @@ textarea.ant-mentions {
|
|
|
16934
17128
|
.ant-modal-centered .ant-modal {
|
|
16935
17129
|
top: 0;
|
|
16936
17130
|
display: inline-block;
|
|
17131
|
+
padding-bottom: 0;
|
|
16937
17132
|
text-align: left;
|
|
16938
17133
|
vertical-align: middle;
|
|
16939
17134
|
}
|
|
@@ -18444,6 +18639,9 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18444
18639
|
margin-right: 8px;
|
|
18445
18640
|
cursor: pointer;
|
|
18446
18641
|
}
|
|
18642
|
+
.ant-radio-wrapper-disabled {
|
|
18643
|
+
cursor: not-allowed;
|
|
18644
|
+
}
|
|
18447
18645
|
.ant-radio-wrapper::after {
|
|
18448
18646
|
display: inline-block;
|
|
18449
18647
|
width: 0;
|
|
@@ -18507,15 +18705,17 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18507
18705
|
}
|
|
18508
18706
|
.ant-radio-inner::after {
|
|
18509
18707
|
position: absolute;
|
|
18510
|
-
top:
|
|
18511
|
-
left:
|
|
18708
|
+
top: 50%;
|
|
18709
|
+
left: 50%;
|
|
18512
18710
|
display: block;
|
|
18513
|
-
width:
|
|
18514
|
-
height:
|
|
18711
|
+
width: 16px;
|
|
18712
|
+
height: 16px;
|
|
18713
|
+
margin-top: -8px;
|
|
18714
|
+
margin-left: -8px;
|
|
18515
18715
|
background-color: #1890ff;
|
|
18516
18716
|
border-top: 0;
|
|
18517
18717
|
border-left: 0;
|
|
18518
|
-
border-radius:
|
|
18718
|
+
border-radius: 16px;
|
|
18519
18719
|
transform: scale(0);
|
|
18520
18720
|
opacity: 0;
|
|
18521
18721
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
@@ -18535,7 +18735,7 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18535
18735
|
border-color: #1890ff;
|
|
18536
18736
|
}
|
|
18537
18737
|
.ant-radio-checked .ant-radio-inner::after {
|
|
18538
|
-
transform: scale(
|
|
18738
|
+
transform: scale(0.5);
|
|
18539
18739
|
opacity: 1;
|
|
18540
18740
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
18541
18741
|
}
|
|
@@ -18924,6 +19124,7 @@ span.ant-radio + * {
|
|
|
18924
19124
|
user-select: none;
|
|
18925
19125
|
}
|
|
18926
19126
|
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
|
|
19127
|
+
transition: none;
|
|
18927
19128
|
pointer-events: none;
|
|
18928
19129
|
}
|
|
18929
19130
|
.ant-select-single .ant-select-selector::after,
|
|
@@ -19983,6 +20184,9 @@ span.ant-radio + * {
|
|
|
19983
20184
|
.ant-slider-disabled {
|
|
19984
20185
|
cursor: not-allowed;
|
|
19985
20186
|
}
|
|
20187
|
+
.ant-slider-disabled .ant-slider-rail {
|
|
20188
|
+
background-color: #f5f5f5 !important;
|
|
20189
|
+
}
|
|
19986
20190
|
.ant-slider-disabled .ant-slider-track {
|
|
19987
20191
|
background-color: rgba(0, 0, 0, 0.25) !important;
|
|
19988
20192
|
}
|