linkmore-design 2.0.23 → 2.0.24

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 (64) hide show
  1. package/dist/default-theme.js +1 -1
  2. package/dist/linkmore-design-with-locales.css +21 -21
  3. package/dist/linkmore-design-with-locales.css.map +1 -1
  4. package/dist/linkmore-design-with-locales.js +1 -1
  5. package/dist/linkmore-design-with-locales.min.css +2 -2
  6. package/dist/linkmore-design-with-locales.min.css.map +1 -1
  7. package/dist/linkmore-design-with-locales.min.js +1 -1
  8. package/dist/linkmore-design.compact.css +62 -63
  9. package/dist/linkmore-design.compact.css.map +1 -1
  10. package/dist/linkmore-design.compact.min.css +2 -2
  11. package/dist/linkmore-design.compact.min.css.map +1 -1
  12. package/dist/linkmore-design.css +61 -62
  13. package/dist/linkmore-design.css.map +1 -1
  14. package/dist/linkmore-design.dark.css +25 -26
  15. package/dist/linkmore-design.dark.css.map +1 -1
  16. package/dist/linkmore-design.dark.min.css +2 -2
  17. package/dist/linkmore-design.dark.min.css.map +1 -1
  18. package/dist/linkmore-design.js +1 -1
  19. package/dist/linkmore-design.min.css +2 -2
  20. package/dist/linkmore-design.min.css.map +1 -1
  21. package/dist/linkmore-design.min.js +1 -1
  22. package/dist/linkmore-design.variable.css +61 -62
  23. package/dist/linkmore-design.variable.css.map +1 -1
  24. package/dist/linkmore-design.variable.min.css +2 -2
  25. package/dist/linkmore-design.variable.min.css.map +1 -1
  26. package/es/cascader/style/index-pure.less +11 -3
  27. package/es/date-picker/style/index-pure.less +1 -1
  28. package/es/drawer/style/drawer.less +1 -0
  29. package/es/input/style/mixin.less +2 -1
  30. package/es/lm-filter/style/index-pure.less +0 -3
  31. package/es/lm-filter/style/variables.less +0 -3
  32. package/es/lm-select/style/index-pure.less +0 -3
  33. package/es/style/themes/default.less +2 -1
  34. package/es/style/themes/variable.less +2 -1
  35. package/es/table/demo/expand.d.ts +3 -0
  36. package/es/table/demo/expand.js +72 -0
  37. package/es/table/demo/filter-in-tree.d.ts +3 -0
  38. package/es/table/demo/filter-in-tree.js +93 -0
  39. package/es/table/demo/filter-search.d.ts +3 -0
  40. package/es/table/demo/filter-search.js +79 -0
  41. package/es/table/demo/head.d.ts +3 -0
  42. package/es/table/demo/head.js +88 -0
  43. package/es/table/demo/narrow.d.ts +3 -0
  44. package/es/table/demo/narrow.js +41 -0
  45. package/lib/cascader/style/index-pure.less +11 -3
  46. package/lib/date-picker/style/index-pure.less +1 -1
  47. package/lib/drawer/style/drawer.less +1 -0
  48. package/lib/input/style/mixin.less +2 -1
  49. package/lib/lm-filter/style/index-pure.less +0 -3
  50. package/lib/lm-filter/style/variables.less +0 -3
  51. package/lib/lm-select/style/index-pure.less +0 -3
  52. package/lib/style/themes/default.less +2 -1
  53. package/lib/style/themes/variable.less +2 -1
  54. package/lib/table/demo/expand.d.ts +3 -0
  55. package/lib/table/demo/expand.js +77 -0
  56. package/lib/table/demo/filter-in-tree.d.ts +3 -0
  57. package/lib/table/demo/filter-in-tree.js +98 -0
  58. package/lib/table/demo/filter-search.d.ts +3 -0
  59. package/lib/table/demo/filter-search.js +84 -0
  60. package/lib/table/demo/head.d.ts +3 -0
  61. package/lib/table/demo/head.js +91 -0
  62. package/lib/table/demo/narrow.d.ts +3 -0
  63. package/lib/table/demo/narrow.js +52 -0
  64. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * linkmore-design v2.0.22
