@delon/theme 13.4.2 → 13.5.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.
Files changed (59) hide show
  1. package/compact.css +385 -121
  2. package/compact.min.css +1 -1
  3. package/dark.css +394 -130
  4. package/dark.min.css +1 -1
  5. package/default.css +385 -121
  6. package/default.min.css +1 -1
  7. package/esm2020/layout-default/layout-header-item-trigger.directive.mjs +3 -3
  8. package/esm2020/layout-default/layout-header-item.component.mjs +3 -3
  9. package/esm2020/layout-default/layout-header.component.mjs +17 -13
  10. package/esm2020/layout-default/layout-nav.component.mjs +3 -3
  11. package/esm2020/layout-default/layout.component.mjs +3 -3
  12. package/esm2020/layout-default/layout.module.mjs +4 -4
  13. package/esm2020/layout-default/types.mjs +1 -1
  14. package/esm2020/setting-drawer/setting-drawer-item.component.mjs +3 -3
  15. package/esm2020/setting-drawer/setting-drawer.component.mjs +3 -3
  16. package/esm2020/setting-drawer/setting-drawer.module.mjs +4 -4
  17. package/esm2020/src/locale/locale.module.mjs +4 -4
  18. package/esm2020/src/locale/locale.service.mjs +3 -3
  19. package/esm2020/src/pipes/date/date.pipe.mjs +3 -3
  20. package/esm2020/src/pipes/keys/keys.pipe.mjs +3 -3
  21. package/esm2020/src/pipes/safe/html.pipe.mjs +3 -3
  22. package/esm2020/src/pipes/safe/url.pipe.mjs +3 -3
  23. package/esm2020/src/pipes/yn/yn.pipe.mjs +3 -3
  24. package/esm2020/src/services/drawer/drawer.helper.mjs +3 -3
  25. package/esm2020/src/services/http/http.client.mjs +4 -4
  26. package/esm2020/src/services/http/http.decorator.mjs +5 -5
  27. package/esm2020/src/services/i18n/i18n-url.guard.mjs +3 -3
  28. package/esm2020/src/services/i18n/i18n.mjs +6 -6
  29. package/esm2020/src/services/i18n/i18n.pipe.mjs +3 -3
  30. package/esm2020/src/services/menu/menu.service.mjs +3 -3
  31. package/esm2020/src/services/modal/modal.helper.mjs +3 -3
  32. package/esm2020/src/services/responsive/responsive.mjs +3 -3
  33. package/esm2020/src/services/rtl/rtl.service.mjs +3 -3
  34. package/esm2020/src/services/settings/settings.service.mjs +3 -3
  35. package/esm2020/src/services/title/title.service.mjs +3 -3
  36. package/esm2020/src/theme.module.mjs +4 -4
  37. package/esm2020/src/version.mjs +1 -1
  38. package/esm2020/theme-btn/theme-btn.component.mjs +3 -3
  39. package/esm2020/theme-btn/theme-btn.module.mjs +4 -4
  40. package/fesm2015/layout-default.mjs +32 -28
  41. package/fesm2015/layout-default.mjs.map +1 -1
  42. package/fesm2015/setting-drawer.mjs +10 -10
  43. package/fesm2015/setting-drawer.mjs.map +1 -1
  44. package/fesm2015/theme-btn.mjs +7 -7
  45. package/fesm2015/theme.mjs +67 -67
  46. package/fesm2015/theme.mjs.map +1 -1
  47. package/fesm2020/layout-default.mjs +32 -28
  48. package/fesm2020/layout-default.mjs.map +1 -1
  49. package/fesm2020/setting-drawer.mjs +10 -10
  50. package/fesm2020/setting-drawer.mjs.map +1 -1
  51. package/fesm2020/theme-btn.mjs +7 -7
  52. package/fesm2020/theme.mjs +67 -67
  53. package/fesm2020/theme.mjs.map +1 -1
  54. package/layout-default/style/_aside.less +13 -0
  55. package/layout-default/style/fix/_reuse-tab.less +24 -2
  56. package/layout-default/types.d.ts +8 -0
  57. package/package.json +3 -3
  58. package/src/services/http/http.client.d.ts +4 -0
  59. package/src/services/http/http.decorator.d.ts +2 -1
package/dark.css CHANGED
@@ -179,9 +179,6 @@ img {
179
179
  vertical-align: middle;
180
180
  border-style: none;
181
181
  }
182
- svg:not(:root) {
183
- overflow: hidden;
184
- }
185
182
  a,
186
183
  area,
187
184
  button,
@@ -332,7 +329,7 @@ mark {
332
329
  text-align: center;
333
330
  text-transform: none;
334
331
  vertical-align: -0.125em;
335
- text-rendering: optimizeLegibility;
332
+ text-rendering: optimizelegibility;
336
333
  -webkit-font-smoothing: antialiased;
337
334
  -moz-osx-font-smoothing: grayscale;
338
335
  }