3
+ * linkmore-design v2.0.23
4
4
  *
5
5
  * Copyright 2015-present, Alipay, Inc.
6
6
  * All rights reserved.
@@ -2538,7 +2538,7 @@ html {
2538
2538
  cursor: text;
2539
2539
  }
2540
2540
  .ant-select-disabled.ant-select-multiple .ant-select-selector {
2541
- background: #E5E5E7;
2541
+ background: #f5f7fb;
2542
2542
  cursor: not-allowed;
2543
2543
  }
2544
2544
  .ant-select-multiple .ant-select-selector::after {
@@ -2796,11 +2796,11 @@ html {
2796
2796
  }
2797
2797
  .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
2798
2798
  color: #C0C0C5;
2799
- background: #E5E5E7;
2799
+ background: #f5f7fb;
2800
2800
  cursor: not-allowed;
2801
2801
  }
2802
2802
  .ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
2803
- background: #E5E5E7;
2803
+ background: #f5f7fb;
2804
2804
  }
2805
2805
  .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
2806
2806
  cursor: not-allowed;
@@ -3064,7 +3064,7 @@ html {
3064
3064
  cursor: not-allowed;
3065
3065
  }
3066
3066
  .ant-select-item-option-disabled.ant-select-item-option-selected {
3067
- background-color: #E5E5E7;
3067
+ background-color: #f5f7fb;
3068
3068
  }