@@ -360,6 +357,10 @@ mark {
360
357
  .anticon .anticon-icon {
361
358
  display: block;
362
359
  }
360
+ .anticon > .anticon {
361
+ line-height: 0;
362
+ vertical-align: 0;
363
+ }
363
364
  .anticon[tabindex] {
364
365
  cursor: pointer;
365
366
  }
@@ -2426,7 +2427,7 @@ nz-link {
2426
2427
  top: 100%;
2427
2428
  width: 8px;
2428
2429
  height: 8px;
2429
- color: currentColor;
2430
+ color: currentcolor;
2430
2431
  border: 4px solid;
2431
2432
  transform: scaleY(0.75);
2432
2433
  transform-origin: top;
@@ -2499,7 +2500,7 @@ nz-link {
2499
2500
  }
2500
2501
  .ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner {
2501
2502
  right: 0;
2502
- border-color: currentColor transparent transparent currentColor;
2503
+ border-color: currentcolor transparent transparent currentcolor;
2503
2504
  }
2504
2505
  .ant-ribbon.ant-ribbon-placement-start {
2505
2506
  left: -8px;
@@ -2507,7 +2508,7 @@ nz-link {
2507
2508
  }
2508
2509
  .ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner {
2509
2510
  left: 0;
2510
- border-color: currentColor currentColor transparent transparent;
2511
+ border-color: currentcolor currentcolor transparent transparent;
2511
2512
  }
2512
2513
  .ant-badge-rtl {
2513
2514
  direction: rtl;
@@ -2543,10 +2544,10 @@ nz-link {
2543
2544
  .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner {
2544
2545
  right: unset;
2545
2546
  left: 0;
2546
- border-color: currentColor currentColor transparent transparent;
2547
+ border-color: currentcolor currentcolor transparent transparent;
2547
2548
  }
2548
2549
  .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner::after {
2549
- border-color: currentColor currentColor transparent transparent;
2550
+ border-color: currentcolor currentcolor transparent transparent;
2550
2551
  }
2551
2552
  .ant-ribbon-rtl.ant-ribbon-placement-start {
2552
2553
  right: -8px;
@@ -2557,10 +2558,10 @@ nz-link {
2557
2558
  .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner {
2558
2559
  right: 0;
2559
2560
  left: unset;
2560
- border-color: currentColor transparent transparent currentColor;
2561
+ border-color: currentcolor transparent transparent currentcolor;
2561
2562
  }
2562
2563
  .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after {
2563
- border-color: currentColor transparent transparent currentColor;
2564
+ border-color: currentcolor transparent transparent currentcolor;
2564
2565
  }
2565
2566
  .ant-badge .ant-scroll-number:only-child {
2566
2567
  position: relative;
@@ -2740,7 +2741,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2740
2741
  border-radius: 2px;
2741
2742
  }
2742
2743
  .ant-btn > a:only-child {
2743
- color: currentColor;
2744
+ color: currentcolor;
2744
2745
  }
2745
2746
  .ant-btn > a:only-child::after {
2746
2747
  position: absolute;
@@ -2759,7 +2760,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2759
2760
  }
2760
2761
  .ant-btn:hover > a:only-child,
2761
2762
  .ant-btn:focus > a:only-child {
2762
- color: currentColor;
2763
+ color: currentcolor;
2763
2764
  }
2764
2765
  .ant-btn:hover > a:only-child::after,
2765
2766
  .ant-btn:focus > a:only-child::after {
@@ -2777,7 +2778,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2777
2778
  background: transparent;
2778
2779
  }
2779
2780
  .ant-btn:active > a:only-child {
2780
- color: currentColor;
2781
+ color: currentcolor;
2781
2782
  }
2782
2783
  .ant-btn:active > a:only-child::after {
2783
2784
  position: absolute;
@@ -2802,7 +2803,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2802
2803
  .ant-btn[disabled]:hover > a:only-child,
2803
2804
  .ant-btn[disabled]:focus > a:only-child,
2804
2805
  .ant-btn[disabled]:active > a:only-child {
2805
- color: currentColor;
2806
+ color: currentcolor;
2806
2807
  }
2807
2808
  .ant-btn[disabled] > a:only-child::after,
2808
2809
  .ant-btn[disabled]:hover > a:only-child::after,
@@ -2833,7 +2834,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2833
2834
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
2834
2835
  }
2835
2836
  .ant-btn-primary > a:only-child {
2836
- color: currentColor;
2837
+ color: currentcolor;
2837
2838
  }
2838
2839
  .ant-btn-primary > a:only-child::after {
2839
2840
  position: absolute;
@@ -2852,7 +2853,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2852
2853
  }
2853
2854
  .ant-btn-primary:hover > a:only-child,
2854
2855
  .ant-btn-primary:focus > a:only-child {
2855
- color: currentColor;
2856
+ color: currentcolor;
2856
2857
  }
2857
2858
  .ant-btn-primary:hover > a:only-child::after,
2858
2859
  .ant-btn-primary:focus > a:only-child::after {
@@ -2870,7 +2871,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2870
2871
  background: #3c9be8;
2871
2872
  }
2872
2873
  .ant-btn-primary:active > a:only-child {
2873
- color: currentColor;
2874
+ color: currentcolor;
2874
2875
  }
2875
2876
  .ant-btn-primary:active > a:only-child::after {
2876
2877
  position: absolute;
@@ -2895,7 +2896,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2895
2896
  .ant-btn-primary[disabled]:hover > a:only-child,
2896
2897
  .ant-btn-primary[disabled]:focus > a:only-child,
2897
2898
  .ant-btn-primary[disabled]:active > a:only-child {
2898
- color: currentColor;
2899
+ color: currentcolor;
2899
2900
  }
2900
2901
  .ant-btn-primary[disabled] > a:only-child::after,
2901
2902
  .ant-btn-primary[disabled]:hover > a:only-child::after,
@@ -2936,7 +2937,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2936
2937
  background: transparent;
2937
2938
  }
2938
2939
  .ant-btn-ghost > a:only-child {
2939
- color: currentColor;
2940
+ color: currentcolor;
2940
2941
  }
2941
2942
  .ant-btn-ghost > a:only-child::after {
2942
2943
  position: absolute;
@@ -2955,7 +2956,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2955
2956
  }
2956
2957
  .ant-btn-ghost:hover > a:only-child,
2957
2958
  .ant-btn-ghost:focus > a:only-child {
2958
- color: currentColor;
2959
+ color: currentcolor;
2959
2960
  }
2960
2961
  .ant-btn-ghost:hover > a:only-child::after,
2961
2962
  .ant-btn-ghost:focus > a:only-child::after {
@@ -2973,7 +2974,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2973
2974
  background: transparent;
2974
2975
  }
2975
2976
  .ant-btn-ghost:active > a:only-child {
2976
- color: currentColor;
2977
+ color: currentcolor;
2977
2978
  }
2978
2979
  .ant-btn-ghost:active > a:only-child::after {
2979
2980
  position: absolute;
@@ -2998,7 +2999,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
2998
2999
  .ant-btn-ghost[disabled]:hover > a:only-child,
2999
3000
  .ant-btn-ghost[disabled]:focus > a:only-child,
3000
3001
  .ant-btn-ghost[disabled]:active > a:only-child {
3001
- color: currentColor;
3002
+ color: currentcolor;
3002
3003
  }
3003
3004
  .ant-btn-ghost[disabled] > a:only-child::after,
3004
3005
  .ant-btn-ghost[disabled]:hover > a:only-child::after,
@@ -3019,7 +3020,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3019
3020
  border-style: dashed;
3020
3021
  }
3021
3022
  .ant-btn-dashed > a:only-child {
3022
- color: currentColor;
3023
+ color: currentcolor;
3023
3024
  }
3024
3025
  .ant-btn-dashed > a:only-child::after {
3025
3026
  position: absolute;
@@ -3038,7 +3039,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3038
3039
  }
3039
3040
  .ant-btn-dashed:hover > a:only-child,
3040
3041
  .ant-btn-dashed:focus > a:only-child {
3041
- color: currentColor;
3042
+ color: currentcolor;
3042
3043
  }
3043
3044
  .ant-btn-dashed:hover > a:only-child::after,
3044
3045
  .ant-btn-dashed:focus > a:only-child::after {
@@ -3056,7 +3057,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3056
3057
  background: transparent;
3057
3058
  }
3058
3059
  .ant-btn-dashed:active > a:only-child {
3059
- color: currentColor;
3060
+ color: currentcolor;
3060
3061
  }
3061
3062
  .ant-btn-dashed:active > a:only-child::after {
3062
3063
  position: absolute;
@@ -3081,7 +3082,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3081
3082
  .ant-btn-dashed[disabled]:hover > a:only-child,
3082
3083
  .ant-btn-dashed[disabled]:focus > a:only-child,
3083
3084
  .ant-btn-dashed[disabled]:active > a:only-child {
3084
- color: currentColor;
3085
+ color: currentcolor;
3085
3086
  }
3086
3087
  .ant-btn-dashed[disabled] > a:only-child::after,
3087
3088
  .ant-btn-dashed[disabled]:hover > a:only-child::after,
@@ -3103,7 +3104,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3103
3104
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
3104
3105
  }
3105
3106
  .ant-btn-danger > a:only-child {
3106
- color: currentColor;
3107
+ color: currentcolor;
3107
3108
  }
3108
3109
  .ant-btn-danger > a:only-child::after {
3109
3110
  position: absolute;
@@ -3122,7 +3123,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3122
3123
  }
3123
3124
  .ant-btn-danger:hover > a:only-child,
3124
3125
  .ant-btn-danger:focus > a:only-child {
3125
- color: currentColor;
3126
+ color: currentcolor;
3126
3127
  }
3127
3128
  .ant-btn-danger:hover > a:only-child::after,
3128
3129
  .ant-btn-danger:focus > a:only-child::after {
@@ -3140,7 +3141,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3140
3141
  background: #b33b3d;
3141
3142
  }
3142
3143
  .ant-btn-danger:active > a:only-child {
3143
- color: currentColor;
3144
+ color: currentcolor;
3144
3145
  }
3145
3146
  .ant-btn-danger:active > a:only-child::after {
3146
3147
  position: absolute;
@@ -3165,7 +3166,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3165
3166
  .ant-btn-danger[disabled]:hover > a:only-child,
3166
3167
  .ant-btn-danger[disabled]:focus > a:only-child,
3167
3168
  .ant-btn-danger[disabled]:active > a:only-child {
3168
- color: currentColor;
3169
+ color: currentcolor;
3169
3170
  }
3170
3171
  .ant-btn-danger[disabled] > a:only-child::after,
3171
3172
  .ant-btn-danger[disabled]:hover > a:only-child::after,
@@ -3186,7 +3187,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3186
3187
  box-shadow: none;
3187
3188
  }
3188
3189
  .ant-btn-link > a:only-child {
3189
- color: currentColor;
3190
+ color: currentcolor;
3190
3191
  }
3191
3192
  .ant-btn-link > a:only-child::after {
3192
3193
  position: absolute;
@@ -3205,7 +3206,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3205
3206
  }
3206
3207
  .ant-btn-link:hover > a:only-child,
3207
3208
  .ant-btn-link:focus > a:only-child {
3208
- color: currentColor;
3209
+ color: currentcolor;
3209
3210
  }
3210
3211
  .ant-btn-link:hover > a:only-child::after,
3211
3212
  .ant-btn-link:focus > a:only-child::after {
@@ -3223,7 +3224,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3223
3224
  background: transparent;
3224
3225
  }
3225
3226
  .ant-btn-link:active > a:only-child {
3226
- color: currentColor;
3227
+ color: currentcolor;
3227
3228
  }
3228
3229
  .ant-btn-link:active > a:only-child::after {
3229
3230
  position: absolute;
@@ -3248,7 +3249,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3248
3249
  .ant-btn-link[disabled]:hover > a:only-child,
3249
3250
  .ant-btn-link[disabled]:focus > a:only-child,
3250
3251
  .ant-btn-link[disabled]:active > a:only-child {
3251
- color: currentColor;
3252
+ color: currentcolor;
3252
3253
  }
3253
3254
  .ant-btn-link[disabled] > a:only-child::after,
3254
3255
  .ant-btn-link[disabled]:hover > a:only-child::after,
@@ -3284,7 +3285,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3284
3285
  .ant-btn-link[disabled]:hover > a:only-child,
3285
3286
  .ant-btn-link[disabled]:focus > a:only-child,
3286
3287
  .ant-btn-link[disabled]:active > a:only-child {
3287
- color: currentColor;
3288
+ color: currentcolor;
3288
3289
  }
3289
3290
  .ant-btn-link[disabled] > a:only-child::after,
3290
3291
  .ant-btn-link[disabled]:hover > a:only-child::after,
@@ -3305,7 +3306,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3305
3306
  box-shadow: none;
3306
3307
  }
3307
3308
  .ant-btn-text > a:only-child {
3308
- color: currentColor;
3309
+ color: currentcolor;
3309
3310
  }
3310
3311
  .ant-btn-text > a:only-child::after {
3311
3312
  position: absolute;
@@ -3324,7 +3325,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3324
3325
  }
3325
3326
  .ant-btn-text:hover > a:only-child,
3326
3327
  .ant-btn-text:focus > a:only-child {
3327
- color: currentColor;
3328
+ color: currentcolor;
3328
3329
  }
3329
3330
  .ant-btn-text:hover > a:only-child::after,
3330
3331
  .ant-btn-text:focus > a:only-child::after {
@@ -3342,7 +3343,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3342
3343
  background: transparent;
3343
3344
  }
3344
3345
  .ant-btn-text:active > a:only-child {
3345
- color: currentColor;
3346
+ color: currentcolor;
3346
3347
  }
3347
3348
  .ant-btn-text:active > a:only-child::after {
3348
3349
  position: absolute;
@@ -3367,7 +3368,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3367
3368
  .ant-btn-text[disabled]:hover > a:only-child,
3368
3369
  .ant-btn-text[disabled]:focus > a:only-child,
3369
3370
  .ant-btn-text[disabled]:active > a:only-child {
3370
- color: currentColor;
3371
+ color: currentcolor;
3371
3372
  }
3372
3373
  .ant-btn-text[disabled] > a:only-child::after,
3373
3374
  .ant-btn-text[disabled]:hover > a:only-child::after,
@@ -3406,7 +3407,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3406
3407
  .ant-btn-text[disabled]:hover > a:only-child,
3407
3408
  .ant-btn-text[disabled]:focus > a:only-child,
3408
3409
  .ant-btn-text[disabled]:active > a:only-child {
3409
- color: currentColor;
3410
+ color: currentcolor;
3410
3411
  }
3411
3412
  .ant-btn-text[disabled] > a:only-child::after,
3412
3413
  .ant-btn-text[disabled]:hover > a:only-child::after,
@@ -3426,7 +3427,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3426
3427
  background: transparent;
3427
3428
  }
3428
3429
  .ant-btn-dangerous > a:only-child {
3429
- color: currentColor;
3430
+ color: currentcolor;
3430
3431
  }
3431
3432
  .ant-btn-dangerous > a:only-child::after {
3432
3433
  position: absolute;
@@ -3445,7 +3446,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3445
3446
  }
3446
3447
  .ant-btn-dangerous:hover > a:only-child,
3447
3448
  .ant-btn-dangerous:focus > a:only-child {
3448
- color: currentColor;
3449
+ color: currentcolor;
3449
3450
  }
3450
3451
  .ant-btn-dangerous:hover > a:only-child::after,
3451
3452
  .ant-btn-dangerous:focus > a:only-child::after {
@@ -3463,7 +3464,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3463
3464
  background: transparent;
3464
3465
  }
3465
3466
  .ant-btn-dangerous:active > a:only-child {
3466
- color: currentColor;
3467
+ color: currentcolor;
3467
3468
  }
3468
3469
  .ant-btn-dangerous:active > a:only-child::after {
3469
3470
  position: absolute;
@@ -3488,7 +3489,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3488
3489
  .ant-btn-dangerous[disabled]:hover > a:only-child,
3489
3490
  .ant-btn-dangerous[disabled]:focus > a:only-child,
3490
3491
  .ant-btn-dangerous[disabled]:active > a:only-child {
3491
- color: currentColor;
3492
+ color: currentcolor;
3492
3493
  }
3493
3494
  .ant-btn-dangerous[disabled] > a:only-child::after,
3494
3495
  .ant-btn-dangerous[disabled]:hover > a:only-child::after,
@@ -3510,7 +3511,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3510
3511
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
3511
3512
  }
3512
3513
  .ant-btn-dangerous.ant-btn-primary > a:only-child {
3513
- color: currentColor;
3514
+ color: currentcolor;
3514
3515
  }
3515
3516
  .ant-btn-dangerous.ant-btn-primary > a:only-child::after {
3516
3517
  position: absolute;
@@ -3529,7 +3530,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3529
3530
  }
3530
3531
  .ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
3531
3532
  .ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
3532
- color: currentColor;
3533
+ color: currentcolor;
3533
3534
  }
3534
3535
  .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
3535
3536
  .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
@@ -3547,7 +3548,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3547
3548
  background: #b33b3d;
3548
3549
  }
3549
3550
  .ant-btn-dangerous.ant-btn-primary:active > a:only-child {
3550
- color: currentColor;
3551
+ color: currentcolor;
3551
3552
  }
3552
3553
  .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
3553
3554
  position: absolute;
@@ -3572,7 +3573,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3572
3573
  .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
3573
3574
  .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
3574
3575
  .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
3575
- color: currentColor;
3576
+ color: currentcolor;
3576
3577
  }
3577
3578
  .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
3578
3579
  .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
@@ -3593,7 +3594,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3593
3594
  box-shadow: none;
3594
3595
  }
3595
3596
  .ant-btn-dangerous.ant-btn-link > a:only-child {
3596
- color: currentColor;
3597
+ color: currentcolor;
3597
3598
  }
3598
3599
  .ant-btn-dangerous.ant-btn-link > a:only-child::after {
3599
3600
  position: absolute;
@@ -3612,7 +3613,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3612
3613
  }
3613
3614
  .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
3614
3615
  .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
3615
- color: currentColor;
3616
+ color: currentcolor;
3616
3617
  }
3617
3618
  .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
3618
3619
  .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
@@ -3630,7 +3631,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3630
3631
  background: transparent;
3631
3632
  }
3632
3633
  .ant-btn-dangerous.ant-btn-link:active > a:only-child {
3633
- color: currentColor;
3634
+ color: currentcolor;
3634
3635
  }
3635
3636
  .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
3636
3637
  position: absolute;
@@ -3655,7 +3656,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3655
3656
  .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
3656
3657
  .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
3657
3658
  .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
3658
- color: currentColor;
3659
+ color: currentcolor;
3659
3660
  }
3660
3661
  .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
3661
3662
  .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
@@ -3677,7 +3678,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3677
3678
  }
3678
3679
  .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
3679
3680
  .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
3680
- color: currentColor;
3681
+ color: currentcolor;
3681
3682
  }
3682
3683
  .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
3683
3684
  .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
@@ -3695,7 +3696,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3695
3696
  background: transparent;
3696
3697
  }
3697
3698
  .ant-btn-dangerous.ant-btn-link:active > a:only-child {
3698
- color: currentColor;
3699
+ color: currentcolor;
3699
3700
  }
3700
3701
  .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
3701
3702
  position: absolute;
@@ -3720,7 +3721,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3720
3721
  .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
3721
3722
  .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
3722
3723
  .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
3723
- color: currentColor;
3724
+ color: currentcolor;
3724
3725
  }
3725
3726
  .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
3726
3727
  .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
@@ -3741,7 +3742,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3741
3742
  box-shadow: none;
3742
3743
  }
3743
3744
  .ant-btn-dangerous.ant-btn-text > a:only-child {
3744
- color: currentColor;
3745
+ color: currentcolor;
3745
3746
  }
3746
3747
  .ant-btn-dangerous.ant-btn-text > a:only-child::after {
3747
3748
  position: absolute;
@@ -3760,7 +3761,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3760
3761
  }