3069
3069
  .ant-select-item-option-grouped {
3070
3070
  padding-left: 24px;
@@ -5148,7 +5148,7 @@ li:last-child > .ant-breadcrumb-separator {
5148
5148
  .ant-btn[disabled]:active {
5149
5149
  color: #C0C0C5;
5150
5150
  border-color: #C0C0C5;
5151
- background: #E5E5E7;
5151
+ background: #f5f7fb;
5152
5152
  text-shadow: none;
5153
5153
  -webkit-box-shadow: none;
5154
5154
  box-shadow: none;
@@ -5243,7 +5243,7 @@ li:last-child > .ant-breadcrumb-separator {
5243
5243
  .ant-btn-primary[disabled]:active {
5244
5244
  color: #C0C0C5;
5245
5245
  border-color: #C0C0C5;
5246
- background: #E5E5E7;
5246
+ background: #f5f7fb;
5247
5247
  text-shadow: none;
5248
5248
  -webkit-box-shadow: none;
5249
5249
  box-shadow: none;
@@ -5347,7 +5347,7 @@ li:last-child > .ant-breadcrumb-separator {
5347
5347
  .ant-btn-ghost[disabled]:active {
5348
5348
  color: #C0C0C5;
5349
5349
  border-color: #C0C0C5;
5350
- background: #E5E5E7;
5350
+ background: #f5f7fb;
5351
5351
  text-shadow: none;
5352
5352
  -webkit-box-shadow: none;
5353
5353
  box-shadow: none;
@@ -5431,7 +5431,7 @@ li:last-child > .ant-breadcrumb-separator {
5431
5431
  .ant-btn-dashed[disabled]:active {
5432
5432
  color: #C0C0C5;
5433
5433
  border-color: #C0C0C5;
5434
- background: #E5E5E7;
5434
+ background: #f5f7fb;
5435
5435
  text-shadow: none;
5436
5436
  -webkit-box-shadow: none;
5437
5437
  box-shadow: none;
@@ -5517,7 +5517,7 @@ li:last-child > .ant-breadcrumb-separator {
5517
5517
  .ant-btn-danger[disabled]:active {
5518
5518
  color: #C0C0C5;
5519
5519
  border-color: #C0C0C5;
5520
- background: #E5E5E7;
5520
+ background: #f5f7fb;
5521
5521
  text-shadow: none;
5522
5522
  -webkit-box-shadow: none;
5523
5523
  box-shadow: none;
@@ -5602,7 +5602,7 @@ li:last-child > .ant-breadcrumb-separator {
5602
5602
  .ant-btn-link[disabled]:active {
5603
5603
  color: #C0C0C5;
5604
5604
  border-color: #C0C0C5;
5605
- background: #E5E5E7;
5605
+ background: #f5f7fb;
5606
5606
  text-shadow: none;
5607
5607
  -webkit-box-shadow: none;
5608
5608
  box-shadow: none;
@@ -5724,7 +5724,7 @@ li:last-child > .ant-breadcrumb-separator {
5724
5724
  .ant-btn-text[disabled]:active {
5725
5725
  color: #C0C0C5;
5726
5726
  border-color: #C0C0C5;
5727
- background: #E5E5E7;
5727
+ background: #f5f7fb;
5728
5728
  text-shadow: none;
5729
5729
  -webkit-box-shadow: none;
5730
5730
  box-shadow: none;
@@ -5858,7 +5858,7 @@ li:last-child > .ant-breadcrumb-separator {
5858
5858
  .ant-btn-menu[disabled]:active {
5859
5859
  color: #C0C0C5;
5860
5860
  border-color: #C0C0C5;
5861
- background: #E5E5E7;
5861
+ background: #f5f7fb;
5862
5862
  text-shadow: none;
5863
5863
  -webkit-box-shadow: none;
5864
5864
  box-shadow: none;
@@ -5981,7 +5981,7 @@ li:last-child > .ant-breadcrumb-separator {
5981
5981
  .ant-btn-dangerous[disabled]:active {
5982
5982
  color: #C0C0C5;
5983
5983
  border-color: #C0C0C5;
5984
- background: #E5E5E7;
5984
+ background: #f5f7fb;
5985
5985
  text-shadow: none;
5986
5986
  -webkit-box-shadow: none;
5987
5987
  box-shadow: none;
@@ -6067,7 +6067,7 @@ li:last-child > .ant-breadcrumb-separator {
6067
6067
  .ant-btn-dangerous.ant-btn-primary[disabled]:active {
6068
6068
  color: #C0C0C5;
6069
6069
  border-color: #C0C0C5;
6070
- background: #E5E5E7;
6070
+ background: #f5f7fb;
6071
6071
  text-shadow: none;
6072
6072
  -webkit-box-shadow: none;
6073
6073
  box-shadow: none;
@@ -6152,7 +6152,7 @@ li:last-child > .ant-breadcrumb-separator {
6152
6152
  .ant-btn-dangerous.ant-btn-link[disabled]:active {
6153
6153
  color: #C0C0C5;
6154
6154
  border-color: #C0C0C5;
6155
- background: #E5E5E7;
6155
+ background: #f5f7fb;
6156
6156
  text-shadow: none;
6157
6157
  -webkit-box-shadow: none;
6158
6158
  box-shadow: none;
@@ -6303,7 +6303,7 @@ li:last-child > .ant-breadcrumb-separator {
6303
6303
  .ant-btn-dangerous.ant-btn-text[disabled]:active {
6304
6304
  color: #C0C0C5;
6305
6305
  border-color: #C0C0C5;
6306
- background: #E5E5E7;
6306
+ background: #f5f7fb;
6307
6307
  text-shadow: none;
6308
6308
  -webkit-box-shadow: none;
6309
6309
  box-shadow: none;
@@ -6738,7 +6738,7 @@ a.ant-btn-icon-only > .anticon {
6738
6738
  .ant-btn-background-ghost.ant-btn-primary[disabled]:active {
6739
6739
  color: #C0C0C5;
6740
6740
  border-color: #C0C0C5;
6741
- background: #E5E5E7;
6741
+ background: #f5f7fb;
6742
6742
  text-shadow: none;
6743
6743
  -webkit-box-shadow: none;
6744
6744
  box-shadow: none;
@@ -6819,7 +6819,7 @@ a.ant-btn-icon-only > .anticon {
6819
6819
  .ant-btn-background-ghost.ant-btn-danger[disabled]:active {
6820
6820
  color: #C0C0C5;
6821
6821
  border-color: #C0C0C5;
6822
- background: #E5E5E7;
6822
+ background: #f5f7fb;
6823
6823
  text-shadow: none;
6824
6824
  -webkit-box-shadow: none;
6825
6825
  box-shadow: none;
@@ -6900,7 +6900,7 @@ a.ant-btn-icon-only > .anticon {
6900
6900
  .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
6901
6901
  color: #C0C0C5;
6902
6902
  border-color: #C0C0C5;
6903
- background: #E5E5E7;
6903
+ background: #f5f7fb;
6904
6904
  text-shadow: none;
6905
6905
  -webkit-box-shadow: none;
6906
6906
  box-shadow: none;
@@ -6981,7 +6981,7 @@ a.ant-btn-icon-only > .anticon {
6981
6981
  .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
6982
6982
  color: #C0C0C5;
6983
6983
  border-color: #C0C0C5;
6984
- background: #E5E5E7;
6984
+ background: #f5f7fb;
6985
6985
  text-shadow: none;
6986
6986
  -webkit-box-shadow: none;
6987
6987
  box-shadow: none;
@@ -8888,7 +8888,7 @@ a.ant-btn-sm {
8888
8888
  outline: 0;
8889
8889
  }
8890
8890
  .ant-picker.ant-picker-disabled {
8891
- background: #E5E5E7;
8891
+ background: #f5f7fb;
8892
8892
  border-color: #C0C0C5;
8893
8893
  cursor: not-allowed;
8894
8894
  }
@@ -8985,7 +8985,7 @@ a.ant-btn-sm {
8985
8985
  }
8986
8986
  .ant-picker-input > input-disabled {
8987
8987
  color: #C0C0C5;
8988
- background-color: #E5E5E7;
8988
+ background-color: #f5f7fb;
8989
8989
  border-color: #C0C0C5;
8990
8990
  -webkit-box-shadow: none;
8991
8991
  box-shadow: none;
@@ -8998,7 +8998,7 @@ a.ant-btn-sm {
8998
8998
  }
8999
8999
  .ant-picker-input > input[disabled] {
9000
9000
  color: #C0C0C5;
9001
- background-color: #E5E5E7;
9001
+ background-color: #f5f7fb;
9002
9002
  border-color: #C0C0C5;
9003
9003
  -webkit-box-shadow: none;
9004
9004
  box-shadow: none;
@@ -9068,7 +9068,7 @@ textarea.ant-picker-input > input {
9068
9068
  -ms-flex-item-align: center;
9069
9069
  align-self: center;
9070
9070
  margin-left: 4px;
9071
- color: #C0C0C5;
9071
+ color: #95959e;
9072
9072
  line-height: 1;
9073
9073
  pointer-events: none;
9074
9074
  }
@@ -10438,7 +10438,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
10438
10438
  cursor: not-allowed;
10439
10439
  }
10440
10440
  .ant-radio-disabled .ant-radio-inner {
10441
- background-color: #E5E5E7;
10441
+ background-color: #f5f7fb;
10442
10442
  cursor: not-allowed;
10443
10443
  }
10444
10444
  .ant-radio-disabled .ant-radio-inner::after {
@@ -10587,14 +10587,14 @@ span.ant-radio + * {
10587
10587
  }
10588
10588
  .ant-radio-button-wrapper-disabled {
10589
10589
  color: #C0C0C5;
10590
- background-color: #E5E5E7;
10590
+ background-color: #f5f7fb;
10591
10591
  border-color: #C0C0C5;
10592
10592
  cursor: not-allowed;
10593
10593
  }
10594
10594
  .ant-radio-button-wrapper-disabled:first-child,
10595
10595
  .ant-radio-button-wrapper-disabled:hover {
10596
10596
  color: #C0C0C5;
10597
- background-color: #E5E5E7;
10597
+ background-color: #f5f7fb;
10598
10598
  border-color: #C0C0C5;
10599
10599
  }
10600
10600
  .ant-radio-button-wrapper-disabled:first-child {
@@ -13078,11 +13078,11 @@ span.ant-radio + * {
13078
13078
  pointer-events: none;
13079
13079
  }
13080
13080
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
13081
- background-color: #E5E5E7;
13081
+ background-color: #f5f7fb;
13082
13082
  border-color: #C0C0C5 !important;
13083
13083
  }
13084
13084
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
13085
- border-color: #E5E5E7;
13085
+ border-color: #f5f7fb;
13086
13086
  border-collapse: separate;
13087
13087
  -webkit-animation-name: none;
13088
13088
  animation-name: none;
@@ -13207,8 +13207,7 @@ span.ant-radio + * {
13207
13207
  min-width: 111px;
13208
13208
  height: 180px;
13209
13209
  margin: 0;
13210
- margin: -8px 0;
13211
- padding: 8px 0;
13210
+ padding: 8px;
13212
13211
  overflow: auto;
13213
13212
  vertical-align: top;
13214
13213
  list-style: none;
@@ -13232,6 +13231,11 @@ span.ant-radio + * {
13232
13231
  cursor: pointer;
13233
13232
  -webkit-transition: all 0.3s;
13234
13233
  transition: all 0.3s;
13234
+ border-radius: 4px;
13235
+ margin-bottom: 4px;
13236
+ }
13237
+ .ant-cascader-menu-item:last-child {
13238
+ margin-bottom: 0;
13235
13239
  }
13236
13240
  .ant-cascader-menu-item:hover {
13237
13241
  background: #f5f5f5;
@@ -13460,11 +13464,11 @@ span.ant-radio + * {
13460
13464
  pointer-events: none;
13461
13465
  }
13462
13466
  .ant-checkbox-disabled .ant-checkbox-inner {
13463
- background-color: #E5E5E7;
13467
+ background-color: #f5f7fb;
13464
13468
  border-color: #C0C0C5 !important;
13465
13469
  }
13466
13470
  .ant-checkbox-disabled .ant-checkbox-inner::after {
13467
- border-color: #E5E5E7;
13471
+ border-color: #f5f7fb;
13468
13472
  border-collapse: separate;
13469
13473
  -webkit-animation-name: none;
13470
13474
  animation-name: none;
@@ -20291,6 +20295,7 @@ span.ant-radio + * {
20291
20295
  z-index: 1000;
20292
20296
  -webkit-transition: all 0.3s;
20293
20297
  transition: all 0.3s;
20298
+ border-radius: 12px;
20294
20299
  }
20295
20300
  .ant-drawer-content-wrapper-hidden {
20296
20301
  display: none;
@@ -22004,7 +22009,7 @@ span.ant-radio + * {
22004
22009
  }
22005
22010
  .ant-input-number-affix-wrapper-disabled {
22006
22011
  color: #C0C0C5;
22007
- background-color: #E5E5E7;
22012
+ background-color: #f5f7fb;
22008
22013
  border-color: #C0C0C5;
22009
22014
  -webkit-box-shadow: none;
22010
22015
  box-shadow: none;
@@ -22017,7 +22022,7 @@ span.ant-radio + * {
22017
22022
  }
22018
22023
  .ant-input-number-affix-wrapper[disabled] {
22019
22024
  color: #C0C0C5;
22020
- background-color: #E5E5E7;
22025
+ background-color: #f5f7fb;
22021
22026
  border-color: #C0C0C5;
22022
22027
  -webkit-box-shadow: none;
22023
22028
  box-shadow: none;
@@ -22263,7 +22268,7 @@ textarea.ant-input-number-affix-wrapper {
22263
22268
  }
22264
22269
  .ant-input-number-disabled {
22265
22270
  color: #C0C0C5;
22266
- background-color: #E5E5E7;
22271
+ background-color: #f5f7fb;
22267
22272
  border-color: #C0C0C5;
22268
22273
  -webkit-box-shadow: none;
22269
22274
  box-shadow: none;
@@ -22276,7 +22281,7 @@ textarea.ant-input-number-affix-wrapper {
22276
22281
  }
22277
22282
  .ant-input-number[disabled] {
22278
22283
  color: #C0C0C5;
22279
- background-color: #E5E5E7;
22284
+ background-color: #f5f7fb;
22280
22285
  border-color: #C0C0C5;
22281
22286
  -webkit-box-shadow: none;
22282
22287
  box-shadow: none;
@@ -22685,7 +22690,7 @@ textarea.ant-input-number {
22685
22690
  }
22686
22691
  .ant-input-number-disabled {
22687
22692
  color: #C0C0C5;
22688
- background-color: #E5E5E7;
22693
+ background-color: #f5f7fb;
22689
22694
  border-color: #C0C0C5;
22690
22695
  -webkit-box-shadow: none;
22691
22696
  box-shadow: none;
@@ -23006,7 +23011,7 @@ textarea.ant-input-number {
23006
23011
  }
23007
23012
  .ant-input-affix-wrapper-disabled {
23008
23013
  color: #C0C0C5;
23009
- background-color: #E5E5E7;
23014
+ background-color: #f5f7fb;
23010
23015
  border-color: #C0C0C5;
23011
23016
  -webkit-box-shadow: none;
23012
23017
  box-shadow: none;
@@ -23019,7 +23024,7 @@ textarea.ant-input-number {
23019
23024
  }
23020
23025
  .ant-input-affix-wrapper[disabled] {
23021
23026
  color: #C0C0C5;
23022
- background-color: #E5E5E7;
23027
+ background-color: #f5f7fb;
23023
23028
  border-color: #C0C0C5;
23024
23029
  -webkit-box-shadow: none;
23025
23030
  box-shadow: none;
@@ -23337,7 +23342,7 @@ textarea.ant-input-affix-wrapper {
23337
23342
  }
23338
23343
  .ant-input-disabled {
23339
23344
  color: #C0C0C5;
23340
- background-color: #E5E5E7;
23345
+ background-color: #f5f7fb;
23341
23346
  border-color: #C0C0C5;
23342
23347
  -webkit-box-shadow: none;
23343
23348
  box-shadow: none;
@@ -23350,7 +23355,7 @@ textarea.ant-input-affix-wrapper {
23350
23355
  }
23351
23356
  .ant-input[disabled] {
23352
23357
  color: #C0C0C5;
23353
- background-color: #E5E5E7;
23358
+ background-color: #f5f7fb;
23354
23359
  border-color: #C0C0C5;
23355
23360
  -webkit-box-shadow: none;
23356
23361
  box-shadow: none;
@@ -25016,7 +25021,7 @@ textarea.ant-input {
25016
25021
  }
25017
25022
  .ant-pagination-options-quick-jumper input-disabled {
25018
25023
  color: #C0C0C5;
25019
- background-color: #E5E5E7;
25024
+ background-color: #f5f7fb;
25020
25025
  border-color: #C0C0C5;
25021
25026
  -webkit-box-shadow: none;
25022
25027
  box-shadow: none;
@@ -25029,7 +25034,7 @@ textarea.ant-input {
25029
25034
  }
25030
25035
  .ant-pagination-options-quick-jumper input[disabled] {
25031
25036
  color: #C0C0C5;
25032
- background-color: #E5E5E7;
25037
+ background-color: #f5f7fb;
25033
25038
  border-color: #C0C0C5;
25034
25039
  -webkit-box-shadow: none;
25035
25040
  box-shadow: none;
@@ -25113,7 +25118,7 @@ textarea.ant-pagination-options-quick-jumper input {
25113
25118
  }
25114
25119
  .ant-pagination-simple .ant-pagination-simple-pager input[disabled] {
25115
25120
  color: #C0C0C5;
25116
- background: #E5E5E7;
25121
+ background: #f5f7fb;
25117
25122
  border-color: #C0C0C5;
25118
25123
  cursor: not-allowed;
25119
25124
  }
@@ -25174,7 +25179,7 @@ textarea.ant-pagination-options-quick-jumper input {
25174
25179
  cursor: not-allowed;
25175
25180
  }
25176
25181
  .ant-pagination.ant-pagination-disabled .ant-pagination-item {
25177
- background: #E5E5E7;
25182
+ background: #f5f7fb;
25178
25183
  border-color: #C0C0C5;
25179
25184
  cursor: not-allowed;
25180
25185
  }
@@ -25192,7 +25197,7 @@ textarea.ant-pagination-options-quick-jumper input {
25192
25197
  }
25193
25198
  .ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
25194
25199
  color: #C0C0C5;
25195
- background: #E5E5E7;
25200
+ background: #f5f7fb;
25196
25201
  border-color: #C0C0C5;
25197
25202
  cursor: not-allowed;
25198
25203
  }
@@ -26945,11 +26950,11 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26945
26950
  pointer-events: none;
26946
26951
  }
26947
26952
  .ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
26948
- background-color: #E5E5E7;
26953
+ background-color: #f5f7fb;
26949
26954
  border-color: #C0C0C5 !important;
26950
26955
  }
26951
26956
  .ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
26952
- border-color: #E5E5E7;
26957
+ border-color: #f5f7fb;
26953
26958
  border-collapse: separate;
26954
26959
  -webkit-animation-name: none;
26955
26960
  animation-name: none;
@@ -28151,9 +28156,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
28151
28156
  .ant-select-dropdown.ant-cascader-dropdown {
28152
28157
  padding: 0;
28153
28158
  }
28154
- .ant-select-dropdown.ant-cascader-dropdown .ant-cascader-menu-item {
28155
- padding: 4px 8px;
28156
- }
28157
28159
 
28158
28160
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
28159
28161
  /* stylelint-disable no-duplicate-selectors */
@@ -28540,9 +28542,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
28540
28542
  .ant-select-dropdown.ant-cascader-dropdown {
28541
28543
  padding: 0;
28542
28544
  }
28543
- .ant-select-dropdown.ant-cascader-dropdown .ant-cascader-menu-item {
28544
- padding: 5px 8px;
28545
- }
28546
28545
 
28547
28546
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
28548
28547
  /* stylelint-disable no-duplicate-selectors */
@@ -30100,7 +30099,7 @@ button.ant-table-row-expand-icon::after {
30100
30099
  }
30101
30100
  .ant-mentions-disabled {
30102
30101
  color: #C0C0C5;
30103
- background-color: #E5E5E7;
30102
+ background-color: #f5f7fb;
30104
30103
  border-color: #C0C0C5;
30105
30104
  -webkit-box-shadow: none;
30106
30105
  box-shadow: none;
@@ -30113,7 +30112,7 @@ button.ant-table-row-expand-icon::after {
30113
30112
  }
30114
30113
  .ant-mentions[disabled] {
30115
30114
  color: #C0C0C5;
30116
- background-color: #E5E5E7;
30115
+ background-color: #f5f7fb;
30117
30116
  border-color: #C0C0C5;
30118
30117
  -webkit-box-shadow: none;
30119
30118
  box-shadow: none;
@@ -30153,7 +30152,7 @@ textarea.ant-mentions {
30153
30152
  }
30154
30153
  .ant-mentions-disabled > textarea {
30155
30154
  color: #C0C0C5;
30156
- background-color: #E5E5E7;
30155
+ background-color: #f5f7fb;
30157
30156
  border-color: #C0C0C5;
30158
30157
  -webkit-box-shadow: none;
30159
30158
  box-shadow: none;
@@ -33341,7 +33340,7 @@ textarea.ant-mentions {
33341
33340
  align-items: stretch;
33342
33341
  }
33343
33342
  .ant-transfer-disabled .ant-transfer-list {
33344
- background: #E5E5E7;
33343
+ background: #f5f7fb;
33345
33344
  }
33346
33345
  .ant-transfer-list {
33347
33346
  display: -webkit-box;
@@ -33741,11 +33740,11 @@ textarea.ant-mentions {
33741
33740
  pointer-events: none;
33742
33741
  }
33743
33742
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
33744
- background-color: #E5E5E7;
33743
+ background-color: #f5f7fb;
33745
33744
  border-color: #C0C0C5 !important;
33746
33745
  }
33747
33746
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
33748
- border-color: #E5E5E7;
33747
+ border-color: #f5f7fb;
33749
33748
  border-collapse: separate;
33750
33749
  -webkit-animation-name: none;
33751
33750
  animation-name: none;