3761
3762
  .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
3762
3763
  .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
3763
- color: currentColor;
3764
+ color: currentcolor;
3764
3765
  }
3765
3766
  .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
3766
3767
  .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
@@ -3778,7 +3779,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3778
3779
  background: transparent;
3779
3780
  }
3780
3781
  .ant-btn-dangerous.ant-btn-text:active > a:only-child {
3781
- color: currentColor;
3782
+ color: currentcolor;
3782
3783
  }
3783
3784
  .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
3784
3785
  position: absolute;
@@ -3803,7 +3804,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3803
3804
  .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
3804
3805
  .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
3805
3806
  .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
3806
- color: currentColor;
3807
+ color: currentcolor;
3807
3808
  }
3808
3809
  .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
3809
3810
  .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
@@ -3825,7 +3826,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3825
3826
  }
3826
3827
  .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
3827
3828
  .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
3828
- color: currentColor;
3829
+ color: currentcolor;
3829
3830
  }
3830
3831
  .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
3831
3832
  .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
@@ -3843,7 +3844,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3843
3844
  background: rgba(255, 255, 255, 0.04);
3844
3845
  }
3845
3846
  .ant-btn-dangerous.ant-btn-text:active > a:only-child {
3846
- color: currentColor;
3847
+ color: currentcolor;
3847
3848
  }
3848
3849
  .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
3849
3850
  position: absolute;
@@ -3868,7 +3869,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
3868
3869
  .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
3869
3870
  .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
3870
3871
  .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
3871
- color: currentColor;
3872
+ color: currentcolor;
3872
3873
  }
3873
3874
  .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
3874
3875
  .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
@@ -3979,7 +3980,7 @@ a.ant-btn-icon-only > .anticon {
3979
3980
  }
3980
3981
  .ant-btn .anticon.anticon-plus > svg,
3981
3982
  .ant-btn .anticon.anticon-minus > svg {
3982
- shape-rendering: optimizeSpeed;
3983
+ shape-rendering: optimizespeed;
3983
3984
  }
3984
3985
  .ant-btn.ant-btn-loading {
3985
3986
  position: relative;
@@ -4195,7 +4196,7 @@ a.ant-btn-icon-only > .anticon {
4195
4196
  text-shadow: none;
4196
4197
  }
4197
4198
  .ant-btn-background-ghost.ant-btn-primary > a:only-child {
4198
- color: currentColor;
4199
+ color: currentcolor;
4199
4200
  }
4200
4201
  .ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
4201
4202
  position: absolute;
@@ -4213,7 +4214,7 @@ a.ant-btn-icon-only > .anticon {
4213
4214
  }
4214
4215
  .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
4215
4216
  .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
4216
- color: currentColor;
4217
+ color: currentcolor;
4217
4218
  }
4218
4219
  .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
4219
4220
  .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
@@ -4230,7 +4231,7 @@ a.ant-btn-icon-only > .anticon {
4230
4231
  border-color: #3c9be8;
4231
4232
  }
4232
4233
  .ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
4233
- color: currentColor;
4234
+ color: currentcolor;
4234
4235
  }
4235
4236
  .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
4236
4237
  position: absolute;
@@ -4255,7 +4256,7 @@ a.ant-btn-icon-only > .anticon {
4255
4256
  .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
4256
4257
  .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
4257
4258
  .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
4258
- color: currentColor;
4259
+ color: currentcolor;
4259
4260
  }
4260
4261
  .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
4261
4262
  .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
@@ -4275,7 +4276,7 @@ a.ant-btn-icon-only > .anticon {
4275
4276
  text-shadow: none;
4276
4277
  }
4277
4278
  .ant-btn-background-ghost.ant-btn-danger > a:only-child {
4278
- color: currentColor;
4279
+ color: currentcolor;
4279
4280
  }
4280
4281
  .ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
4281
4282
  position: absolute;
@@ -4293,7 +4294,7 @@ a.ant-btn-icon-only > .anticon {
4293
4294
  }
4294
4295
  .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
4295
4296
  .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
4296
- color: currentColor;
4297
+ color: currentcolor;
4297
4298
  }
4298
4299
  .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
4299
4300
  .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
@@ -4310,7 +4311,7 @@ a.ant-btn-icon-only > .anticon {
4310
4311
  border-color: #b33b3d;
4311
4312
  }
4312
4313
  .ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
4313
- color: currentColor;
4314
+ color: currentcolor;
4314
4315
  }
4315
4316
  .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
4316
4317
  position: absolute;
@@ -4335,7 +4336,7 @@ a.ant-btn-icon-only > .anticon {
4335
4336
  .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
4336
4337
  .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
4337
4338
  .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
4338
- color: currentColor;
4339
+ color: currentcolor;
4339
4340
  }
4340
4341
  .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
4341
4342
  .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
@@ -4355,7 +4356,7 @@ a.ant-btn-icon-only > .anticon {
4355
4356
  text-shadow: none;
4356
4357
  }
4357
4358
  .ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
4358
- color: currentColor;
4359
+ color: currentcolor;
4359
4360
  }
4360
4361
  .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
4361
4362
  position: absolute;
@@ -4373,7 +4374,7 @@ a.ant-btn-icon-only > .anticon {
4373
4374
  }
4374
4375
  .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
4375
4376
  .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
4376
- color: currentColor;
4377
+ color: currentcolor;
4377
4378
  }
4378
4379
  .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
4379
4380
  .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
@@ -4390,7 +4391,7 @@ a.ant-btn-icon-only > .anticon {
4390
4391
  border-color: #b33b3d;
4391
4392
  }
4392
4393
  .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
4393
- color: currentColor;
4394
+ color: currentcolor;
4394
4395
  }
4395
4396
  .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
4396
4397
  position: absolute;
@@ -4415,7 +4416,7 @@ a.ant-btn-icon-only > .anticon {
4415
4416
  .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
4416
4417
  .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
4417
4418
  .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
4418
- color: currentColor;
4419
+ color: currentcolor;
4419
4420
  }
4420
4421
  .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
4421
4422
  .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
@@ -4435,7 +4436,7 @@ a.ant-btn-icon-only > .anticon {
4435
4436
  text-shadow: none;
4436
4437
  }
4437
4438
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
4438
- color: currentColor;
4439
+ color: currentcolor;
4439
4440
  }
4440
4441
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
4441
4442
  position: absolute;
@@ -4453,7 +4454,7 @@ a.ant-btn-icon-only > .anticon {
4453
4454
  }
4454
4455
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
4455
4456
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
4456
- color: currentColor;
4457
+ color: currentcolor;
4457
4458
  }
4458
4459
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
4459
4460
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
@@ -4470,7 +4471,7 @@ a.ant-btn-icon-only > .anticon {
4470
4471
  border-color: transparent;
4471
4472
  }
4472
4473
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
4473
- color: currentColor;
4474
+ color: currentcolor;
4474
4475
  }
4475
4476
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
4476
4477
  position: absolute;
@@ -4495,7 +4496,7 @@ a.ant-btn-icon-only > .anticon {
4495
4496
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
4496
4497
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
4497
4498
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
4498
- color: currentColor;
4499
+ color: currentcolor;
4499
4500
  }
4500
4501
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
4501
4502
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
@@ -4516,7 +4517,7 @@ a.ant-btn-icon-only > .anticon {
4516
4517
  margin-right: -0.34em;
4517
4518
  letter-spacing: 0.34em;
4518
4519
  }
4519
- .ant-btn-block {
4520
+ .ant-btn.ant-btn-block {
4520
4521
  width: 100%;
4521
4522
  }
4522
4523
  .ant-btn:empty {
@@ -5378,6 +5379,7 @@ nz-carousel {
5378
5379
  }
5379
5380
  .ant-checkbox-disabled .ant-checkbox-input {
5380
5381
  cursor: not-allowed;
5382
+ pointer-events: none;
5381
5383
  }
5382
5384
  .ant-checkbox-disabled .ant-checkbox-inner {
5383
5385
  background-color: rgba(255, 255, 255, 0.08);
@@ -6224,7 +6226,7 @@ textarea.ant-picker-input > input {
6224
6226
  display: inline-block;
6225
6227
  width: 7px;
6226
6228
  height: 7px;
6227
- border: 0 solid currentColor;
6229
+ border: 0 solid currentcolor;
6228
6230
  border-width: 1.5px 0 0 1.5px;
6229
6231
  content: '';
6230
6232
  }
@@ -6236,7 +6238,7 @@ textarea.ant-picker-input > input {
6236
6238
  display: inline-block;
6237
6239
  width: 7px;
6238
6240
  height: 7px;
6239
- border: 0 solid currentColor;
6241
+ border: 0 solid currentcolor;
6240
6242
  border-width: 1.5px 0 0 1.5px;
6241
6243
  content: '';
6242
6244
  }
@@ -6809,7 +6811,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
6809
6811
  }
6810
6812
  .ant-descriptions-view {
6811
6813
  width: 100%;
6812
- overflow: hidden;
6813
6814
  border-radius: 2px;
6814
6815
  }
6815
6816
  .ant-descriptions-view table {
@@ -7003,9 +7004,6 @@ nz-descriptions {
7003
7004
  border-style: dashed;
7004
7005
  border-width: 1px 0 0;
7005
7006
  }
7006
- .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed {
7007
- border-top: 0;
7008
- }
7009
7007
  .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
7010
7008
  .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
7011
7009
  border-style: dashed none none;
@@ -7018,6 +7016,24 @@ nz-descriptions {
7018
7016
  font-weight: normal;
7019
7017
  font-size: 14px;
7020
7018
  }
7019
+ .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
7020
+ width: 0;
7021
+ }
7022
+ .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
7023
+ width: 100%;
7024
+ }
7025
+ .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
7026
+ padding-left: 0;
7027
+ }
7028
+ .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
7029
+ width: 100%;
7030
+ }
7031
+ .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
7032
+ width: 0;
7033
+ }
7034
+ .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
7035
+ padding-right: 0;
7036
+ }
7021
7037
  .ant-divider-rtl {
7022
7038
  direction: rtl;
7023
7039
  }
@@ -7707,6 +7723,14 @@ nz-descriptions {
7707
7723
  .ant-dropdown-button {
7708
7724
  white-space: nowrap;
7709
7725
  }
7726
+ .ant-dropdown-button.ant-btn-group > .ant-btn-loading,
7727
+ .ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn {
7728
+ cursor: default;
7729
+ pointer-events: none;
7730
+ }
7731
+ .ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn::before {
7732
+ display: block;
7733
+ }
7710
7734
  .ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) {
7711
7735
  padding-right: 8px;
7712
7736
  padding-left: 8px;
@@ -13211,6 +13235,12 @@ textarea.ant-input-affix-wrapper {
13211
13235
  flex: none;
13212
13236
  align-items: center;
13213
13237
  }
13238
+ .ant-input-show-count-suffix {
13239
+ color: rgba(255, 255, 255, 0.45);
13240
+ }
13241
+ .ant-input-show-count-has-suffix {
13242
+ margin-right: 2px;
13243
+ }
13214
13244
  .ant-input-prefix {
13215
13245
  margin-right: 4px;
13216
13246
  }
@@ -13862,6 +13892,163 @@ textarea.nz-textarea-autosize-measuring {
13862
13892
  width: 40px;
13863
13893
  height: 40px;
13864
13894
  }
13895
+ .ant-input-number-affix-wrapper {
13896
+ position: relative;
13897
+ display: inline-block;
13898
+ width: 100%;
13899
+ min-width: 0;
13900
+ padding: 4px 11px;
13901
+ color: rgba(255, 255, 255, 0.85);
13902
+ font-size: 14px;
13903
+ line-height: 1.5715;
13904
+ background-color: transparent;
13905
+ background-image: none;
13906
+ border: 1px solid #434343;
13907
+ border-radius: 2px;
13908
+ transition: all 0.3s;
13909
+ /* stylelint-disable-next-line selector-no-vendor-prefix */
13910
+ /* stylelint-disable-next-line selector-no-vendor-prefix */
13911
+ position: static;
13912
+ display: inline-flex;
13913
+ width: 90px;
13914
+ padding: 0;
13915
+ padding-inline-start: 11px;
13916
+ }
13917
+ .ant-input-number-affix-wrapper::-moz-placeholder {
13918
+ opacity: 1;
13919
+ }
13920
+ .ant-input-number-affix-wrapper::placeholder {
13921
+ color: rgba(255, 255, 255, 0.3);
13922
+ user-select: none;
13923
+ }
13924
+ .ant-input-number-affix-wrapper:placeholder-shown {
13925
+ text-overflow: ellipsis;
13926
+ }
13927
+ .ant-input-number-affix-wrapper::-moz-placeholder {
13928
+ opacity: 1;
13929
+ }
13930
+ .ant-input-number-affix-wrapper::placeholder {
13931
+ color: rgba(255, 255, 255, 0.3);
13932
+ user-select: none;
13933
+ }
13934
+ .ant-input-number-affix-wrapper:placeholder-shown {
13935
+ text-overflow: ellipsis;
13936
+ }
13937
+ .ant-input-number-affix-wrapper:hover {
13938
+ border-color: #165996;
13939
+ border-right-width: 1px !important;
13940
+ }
13941
+ .ant-input-rtl .ant-input-number-affix-wrapper:hover {
13942
+ border-right-width: 0;
13943
+ border-left-width: 1px !important;
13944
+ }
13945
+ .ant-input-number-affix-wrapper:focus,
13946
+ .ant-input-number-affix-wrapper-focused {
13947
+ border-color: #177ddc;
13948
+ box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
13949
+ border-right-width: 1px !important;
13950
+ outline: 0;
13951
+ }
13952
+ .ant-input-rtl .ant-input-number-affix-wrapper:focus,
13953
+ .ant-input-rtl .ant-input-number-affix-wrapper-focused {
13954
+ border-right-width: 0;
13955
+ border-left-width: 1px !important;
13956
+ }
13957
+ .ant-input-number-affix-wrapper-disabled {
13958
+ background-color: rgba(255, 255, 255, 0.08);
13959
+ border-color: #434343;
13960
+ box-shadow: none;
13961
+ cursor: not-allowed;
13962
+ opacity: 1;
13963
+ color: rgba(255, 255, 255, 0.3);
13964
+ pointer-events: none;
13965
+ }
13966
+ .ant-input-number-affix-wrapper-disabled:hover {
13967
+ border-color: #434343;
13968
+ border-right-width: 1px !important;
13969
+ }
13970
+ .ant-input-number-affix-wrapper[disabled] {
13971
+ background-color: rgba(255, 255, 255, 0.08);
13972
+ border-color: #434343;
13973
+ box-shadow: none;
13974
+ cursor: not-allowed;
13975
+ opacity: 1;
13976
+ color: rgba(255, 255, 255, 0.3);
13977
+ pointer-events: none;
13978
+ }
13979
+ .ant-input-number-affix-wrapper[disabled]:hover {
13980
+ border-color: #434343;
13981
+ border-right-width: 1px !important;
13982
+ }
13983
+ .ant-input-number-affix-wrapper-borderless,
13984
+ .ant-input-number-affix-wrapper-borderless:hover,
13985
+ .ant-input-number-affix-wrapper-borderless:focus,
13986
+ .ant-input-number-affix-wrapper-borderless-focused,
13987
+ .ant-input-number-affix-wrapper-borderless-disabled,
13988
+ .ant-input-number-affix-wrapper-borderless[disabled] {
13989
+ background-color: transparent;
13990
+ border: none;
13991
+ box-shadow: none;
13992
+ }
13993
+ textarea.ant-input-number-affix-wrapper {
13994
+ max-width: 100%;
13995
+ height: auto;
13996
+ min-height: 32px;
13997
+ line-height: 1.5715;
13998
+ vertical-align: bottom;
13999
+ transition: all 0.3s, height 0s;
14000
+ }
14001
+ .ant-input-number-affix-wrapper-lg {
14002
+ padding: 6.5px 11px;
14003
+ font-size: 16px;
14004
+ }
14005
+ .ant-input-number-affix-wrapper-sm {
14006
+ padding: 0px 7px;
14007
+ }
14008
+ .ant-input-number-affix-wrapper-rtl {
14009
+ direction: rtl;
14010
+ }
14011
+ .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
14012
+ border-color: #165996;
14013
+ border-right-width: 1px !important;
14014
+ z-index: 1;
14015
+ }
14016
+ .ant-input-rtl .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
14017
+ border-right-width: 0;
14018
+ border-left-width: 1px !important;
14019
+ }
14020
+ .ant-input-number-affix-wrapper-focused,
14021
+ .ant-input-number-affix-wrapper:focus {
14022
+ z-index: 1;
14023
+ }
14024
+ .ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] {
14025
+ background: transparent;
14026
+ }
14027
+ .ant-input-number-affix-wrapper > div.ant-input-number {
14028
+ width: 100%;
14029
+ border: none;
14030
+ outline: none;
14031
+ }
14032
+ .ant-input-number-affix-wrapper > div.ant-input-number.ant-input-number-focused {
14033
+ box-shadow: none !important;
14034
+ }
14035
+ .ant-input-number-affix-wrapper input.ant-input-number-input {
14036
+ padding: 0;
14037
+ }
14038
+ .ant-input-number-affix-wrapper::before {
14039
+ width: 0;
14040
+ visibility: hidden;
14041
+ content: '\a0';
14042
+ }
14043
+ .ant-input-number-prefix {
14044
+ display: flex;
14045
+ flex: none;
14046
+ align-items: center;
14047
+ margin-inline-end: 4px;
14048
+ }
14049
+ .ant-input-number-group-wrapper .ant-input-number-affix-wrapper {
14050
+ width: 100%;
14051
+ }
13865
14052
  .ant-input-number {
13866
14053
  box-sizing: border-box;
13867
14054
  font-variant: tabular-nums;
@@ -14348,7 +14535,7 @@ textarea.ant-input-number {
14348
14535
  text-align: center;
14349
14536
  text-transform: none;
14350
14537
  vertical-align: -0.125em;
14351
- text-rendering: optimizeLegibility;
14538
+ text-rendering: optimizelegibility;
14352
14539
  -webkit-font-smoothing: antialiased;
14353
14540
  -moz-osx-font-smoothing: grayscale;
14354
14541
  position: absolute;
@@ -14802,10 +14989,11 @@ nz-header {
14802
14989
  }
14803
14990
  .ant-form-horizontal .ant-form-item-control {
14804
14991
  flex: 1 1 0;
14805
- }
14806
- .ant-form-horizontal .ant-form-item-control:not(.ant-col) {
14807
14992
  min-width: 0;
14808
14993
  }
14994
+ .ant-form-horizontal .ant-form-item-label.ant-col-24 + .ant-form-item-control {
14995
+ min-width: unset;
14996
+ }
14809
14997
  .ant-form-vertical .ant-form-item {
14810
14998
  flex-direction: column;
14811
14999
  }
@@ -15020,15 +15208,19 @@ nz-header {
15020
15208
  }
15021
15209
  .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
15022
15210
  .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
15211
+ .ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
15023
15212
  .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
15024
- .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
15213
+ .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover,
15214
+ .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 {
15025
15215
  background-color: transparent;
15026
15216
  border-color: #d89614;
15027
15217
  }
15028
15218
  .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
15029
15219
  .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
15220
+ .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,
15030
15221
  .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
15031
- .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
15222
+ .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,
15223
+ .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 {
15032
15224
  border-color: #d89614;
15033
15225
  box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
15034
15226
  border-right-width: 1px !important;
@@ -15040,7 +15232,8 @@ nz-header {
15040
15232
  border-right-width: 1px !important;
15041
15233
  outline: 0;
15042
15234
  }
15043
- .ant-form-item-has-warning .ant-input-prefix {
15235
+ .ant-form-item-has-warning .ant-input-prefix,
15236
+ .ant-form-item-has-warning .ant-input-number-prefix {
15044
15237
  color: #d89614;
15045
15238
  }
15046
15239
  .ant-form-item-has-warning .ant-input-group-addon,
@@ -15096,15 +15289,19 @@ nz-header {
15096
15289
  }
15097
15290
  .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
15098
15291
  .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
15292
+ .ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
15099
15293
  .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
15100
- .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
15294
+ .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover,
15295
+ .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 {
15101
15296
  background-color: transparent;
15102
15297
  border-color: #a61d24;
15103
15298
  }
15104
15299
  .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
15105
15300
  .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
15301
+ .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,
15106
15302
  .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
15107
- .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
15303
+ .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,
15304
+ .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 {
15108
15305
  border-color: #a61d24;
15109
15306
  box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
15110
15307
  border-right-width: 1px !important;
@@ -15116,7 +15313,8 @@ nz-header {
15116
15313
  border-right-width: 1px !important;
15117
15314
  outline: 0;
15118
15315
  }
15119
- .ant-form-item-has-error .ant-input-prefix {
15316
+ .ant-form-item-has-error .ant-input-prefix,
15317
+ .ant-form-item-has-error .ant-input-number-prefix {
15120
15318
  color: #a61d24;
15121
15319
  }
15122
15320
  .ant-form-item-has-error .ant-input-group-addon,
@@ -15342,6 +15540,11 @@ nz-header {
15342
15540
  .ant-form-item-label-left {
15343
15541
  text-align: left;
15344
15542
  }
15543
+ .ant-form-item-label-wrap {
15544
+ overflow: unset;
15545
+ line-height: 1.3215em;
15546
+ white-space: unset;
15547
+ }
15345
15548
  .ant-form-item-label > label {
15346
15549
  position: relative;
15347
15550
  display: inline-flex;
@@ -15519,6 +15722,9 @@ nz-header {
15519
15722
  .ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input {
15520
15723
  padding: 0;
15521
15724
  }
15725
+ .ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number {
15726
+ padding: 0;
15727
+ }
15522
15728
  .ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix {
15523
15729
  right: auto;
15524
15730
  left: 28px;
@@ -15988,7 +16194,7 @@ nz-list-item-extra {
15988
16194
  content: '';
15989
16195
  }
15990
16196
  .ant-menu.ant-menu-root:focus-visible {
15991
- box-shadow: 0 0 0 2px #111b26;
16197
+ box-shadow: 0 0 0 2px #11263c;
15992
16198
  }
15993
16199
  .ant-menu ul,
15994
16200
  .ant-menu ol {
@@ -16173,7 +16379,7 @@ nz-list-item-extra {
16173
16379
  }
16174
16380
  .ant-menu-item:focus-visible,
16175
16381
  .ant-menu-submenu-title:focus-visible {
16176
- box-shadow: 0 0 0 2px #111b26;
16382
+ box-shadow: 0 0 0 2px #11263c;
16177
16383
  }
16178
16384
  .ant-menu > .ant-menu-item-divider {
16179
16385
  margin: 1px 0;
@@ -16228,7 +16434,7 @@ nz-list-item-extra {
16228
16434
  position: absolute;
16229
16435
  width: 6px;
16230
16436
  height: 1.5px;
16231
- background-color: currentColor;
16437
+ background-color: currentcolor;
16232
16438
  border-radius: 2px;
16233
16439
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
16234
16440
  content: '';
@@ -16572,6 +16778,13 @@ nz-list-item-extra {
16572
16778
  .ant-menu-light .ant-menu-submenu-title:hover {
16573
16779
  color: #177ddc;
16574
16780
  }
16781
+ .ant-menu.ant-menu-root:focus-visible {
16782
+ box-shadow: 0 0 0 2px #388ed3;
16783
+ }
16784
+ .ant-menu-dark .ant-menu-item:focus-visible,
16785
+ .ant-menu-dark .ant-menu-submenu-title:focus-visible {
16786
+ box-shadow: 0 0 0 2px #388ed3;
16787
+ }
16575
16788
  .ant-menu.ant-menu-dark,
16576
16789
  .ant-menu-dark .ant-menu-sub,
16577
16790
  .ant-menu.ant-menu-dark .ant-menu-sub {
@@ -18297,15 +18510,20 @@ nz-page-header-footer {
18297
18510
  .ant-pagination-item a:hover {
18298
18511
  text-decoration: none;
18299
18512
  }
18300
- .ant-pagination-item:focus-visible,
18301
18513
  .ant-pagination-item:hover {
18302
18514
  border-color: #177ddc;
18303
18515
  transition: all 0.3s;
18304
18516
  }
18305
- .ant-pagination-item:focus-visible a,
18306
18517
  .ant-pagination-item:hover a {
18307
18518
  color: #177ddc;
18308
18519
  }
18520
+ .ant-pagination-item:focus-visible {
18521
+ border-color: #177ddc;
18522
+ transition: all 0.3s;
18523
+ }
18524
+ .ant-pagination-item:focus-visible a {
18525
+ color: #177ddc;
18526
+ }
18309
18527
  .ant-pagination-item-active {
18310
18528
  font-weight: 500;
18311
18529
  background: transparent;
@@ -18314,14 +18532,18 @@ nz-page-header-footer {
18314
18532
  .ant-pagination-item-active a {
18315
18533
  color: #177ddc;
18316
18534
  }
18317
- .ant-pagination-item-active:focus-visible,
18318
18535
  .ant-pagination-item-active:hover {
18319
18536
  border-color: #165996;
18320
18537
  }
18321
- .ant-pagination-item-active:focus-visible a,
18538
+ .ant-pagination-item-active:focus-visible {
18539
+ border-color: #165996;
18540
+ }
18322
18541
  .ant-pagination-item-active:hover a {
18323
18542
  color: #165996;
18324
18543
  }
18544
+ .ant-pagination-item-active:focus-visible a {
18545
+ color: #165996;
18546
+ }
18325
18547
  .ant-pagination-jump-prev,
18326
18548
  .ant-pagination-jump-next {
18327
18549
  outline: 0;
@@ -18363,18 +18585,22 @@ nz-page-header-footer {
18363
18585
  opacity: 1;
18364
18586
  transition: all 0.2s;
18365
18587
  }
18366
- .ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon,
18367
- .ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon,
18368
18588
  .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
18369
18589
  .ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
18370
18590
  opacity: 1;
18371
18591
  }
18372
- .ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis,
18373
- .ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis,
18374
18592
  .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
18375
18593
  .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
18376
18594
  opacity: 0;
18377
18595
  }
18596
+ .ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon,
18597
+ .ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon {
18598
+ opacity: 1;
18599
+ }
18600
+ .ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis,
18601
+ .ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis {
18602
+ opacity: 0;
18603
+ }
18378
18604
  .ant-pagination-prev,
18379
18605
  .ant-pagination-jump-prev,
18380
18606
  .ant-pagination-jump-next {
@@ -18427,19 +18653,28 @@ nz-page-header-footer {
18427
18653
  transition: all 0.3s;
18428
18654
  }
18429
18655
  .ant-pagination-prev:focus-visible .ant-pagination-item-link,
18430
- .ant-pagination-next:focus-visible .ant-pagination-item-link,
18656
+ .ant-pagination-next:focus-visible .ant-pagination-item-link {
18657
+ color: #177ddc;
18658
+ border-color: #177ddc;
18659
+ }
18431
18660
  .ant-pagination-prev:hover .ant-pagination-item-link,
18432
18661
  .ant-pagination-next:hover .ant-pagination-item-link {
18433
18662
  color: #177ddc;
18434
18663
  border-color: #177ddc;
18435
18664
  }
18436
18665
  .ant-pagination-disabled,
18437
- .ant-pagination-disabled:hover,
18438
- .ant-pagination-disabled:focus-visible {
18666
+ .ant-pagination-disabled:hover {
18439
18667
  cursor: not-allowed;
18440
18668
  }
18441
18669
  .ant-pagination-disabled .ant-pagination-item-link,
18442
- .ant-pagination-disabled:hover .ant-pagination-item-link,
18670
+ .ant-pagination-disabled:hover .ant-pagination-item-link {
18671
+ color: rgba(255, 255, 255, 0.3);
18672
+ border-color: #434343;
18673
+ cursor: not-allowed;
18674
+ }
18675
+ .ant-pagination-disabled:focus-visible {
18676
+ cursor: not-allowed;
18677
+ }
18443
18678
  .ant-pagination-disabled:focus-visible .ant-pagination-item-link {
18444
18679
  color: rgba(255, 255, 255, 0.3);
18445
18680
  border-color: #434343;
@@ -19639,8 +19874,7 @@ span.ant-radio + * {
19639
19874
  .ant-rate-star > div {
19640
19875
  transition: all 0.3s, outline 0s;
19641
19876
  }
19642
- .ant-rate-star > div:hover,
19643
- .ant-rate-star > div:focus-visible {
19877
+ .ant-rate-star > div:hover {
19644
19878
  transform: scale(1.1);
19645
19879
  }
19646
19880
  .ant-rate-star > div:focus {
@@ -19648,6 +19882,7 @@ span.ant-radio + * {
19648
19882
  }
19649
19883
  .ant-rate-star > div:focus-visible {
19650
19884
  outline: 1px dashed #d8bd14;
19885
+ transform: scale(1.1);
19651
19886
  }
19652
19887
  .ant-rate-star-first,
19653
19888
  .ant-rate-star-second {
@@ -19888,7 +20123,7 @@ span.ant-radio + * {
19888
20123
  text-align: center;
19889
20124
  text-transform: none;
19890
20125
  vertical-align: -0.125em;
19891
- text-rendering: optimizeLegibility;
20126
+ text-rendering: optimizelegibility;
19892
20127
  -webkit-font-smoothing: antialiased;
19893
20128
  -moz-osx-font-smoothing: grayscale;
19894
20129
  display: inline-block;
@@ -19934,8 +20169,6 @@ span.ant-radio + * {
19934
20169
  .ant-select-multiple .ant-select-selection-search {
19935
20170
  position: relative;
19936
20171
  max-width: 100%;
19937
- margin-top: 2px;
19938
- margin-bottom: 2px;
19939
20172
  margin-inline-start: 7px;
19940
20173
  }
19941
20174
  .ant-select-multiple .ant-select-selection-search-input,
@@ -20117,7 +20350,7 @@ span.ant-radio + * {
20117
20350
  line-height: 0;
20118
20351
  text-transform: none;
20119
20352
  vertical-align: -0.125em;
20120
- text-rendering: optimizeLegibility;
20353
+ text-rendering: optimizelegibility;
20121
20354
  -webkit-font-smoothing: antialiased;
20122
20355
  -moz-osx-font-smoothing: grayscale;
20123
20356
  position: absolute;
@@ -20824,6 +21057,9 @@ span.ant-radio + * {
20824
21057
  .ant-slider-disabled {
20825
21058
  cursor: not-allowed;
20826
21059
  }
21060
+ .ant-slider-disabled .ant-slider-rail {
21061
+ background-color: #262626 !important;
21062
+ }
20827
21063
  .ant-slider-disabled .ant-slider-track {
20828
21064
  background-color: rgba(255, 255, 255, 0.3) !important;
20829
21065
  }
@@ -21676,6 +21912,9 @@ nz-spin {
21676
21912
  .ant-steps-navigation.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
21677
21913
  visibility: hidden;
21678
21914
  }
21915
+ .ant-steps-navigation.ant-steps-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
21916
+ visibility: hidden;
21917
+ }
21679
21918
  .ant-steps-rtl {
21680
21919
  direction: rtl;
21681
21920
  }
@@ -22556,12 +22795,12 @@ table tr th.ant-table-selection-column::after {
22556
22795
  .ant-table-row-expand-icon:focus,
22557
22796
  .ant-table-row-expand-icon:hover,
22558
22797
  .ant-table-row-expand-icon:active {
22559
- border-color: currentColor;
22798
+ border-color: currentcolor;
22560
22799
  }
22561
22800
  .ant-table-row-expand-icon::before,
22562
22801
  .ant-table-row-expand-icon::after {
22563
22802
  position: absolute;
22564
- background: currentColor;
22803
+ background: currentcolor;
22565
22804
  transition: transform 0.3s ease-out;
22566
22805
  content: '';
22567
22806
  }
@@ -23472,7 +23711,7 @@ cdk-virtual-scroll-viewport.ant-table-body {
23472
23711
  }
23473
23712
  .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
23474
23713
  color: #177ddc;
23475
- text-shadow: 0 0 0.25px currentColor;
23714
+ text-shadow: 0 0 0.25px currentcolor;
23476
23715
  }
23477
23716
  .ant-tabs-tab.ant-tabs-tab-disabled {
23478
23717
  color: rgba(255, 255, 255, 0.3);
@@ -23790,23 +24029,23 @@ nz-tabs-nav {
23790
24029
  }
23791
24030
  .ant-tag-success {
23792
24031
  color: #49aa19;
23793
- background: #e4ebdd;
23794
- border-color: #a5d184;
24032
+ background: #162312;
24033
+ border-color: #274916;
23795
24034
  }
23796
24035
  .ant-tag-processing {
23797
24036
  color: #177ddc;
23798
- background: #e6f7ff;
23799
- border-color: #94d6ff;
24037
+ background: #111b26;
24038
+ border-color: #153450;
23800
24039
  }
23801
24040
  .ant-tag-error {
23802
24041
  color: #a61d24;
23803
- background: #e6d9d8;
23804
- border-color: #cc8885;
24042
+ background: #2a1215;
24043
+ border-color: #58181c;
23805
24044
  }
23806
24045
  .ant-tag-warning {
23807
24046
  color: #d89614;
23808
- background: #fffbe6;
23809
- border-color: #ffe591;
24047
+ background: #2b1d11;
24048
+ border-color: #593815;
23810
24049
  }
23811
24050
  .ant-tag > .anticon + span,
23812
24051
  .ant-tag > span + .anticon {
@@ -25263,7 +25502,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
25263
25502
  }
25264
25503
  .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'],
25265
25504
  .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'] {
25266
- fill: #e6d9d8;
25505
+ fill: #2a1215;
25267
25506
  }
25268
25507
  .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'],
25269
25508
  .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'] {
@@ -25717,6 +25956,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
25717
25956
  }
25718
25957
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
25719
25958
  cursor: not-allowed;
25959
+ pointer-events: none;
25720
25960
  }
25721
25961
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
25722
25962
  background-color: rgba(255, 255, 255, 0.08);
@@ -26095,6 +26335,7 @@ nz-tree-view .ant-tree-list-holder-inner {
26095
26335
  }
26096
26336
  .ant-tree-checkbox-disabled .ant-tree-checkbox-input {
26097
26337
  cursor: not-allowed;
26338
+ pointer-events: none;
26098
26339
  }
26099
26340
  .ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
26100
26341
  background-color: rgba(255, 255, 255, 0.08);
@@ -26563,6 +26804,7 @@ nz-tree {
26563
26804
  }
26564
26805
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
26565
26806
  cursor: not-allowed;
26807
+ pointer-events: none;
26566
26808
  }
26567
26809
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
26568
26810
  background-color: rgba(255, 255, 255, 0.08);
@@ -27195,9 +27437,9 @@ nz-space-item {
27195
27437
  display: inline-block;
27196
27438
  }
27197
27439
  .ant-image-img {
27198
- display: block;
27199
27440
  width: 100%;
27200
27441
  height: auto;
27442
+ vertical-align: middle;
27201
27443
  }
27202
27444
  .ant-image-img-placeholder {
27203
27445
  background-color: #f5f5f5;
@@ -31490,6 +31732,17 @@ body {
31490
31732
  right: inherit;
31491
31733
  left: 0;
31492
31734
  }
31735
+ @media (max-width: 767px) {
31736
+ [dir='rtl'] .alain-default__content {
31737
+ transform: translate3d(-200px, 0, 0);
31738
+ }
31739
+ [dir='rtl'] .alain-default__collapsed .alain-default__aside {
31740
+ transform: translate3d(100%, 0, 0);
31741
+ }
31742
+ [dir='rtl'] .alain-default__collapsed .alain-default__content {
31743
+ transform: translateZ(0);
31744
+ }
31745
+ }
31493
31746
  .alain-default__progress-bar {
31494
31747
  position: fixed;
31495
31748
  z-index: 29;
@@ -31803,6 +32056,14 @@ body {
31803
32056
  margin-top: 52px;
31804
32057
  }
31805
32058
  }
32059
+ [dir='rtl'] .alain-default__fixed .reuse-tab {
32060
+ right: 224px;
32061
+ left: 24px;
32062
+ }
32063
+ [dir='rtl'] .alain-default__collapsed .reuse-tab {
32064
+ right: 88px;
32065
+ left: 0;
32066
+ }
31806
32067
  .alain-default__nav-item .ant-badge-count {
31807
32068
  top: 6px;
31808
32069
  right: 18px;
@@ -32895,6 +33156,9 @@ ellipsis {
32895
33156
  .reuse-tab__cm .ant-menu {
32896
33157
  border: 1px solid #e9e9e9;
32897
33158
  }
33159
+ .reuse-tab-rtl {
33160
+ direction: rtl;
33161
+ }
32898
33162
  .tag-select {
32899
33163
  position: relative;
32900
33164
  display: block;