@delon/theme 16.4.2 → 17.0.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 (95) hide show
  1. package/compact.css +358 -232
  2. package/compact.min.css +1 -1
  3. package/dark.css +358 -232
  4. package/dark.min.css +1 -1
  5. package/default.css +358 -232
  6. package/default.min.css +1 -1
  7. package/esm2022/layout-default/layout-header-item-trigger.directive.mjs +4 -4
  8. package/esm2022/layout-default/layout-header-item.component.mjs +4 -4
  9. package/esm2022/layout-default/layout-header.component.mjs +48 -32
  10. package/esm2022/layout-default/layout-nav.component.mjs +7 -7
  11. package/esm2022/layout-default/layout-top-menu-item.mjs +4 -4
  12. package/esm2022/layout-default/layout.component.mjs +61 -37
  13. package/esm2022/layout-default/layout.module.mjs +5 -5
  14. package/esm2022/layout-default/layout.service.mjs +5 -5
  15. package/esm2022/public_api.mjs +4 -18
  16. package/esm2022/setting-drawer/setting-drawer-item.component.mjs +10 -11
  17. package/esm2022/setting-drawer/setting-drawer.component.mjs +7 -7
  18. package/esm2022/setting-drawer/setting-drawer.module.mjs +5 -5
  19. package/esm2022/src/config.mjs +1 -1
  20. package/esm2022/src/locale/locale.module.mjs +5 -5
  21. package/esm2022/src/locale/locale.service.mjs +6 -6
  22. package/esm2022/src/pipes/date/date.pipe.mjs +14 -12
  23. package/esm2022/src/pipes/index.mjs +6 -0
  24. package/esm2022/src/pipes/keys/keys.pipe.mjs +5 -5
  25. package/esm2022/src/pipes/safe/html.pipe.mjs +6 -6
  26. package/esm2022/src/pipes/safe/url.pipe.mjs +6 -6
  27. package/esm2022/src/pipes/yn/yn.pipe.mjs +6 -6
  28. package/esm2022/src/provide.mjs +51 -0
  29. package/esm2022/src/services/drawer/drawer.helper.mjs +6 -6
  30. package/esm2022/src/services/http/http.client.mjs +12 -10
  31. package/esm2022/src/services/http/http.decorator.mjs +6 -6
  32. package/esm2022/src/services/i18n/i18n-url.guard.mjs +6 -6
  33. package/esm2022/src/services/i18n/i18n.mjs +8 -8
  34. package/esm2022/src/services/i18n/i18n.pipe.mjs +7 -7
  35. package/esm2022/src/services/index.mjs +11 -0
  36. package/esm2022/src/services/menu/index.mjs +3 -0
  37. package/esm2022/src/services/menu/menu.service.mjs +6 -6
  38. package/esm2022/src/services/modal/modal.helper.mjs +6 -6
  39. package/esm2022/src/services/preloader/preloader.mjs +21 -15
  40. package/esm2022/src/services/responsive/responsive.mjs +5 -5
  41. package/esm2022/src/services/rtl/rtl.service.mjs +6 -6
  42. package/esm2022/src/services/settings/index.mjs +3 -0
  43. package/esm2022/src/services/settings/settings.service.mjs +14 -6
  44. package/esm2022/src/services/title/title.service.mjs +6 -6
  45. package/esm2022/src/theme.module.mjs +9 -28
  46. package/esm2022/src/version.mjs +1 -1
  47. package/esm2022/theme-btn/theme-btn.component.mjs +22 -18
  48. package/esm2022/theme-btn/theme-btn.module.mjs +7 -19
  49. package/fesm2022/layout-default.mjs +131 -91
  50. package/fesm2022/layout-default.mjs.map +1 -1
  51. package/fesm2022/setting-drawer.mjs +22 -22
  52. package/fesm2022/setting-drawer.mjs.map +1 -1
  53. package/fesm2022/theme-btn.mjs +26 -36
  54. package/fesm2022/theme-btn.mjs.map +1 -1
  55. package/fesm2022/theme.mjs +1769 -1732
  56. package/fesm2022/theme.mjs.map +1 -1
  57. package/layout-default/style/_aside.less +9 -9
  58. package/layout-default/style/_header.less +5 -5
  59. package/layout-default/style/_layout.less +7 -7
  60. package/layout-default/style/_progress-bar.less +3 -3
  61. package/layout-default/style/fix/_reuse-tab.less +1 -1
  62. package/layout-default/style/fix/_sidebar-nav.less +5 -5
  63. package/layout-default/style/widgets/_app-icons.less +2 -2
  64. package/layout-default/style/widgets/_user.less +22 -21
  65. package/package.json +4 -4
  66. package/public_api.d.ts +3 -17
  67. package/setting-drawer/style/index.less +9 -9
  68. package/src/config.d.ts +16 -3
  69. package/src/pipes/date/date.pipe.d.ts +3 -4
  70. package/src/pipes/index.d.ts +5 -0
  71. package/src/pipes/keys/keys.pipe.d.ts +1 -1
  72. package/src/pipes/safe/html.pipe.d.ts +1 -1
  73. package/src/pipes/safe/url.pipe.d.ts +1 -1
  74. package/src/pipes/yn/yn.pipe.d.ts +1 -1
  75. package/src/provide.d.ts +23 -0
  76. package/src/services/i18n/i18n.pipe.d.ts +1 -1
  77. package/src/services/index.d.ts +10 -0
  78. package/src/services/menu/index.d.ts +2 -0
  79. package/src/services/preloader/preloader.d.ts +1 -1
  80. package/src/services/settings/index.d.ts +2 -0
  81. package/src/services/settings/settings.service.d.ts +2 -1
  82. package/src/theme.module.d.ts +11 -11
  83. package/system/_preloader.less +3 -4
  84. package/system/antd/_modal.less +3 -3
  85. package/system/antd/_table.less +1 -1
  86. package/system/ng/_preserve-white-spaces.less +1 -0
  87. package/system/utils/_other.less +4 -4
  88. package/system/utils/_position.less +2 -2
  89. package/system/utils/_scrollbar.less +1 -0
  90. package/system/widgets/_abs.less +1 -1
  91. package/system/widgets/_half-float.less +2 -1
  92. package/system/widgets/_masonry-grid.less +2 -1
  93. package/theme-btn/style/index.less +3 -3
  94. package/theme-btn/theme-btn.component.d.ts +3 -3
  95. package/theme-btn/theme-btn.module.d.ts +5 -5
package/default.css CHANGED
@@ -5946,8 +5946,8 @@ nz-comment-content {
5946
5946
  box-shadow: none;
5947
5947
  cursor: not-allowed;
5948
5948
  opacity: 1;
5949
- color: rgba(0, 0, 0, 0.25);
5950
5949
  pointer-events: none;
5950
+ color: rgba(0, 0, 0, 0.25);
5951
5951
  }
5952
5952
  .ant-picker-input > input-disabled:hover {
5953
5953
  border-color: #d9d9d9;
@@ -5959,8 +5959,8 @@ nz-comment-content {
5959
5959
  box-shadow: none;
5960
5960
  cursor: not-allowed;
5961
5961
  opacity: 1;
5962
- color: rgba(0, 0, 0, 0.25);
5963
5962
  pointer-events: none;
5963
+ color: rgba(0, 0, 0, 0.25);
5964
5964
  }
5965
5965
  .ant-picker-input > input[disabled]:hover {
5966
5966
  border-color: #d9d9d9;
@@ -13108,8 +13108,8 @@ nz-empty {
13108
13108
  box-shadow: none;
13109
13109
  cursor: not-allowed;
13110
13110
  opacity: 1;
13111
- color: rgba(0, 0, 0, 0.25);
13112
13111
  pointer-events: none;
13112
+ color: rgba(0, 0, 0, 0.25);
13113
13113
  }
13114
13114
  .ant-input-affix-wrapper-disabled:hover {
13115
13115
  border-color: #d9d9d9;
@@ -13121,8 +13121,8 @@ nz-empty {
13121
13121
  box-shadow: none;
13122
13122
  cursor: not-allowed;
13123
13123
  opacity: 1;
13124
- color: rgba(0, 0, 0, 0.25);
13125
13124
  pointer-events: none;
13125
+ color: rgba(0, 0, 0, 0.25);
13126
13126
  }
13127
13127
  .ant-input-affix-wrapper[disabled]:hover {
13128
13128
  border-color: #d9d9d9;
@@ -13396,8 +13396,8 @@ textarea.ant-input-affix-wrapper {
13396
13396
  box-shadow: none;
13397
13397
  cursor: not-allowed;
13398
13398
  opacity: 1;
13399
- color: rgba(0, 0, 0, 0.25);
13400
13399
  pointer-events: none;
13400
+ color: rgba(0, 0, 0, 0.25);
13401
13401
  }
13402
13402
  .ant-input-disabled:hover {
13403
13403
  border-color: #d9d9d9;
@@ -13409,8 +13409,8 @@ textarea.ant-input-affix-wrapper {
13409
13409
  box-shadow: none;
13410
13410
  cursor: not-allowed;
13411
13411
  opacity: 1;
13412
- color: rgba(0, 0, 0, 0.25);
13413
13412
  pointer-events: none;
13413
+ color: rgba(0, 0, 0, 0.25);
13414
13414
  }
13415
13415
  .ant-input[disabled]:hover {
13416
13416
  border-color: #d9d9d9;
@@ -14058,8 +14058,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
14058
14058
  box-shadow: none;
14059
14059
  cursor: not-allowed;
14060
14060
  opacity: 1;
14061
- color: rgba(0, 0, 0, 0.25);
14062
14061
  pointer-events: none;
14062
+ color: rgba(0, 0, 0, 0.25);
14063
14063
  }
14064
14064
  .ant-input-number-affix-wrapper-disabled:hover {
14065
14065
  border-color: #d9d9d9;
@@ -14071,8 +14071,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
14071
14071
  box-shadow: none;
14072
14072
  cursor: not-allowed;
14073
14073
  opacity: 1;
14074
- color: rgba(0, 0, 0, 0.25);
14075
14074
  pointer-events: none;
14075
+ color: rgba(0, 0, 0, 0.25);
14076
14076
  }
14077
14077
  .ant-input-number-affix-wrapper[disabled]:hover {
14078
14078
  border-color: #d9d9d9;
@@ -14309,8 +14309,8 @@ textarea.ant-input-number-affix-wrapper {
14309
14309
  box-shadow: none;
14310
14310
  cursor: not-allowed;
14311
14311
  opacity: 1;
14312
- color: rgba(0, 0, 0, 0.25);
14313
14312
  pointer-events: none;
14313
+ color: rgba(0, 0, 0, 0.25);
14314
14314
  }
14315
14315
  .ant-input-number-disabled:hover {
14316
14316
  border-color: #d9d9d9;
@@ -14322,8 +14322,8 @@ textarea.ant-input-number-affix-wrapper {
14322
14322
  box-shadow: none;
14323
14323
  cursor: not-allowed;
14324
14324
  opacity: 1;
14325
- color: rgba(0, 0, 0, 0.25);
14326
14325
  pointer-events: none;
14326
+ color: rgba(0, 0, 0, 0.25);
14327
14327
  }
14328
14328
  .ant-input-number[disabled]:hover {
14329
14329
  border-color: #d9d9d9;
@@ -14805,8 +14805,8 @@ textarea.ant-input-number {
14805
14805
  box-shadow: none;
14806
14806
  cursor: not-allowed;
14807
14807
  opacity: 1;
14808
- color: rgba(0, 0, 0, 0.25);
14809
14808
  pointer-events: none;
14809
+ color: rgba(0, 0, 0, 0.25);
14810
14810
  }
14811
14811
  .ant-input-number-disabled:hover {
14812
14812
  border-color: #d9d9d9;
@@ -17065,8 +17065,8 @@ nz-list-item-extra {
17065
17065
  box-shadow: none;
17066
17066
  cursor: not-allowed;
17067
17067
  opacity: 1;
17068
- color: rgba(0, 0, 0, 0.25);
17069
17068
  pointer-events: none;
17069
+ color: rgba(0, 0, 0, 0.25);
17070
17070
  }
17071
17071
  .ant-mentions-disabled:hover {
17072
17072
  border-color: #d9d9d9;
@@ -17078,8 +17078,8 @@ nz-list-item-extra {
17078
17078
  box-shadow: none;
17079
17079
  cursor: not-allowed;
17080
17080
  opacity: 1;
17081
- color: rgba(0, 0, 0, 0.25);
17082
17081
  pointer-events: none;
17082
+ color: rgba(0, 0, 0, 0.25);
17083
17083
  }
17084
17084
  .ant-mentions[disabled]:hover {
17085
17085
  border-color: #d9d9d9;
@@ -17127,8 +17127,8 @@ textarea.ant-mentions {
17127
17127
  box-shadow: none;
17128
17128
  cursor: not-allowed;
17129
17129
  opacity: 1;
17130
- color: rgba(0, 0, 0, 0.25);
17131
17130
  pointer-events: none;
17131
+ color: rgba(0, 0, 0, 0.25);
17132
17132
  }
17133
17133
  .ant-mentions-disabled > textarea:hover {
17134
17134
  border-color: #d9d9d9;
@@ -18432,8 +18432,8 @@ nz-page-header-footer {
18432
18432
  box-shadow: none;
18433
18433
  cursor: not-allowed;
18434
18434
  opacity: 1;
18435
- color: rgba(0, 0, 0, 0.25);
18436
18435
  pointer-events: none;
18436
+ color: rgba(0, 0, 0, 0.25);
18437
18437
  }
18438
18438
  .ant-pagination-options-quick-jumper input-disabled:hover {
18439
18439
  border-color: #d9d9d9;
@@ -18445,8 +18445,8 @@ nz-page-header-footer {
18445
18445
  box-shadow: none;
18446
18446
  cursor: not-allowed;
18447
18447
  opacity: 1;
18448
- color: rgba(0, 0, 0, 0.25);
18449
18448
  pointer-events: none;
18449
+ color: rgba(0, 0, 0, 0.25);
18450
18450
  }
18451
18451
  .ant-pagination-options-quick-jumper input[disabled]:hover {
18452
18452
  border-color: #d9d9d9;
@@ -22838,37 +22838,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
22838
22838
  .ant-table-sticky-scroll-bar-active {
22839
22839
  background-color: rgba(0, 0, 0, 0.8);
22840
22840
  }
22841
- .ant-table-custom-column col {
22842
- width: auto !important;
22843
- min-width: auto !important;
22844
- display: none;
22845
- }
22846
- .ant-table-custom-column .ant-table-thead .ant-table-row {
22847
- width: 100%;
22848
- display: flex;
22849
- justify-content: space-between;
22850
- }
22851
- .ant-table-custom-column .ant-table-thead .ant-table-row th {
22852
- overflow: hidden;
22853
- }
22854
- .ant-table-custom-column .ant-table-tbody .ant-table-row {
22855
- width: 100%;
22856
- display: flex;
22857
- justify-content: space-between;
22858
- }
22859
- .ant-table-custom-column .ant-table-tbody .ant-table-row td {
22860
- overflow: hidden;
22861
- }
22862
- .ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td {
22863
- width: 100%;
22864
- }
22865
- .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
22866
- .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
22867
- overflow: visible;
22868
- }
22869
- .ant-table-custom-column .ant-table-fixed .ant-table-row {
22870
- width: 100%;
22871
- }
22872
22841
  @media all and (-ms-high-contrast: none) {
22873
22842
  .ant-table-ping-left .ant-table-cell-fix-left-last::after {
22874
22843
  box-shadow: none !important;
@@ -23053,6 +23022,42 @@ cdk-virtual-scroll-viewport.ant-table-body {
23053
23022
  .ant-table.ant-table-bordered.ant-table-small > .ant-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td > .ant-table-expanded-row-fixed {
23054
23023
  margin: -8px -9px;
23055
23024
  }
23025
+ .ant-table-custom-column col {
23026
+ width: auto !important;
23027
+ min-width: auto !important;
23028
+ display: none;
23029
+ }
23030
+ .ant-table-custom-column .ant-table-thead .ant-table-row,
23031
+ .ant-table-custom-column .ant-table-thead tr {
23032
+ width: 100%;
23033
+ display: flex;
23034
+ justify-content: space-between;
23035
+ }
23036
+ .ant-table-custom-column .ant-table-thead .ant-table-row th,
23037
+ .ant-table-custom-column .ant-table-thead tr th {
23038
+ overflow: hidden;
23039
+ }
23040
+ .ant-table-custom-column .ant-table-tbody .ant-table-row,
23041
+ .ant-table-custom-column .ant-table-tbody tr {
23042
+ width: 100%;
23043
+ display: flex;
23044
+ justify-content: space-between;
23045
+ }
23046
+ .ant-table-custom-column .ant-table-tbody .ant-table-row td,
23047
+ .ant-table-custom-column .ant-table-tbody tr td {
23048
+ overflow: hidden;
23049
+ }
23050
+ .ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td,
23051
+ .ant-table-custom-column .ant-table-tbody tr .nz-disable-td {
23052
+ width: 100%;
23053
+ }
23054
+ .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
23055
+ .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
23056
+ overflow: visible;
23057
+ }
23058
+ .ant-table-custom-column .ant-table-fixed .ant-table-row {
23059
+ width: 100%;
23060
+ }
23056
23061
  .ant-tabs-small > .ant-tabs-nav .ant-tabs-tab {
23057
23062
  padding: 8px 0;
23058
23063
  font-size: 14px;
@@ -27732,9 +27737,6 @@ nz-space-item {
27732
27737
  align-items: center;
27733
27738
  padding-left: 16px;
27734
27739
  }
27735
- .ant-cron-expression-preview-content-date {
27736
- flex: 1 1 auto;
27737
- }
27738
27740
  .ant-cron-expression-preview-list,
27739
27741
  .ant-cron-expression-preview-icon {
27740
27742
  list-style: none;
@@ -27752,18 +27754,13 @@ nz-space-item {
27752
27754
  height: 132px;
27753
27755
  }
27754
27756
  .ant-cron-expression-preview-icon {
27755
- height: 100%;
27757
+ flex: 0 0 16px;
27758
+ display: flex;
27759
+ justify-content: center;
27756
27760
  }
27757
27761
  .ant-cron-expression-error {
27758
27762
  color: #ff4d4f;
27759
27763
  }
27760
- .ant-cron-expression-hint p {
27761
- display: flex;
27762
- }
27763
- .ant-cron-expression-hint span {
27764
- display: inline-block;
27765
- min-width: 40px;
27766
- }
27767
27764
  .ant-qrcode {
27768
27765
  display: inline-block;
27769
27766
  position: relative;
@@ -28024,6 +28021,130 @@ nz-space-item {
28024
28021
  width: 16px;
28025
28022
  height: 16px;
28026
28023
  }
28024
+ .ant-hashCode {
28025
+ box-sizing: border-box;
28026
+ margin: 0;
28027
+ padding: 0;
28028
+ color: rgba(0, 0, 0, 0.85);
28029
+ font-size: 14px;
28030
+ line-height: 1.5715;
28031
+ list-style: none;
28032
+ display: flex;
28033
+ flex-direction: column;
28034
+ align-items: center;
28035
+ justify-content: center;
28036
+ cursor: pointer;
28037
+ }
28038
+ .ant-hashCode-header-copy {
28039
+ margin-left: 8px;
28040
+ cursor: pointer;
28041
+ opacity: 0.45;
28042
+ }
28043
+ .ant-hashCode-header {
28044
+ display: flex;
28045
+ justify-content: left;
28046
+ width: 100%;
28047
+ height: 22px;
28048
+ padding-bottom: 8px;
28049
+ }
28050
+ .ant-hashCode-header .ant-hashCode-header-title {
28051
+ font-size: 14px;
28052
+ line-height: 1.5715;
28053
+ text-align: center;
28054
+ opacity: 0.45;
28055
+ }
28056
+ .ant-hashCode-header .ant-hashCode-header-logo {
28057
+ display: flex;
28058
+ flex: 1;
28059
+ justify-content: right;
28060
+ }
28061
+ .ant-hashCode-double {
28062
+ width: 172px;
28063
+ }
28064
+ .ant-hashCode-double.ant-hashCode-primary {
28065
+ width: 220px;
28066
+ }
28067
+ .ant-hashCode-single {
28068
+ display: flex;
28069
+ flex-direction: row-reverse;
28070
+ width: 236px;
28071
+ }
28072
+ .ant-hashCode-single.ant-hashCode-primary {
28073
+ width: 284px;
28074
+ }
28075
+ .ant-hashCode-single .ant-hashCode-header-copy {
28076
+ margin-top: 8px;
28077
+ }
28078
+ .ant-hashCode-strip {
28079
+ width: 350px;
28080
+ }
28081
+ .ant-hashCode-strip.ant-hashCode-primary {
28082
+ width: 398px;
28083
+ }
28084
+ .ant-hashCode-rect {
28085
+ display: flex;
28086
+ flex-direction: row-reverse;
28087
+ width: 196px;
28088
+ }
28089
+ .ant-hashCode-rect.ant-hashCode-primary {
28090
+ width: 244px;
28091
+ }
28092
+ .ant-hashCode-primary {
28093
+ padding: 24px;
28094
+ background-color: #1890ff;
28095
+ border-radius: 24px;
28096
+ }
28097
+ .ant-hashCode-primary .ant-hashCode-header-copy {
28098
+ opacity: 1;
28099
+ }
28100
+ .ant-hashCode-primary .ant-hashCode-header-title,
28101
+ .ant-hashCode-primary .ant-hashCode-header-copy,
28102
+ .ant-hashCode-primary .ant-hashCode-header-logo {
28103
+ color: rgba(255, 255, 255, 0.85);
28104
+ }
28105
+ .ant-hashCode-contant {
28106
+ width: 100%;
28107
+ height: 100%;
28108
+ }
28109
+ .ant-hashCode-code-value {
28110
+ display: flex;
28111
+ flex-wrap: wrap;
28112
+ gap: 0 10px;
28113
+ justify-content: space-between;
28114
+ height: 35px;
28115
+ overflow: hidden;
28116
+ }
28117
+ .ant-hashCode-code-value-block {
28118
+ height: 16px;
28119
+ font-size: 14px;
28120
+ font-family: Menlo;
28121
+ }
28122
+ .ant-hashCode-value-primary .ant-hashCode-code-value-block {
28123
+ color: #fff;
28124
+ }
28125
+ .ant-hashCode-texaure-double {
28126
+ width: 175px;
28127
+ height: 36px;
28128
+ }
28129
+ .ant-hashCode-texaure {
28130
+ position: absolute;
28131
+ margin-top: -35px;
28132
+ overflow: hidden;
28133
+ }
28134
+ .ant-hashCode-texaure-single {
28135
+ width: 210px;
28136
+ height: 28px;
28137
+ margin-top: -21px;
28138
+ }
28139
+ .ant-hashCode-texaure-strip {
28140
+ width: 350px;
28141
+ height: 36px;
28142
+ }
28143
+ .ant-hashCode-texaure-rect {
28144
+ width: 175px;
28145
+ height: 72px;
28146
+ margin-top: -71px;
28147
+ }
28027
28148
  sf + st {
28028
28149
  margin-top: 16px;
28029
28150
  }
@@ -28045,6 +28166,7 @@ nz-button-group + nz-popconfirm {
28045
28166
  .ant-transfer-operation .ant-btn + .ant-btn {
28046
28167
  margin-left: initial;
28047
28168
  }
28169
+ /* stylelint-disable-next-line order/order */
28048
28170
  [dir='rtl'] .ant-btn + .ant-btn,
28049
28171
  [dir='rtl'] .ant-btn + nz-popconfirm,
28050
28172
  [dir='rtl'] nz-popconfirm + .ant-btn,
@@ -28276,16 +28398,16 @@ a:focus {
28276
28398
  * ```
28277
28399
  */
28278
28400
  margin: 0;
28279
- color: rgba(0, 0, 0, 0.85);
28280
- font-weight: 500;
28281
28401
  font-size: 16px;
28402
+ font-weight: 500;
28282
28403
  line-height: 22px;
28404
+ color: rgba(0, 0, 0, 0.85);
28283
28405
  word-wrap: break-word;
28284
28406
  }
28285
28407
  .modal-title small {
28286
28408
  margin-left: 8px;
28287
- color: #8c8c8c;
28288
28409
  font-size: 12px;
28410
+ color: #8c8c8c;
28289
28411
  }
28290
28412
  .modal-spin {
28291
28413
  display: block;
@@ -28386,8 +28508,8 @@ a:focus {
28386
28508
  align-items: center;
28387
28509
  width: 100%;
28388
28510
  padding: 8px 8px;
28389
- white-space: inherit;
28390
28511
  text-align: left !important;
28512
+ white-space: inherit;
28391
28513
  border-bottom: none;
28392
28514
  }
28393
28515
  .ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
@@ -28507,6 +28629,7 @@ fieldset {
28507
28629
  */
28508
28630
  .half-float {
28509
28631
  position: relative;
28632
+ /* stylelint-disable-next-line order/order */
28510
28633
  }
28511
28634
  .half-float img {
28512
28635
  display: block;
@@ -28515,8 +28638,8 @@ fieldset {
28515
28638
  }
28516
28639
  .half-float .half-float-bottom {
28517
28640
  position: absolute;
28518
- left: 50%;
28519
28641
  z-index: 2;
28642
+ left: 50%;
28520
28643
  }
28521
28644
  .half-float.half-float-sm {
28522
28645
  margin-bottom: 42px;
@@ -28561,10 +28684,10 @@ fieldset {
28561
28684
  */
28562
28685
  .row-masonry {
28563
28686
  position: relative;
28687
+ column-gap: 16px;
28564
28688
  width: 100%;
28565
28689
  margin: 0;
28566
28690
  padding: 0;
28567
- column-gap: 16px;
28568
28691
  }
28569
28692
  .row-masonry > .col-masonry {
28570
28693
  display: inline-block;
@@ -28575,6 +28698,7 @@ fieldset {
28575
28698
  .row-masonry img {
28576
28699
  max-width: 100%;
28577
28700
  }
28701
+ /* stylelint-disable-next-line order/order */
28578
28702
  @media only screen and (min-width: 480px) {
28579
28703
  .row-masonry-xs-1 {
28580
28704
  column-count: 1;
@@ -28819,6 +28943,7 @@ fieldset {
28819
28943
  padding-bottom: 0;
28820
28944
  }
28821
28945
  .sf__array-container .ant-card .sf__array-remove {
28946
+ cursor: pointer;
28822
28947
  position: absolute;
28823
28948
  top: -16px;
28824
28949
  right: -16px;
@@ -28830,7 +28955,6 @@ fieldset {
28830
28955
  text-align: center;
28831
28956
  background: rgba(0, 0, 0, 0.26);
28832
28957
  border-radius: 50%;
28833
- cursor: pointer;
28834
28958
  }
28835
28959
  .sf__array-container .ant-card .sf__array-remove i {
28836
28960
  color: #fff;
@@ -28861,8 +28985,8 @@ fieldset {
28861
28985
  }
28862
28986
  }
28863
28987
  .sf .ant-upload-select-picture-card i {
28864
- color: #999;
28865
28988
  font-size: 32px;
28989
+ color: #999;
28866
28990
  }
28867
28991
  .sf .ant-upload.ant-upload-drag {
28868
28992
  height: 180px;
@@ -28977,30 +29101,32 @@ fieldset {
28977
29101
  }
28978
29102
  .setting-drawer__title {
28979
29103
  margin-bottom: 12px;
28980
- color: rgba(0, 0, 0, 0.85);
28981
29104
  font-size: 14px;
28982
29105
  line-height: 22px;
29106
+ color: rgba(0, 0, 0, 0.85);
28983
29107
  }
28984
29108
  .setting-drawer__theme {
28985
- margin-top: 24px;
28986
29109
  overflow: hidden;
29110
+ margin-top: 24px;
28987
29111
  }
28988
29112
  .setting-drawer__theme-tag {
29113
+ cursor: pointer;
28989
29114
  float: left;
28990
29115
  width: 20px;
28991
29116
  height: 20px;
28992
29117
  margin-right: 8px;
28993
- color: #fff;
28994
29118
  font-weight: bold;
29119
+ color: #fff;
28995
29120
  text-align: center;
28996
29121
  border-radius: 2px;
28997
- cursor: pointer;
28998
29122
  }
28999
29123
  .setting-drawer__handle {
29124
+ pointer-events: auto;
29125
+ cursor: pointer;
29000
29126
  position: fixed;
29127
+ z-index: 999;
29001
29128
  top: 240px;
29002
29129
  right: 0;
29003
- z-index: 999;
29004
29130
  display: flex;
29005
29131
  align-items: center;
29006
29132
  justify-content: center;
@@ -29010,17 +29136,15 @@ fieldset {
29010
29136
  text-align: center;
29011
29137
  background: #1890ff;
29012
29138
  border-radius: 4px 0 0 4px;
29013
- cursor: pointer;
29014
29139
  transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
29015
- pointer-events: auto;
29016
29140
  }
29017
29141
  .setting-drawer__handle-icon {
29018
- color: #fff;
29019
29142
  font-size: 20px;
29143
+ color: #fff;
29020
29144
  }
29021
29145
  .setting-drawer__handle-opened {
29022
- right: 500px;
29023
29146
  z-index: 1001;
29147
+ right: 500px;
29024
29148
  }
29025
29149
  .setting-drawer-rtl {
29026
29150
  direction: rtl;
@@ -29035,20 +29159,20 @@ fieldset {
29035
29159
  left: 500px;
29036
29160
  }
29037
29161
  .theme-btn {
29162
+ cursor: pointer;
29038
29163
  position: fixed;
29164
+ z-index: 2147483640;
29039
29165
  right: 32px;
29040
29166
  bottom: 102px;
29041
- z-index: 2147483640;
29042
29167
  display: flex;
29043
29168
  flex-direction: column;
29044
- cursor: pointer;
29045
29169
  }
29046
29170
  .theme-btn-active {
29047
29171
  width: 44px;
29048
29172
  height: 44px;
29049
- color: #1890ff;
29050
29173
  font-size: 22px;
29051
29174
  line-height: 44px;
29175
+ color: #1890ff;
29052
29176
  }
29053
29177
  .theme-btn .ant-avatar {
29054
29178
  color: #000;
@@ -30682,9 +30806,9 @@ code {
30682
30806
  *
30683
30807
  * 元素不能被用户缩放
30684
30808
  */
30809
+ resize: none;
30685
30810
  min-width: 100%;
30686
30811
  max-width: 100%;
30687
- resize: none;
30688
30812
  }
30689
30813
  .no-data {
30690
30814
  /**
@@ -30692,9 +30816,9 @@ code {
30692
30816
  *
30693
30817
  * 无数据元素
30694
30818
  */
30695
- color: rgba(0, 0, 0, 0.25);
30696
30819
  font-size: 16px;
30697
30820
  line-height: 64px;
30821
+ color: rgba(0, 0, 0, 0.25);
30698
30822
  text-align: center;
30699
30823
  }
30700
30824
  .no-data i {
@@ -30727,8 +30851,8 @@ code {
30727
30851
  */
30728
30852
  .page-loading {
30729
30853
  position: absolute;
30730
- inset: 0;
30731
30854
  z-index: 10000;
30855
+ inset: 0;
30732
30856
  padding-top: 200px;
30733
30857
  text-align: center;
30734
30858
  background: #f5f5f5;
@@ -30743,8 +30867,8 @@ code {
30743
30867
  * 禁用样式,不可响应任何事件
30744
30868
  */
30745
30869
  .disabled {
30746
- color: rgba(0, 0, 0, 0.25);
30747
30870
  pointer-events: none;
30871
+ color: rgba(0, 0, 0, 0.25);
30748
30872
  }
30749
30873
  /**
30750
30874
  * Positioning method: nothing
@@ -30793,10 +30917,10 @@ code {
30793
30917
  */
30794
30918
  .fixed-top {
30795
30919
  position: fixed;
30920
+ z-index: 9;
30796
30921
  top: 0;
30797
30922
  right: 0;
30798
30923
  left: 0;
30799
- z-index: 9;
30800
30924
  }
30801
30925
  /**
30802
30926
  * Full screen fixed bottom
@@ -30805,10 +30929,10 @@ code {
30805
30929
  */
30806
30930
  .fixed-bottom {
30807
30931
  position: fixed;
30932
+ z-index: 9;
30808
30933
  right: 0;
30809
30934
  bottom: 0;
30810
30935
  left: 0;
30811
- z-index: 9;
30812
30936
  }
30813
30937
  /**
30814
30938
  * If overflow is clipped, a scroll-bar should be added to see the rest of the content
@@ -31796,6 +31920,7 @@ code {
31796
31920
  .scrollbar-y {
31797
31921
  overflow: hidden auto;
31798
31922
  }
31923
+ /* stylelint-disable-next-line order/order */
31799
31924
  body,
31800
31925
  .scrollbar,
31801
31926
  .ant-dialog-wrap,
@@ -31836,9 +31961,9 @@ textarea.ant-input::-webkit-scrollbar-thumb {
31836
31961
  outline: 1px solid #333;
31837
31962
  }
31838
31963
  html {
31839
- height: 100%;
31840
- direction: ltr;
31841
31964
  touch-action: manipulation;
31965
+ direction: ltr;
31966
+ height: 100%;
31842
31967
  }
31843
31968
  html,
31844
31969
  body,
@@ -31851,11 +31976,11 @@ body {
31851
31976
  }
31852
31977
  .alain-default {
31853
31978
  position: relative;
31979
+ overflow-x: hidden;
31854
31980
  display: block;
31855
31981
  width: 100%;
31856
31982
  height: auto;
31857
31983
  min-height: 100%;
31858
- overflow-x: hidden;
31859
31984
  }
31860
31985
  .alain-default__unwrap {
31861
31986
  margin-right: -24px;
@@ -31886,20 +32011,20 @@ body {
31886
32011
  }
31887
32012
  .alain-default__content-title > h1 {
31888
32013
  margin-bottom: 0;
31889
- font-weight: normal;
31890
32014
  font-size: 18px;
32015
+ font-weight: normal;
31891
32016
  }
31892
32017
  .alain-default__content-title > h1 > small {
31893
32018
  display: block;
31894
- color: #8c8c8c;
31895
32019
  font-size: 12px;
32020
+ color: #8c8c8c;
31896
32021
  }
31897
32022
  .alain-default__content nz-input-group {
31898
32023
  width: auto;
31899
32024
  }
31900
32025
  .alain-default__hide-aside .alain-default__content {
31901
- margin-left: 24px !important;
31902
32026
  transform: none !important;
32027
+ margin-left: 24px !important;
31903
32028
  }
31904
32029
  .alain-default__hide-header .alain-default__aside {
31905
32030
  margin-top: 0;
@@ -31983,6 +32108,7 @@ body {
31983
32108
  color: #fff;
31984
32109
  }
31985
32110
  .alain-default__nav-item {
32111
+ cursor: pointer;
31986
32112
  display: block;
31987
32113
  min-width: 50px;
31988
32114
  padding: 8px 2px;
@@ -31990,7 +32116,6 @@ body {
31990
32116
  text-align: center;
31991
32117
  border-radius: 2px;
31992
32118
  outline: none;
31993
- cursor: pointer;
31994
32119
  transition: background-color 300ms;
31995
32120
  }
31996
32121
  .alain-default__nav-item:hover {
@@ -31999,8 +32124,8 @@ body {
31999
32124
  }
32000
32125
  .alain-default__nav-item > i,
32001
32126
  .alain-default__nav-item-icon {
32002
- font-size: 18px !important;
32003
32127
  transform: none !important;
32128
+ font-size: 18px !important;
32004
32129
  }
32005
32130
  .alain-default__top-menu-item {
32006
32131
  display: flex;
@@ -32014,8 +32139,8 @@ body {
32014
32139
  background-color: rgba(255, 255, 255, 0.2);
32015
32140
  }
32016
32141
  .alain-default__top-menu-item-disabled {
32017
- opacity: 0.5;
32018
32142
  pointer-events: none;
32143
+ opacity: 0.5;
32019
32144
  }
32020
32145
  .alain-default__search {
32021
32146
  position: relative;
@@ -32065,15 +32190,15 @@ body {
32065
32190
  }
32066
32191
  .alain-default__search-focus .ant-input-group-addon i,
32067
32192
  .alain-default__search-focus .ant-input-affix-wrapper i {
32068
- color: #595959;
32069
32193
  transform: rotate(90deg);
32194
+ color: #595959;
32070
32195
  }
32071
32196
  @media (max-width: 767px) {
32072
32197
  .alain-default__search {
32073
32198
  position: absolute;
32199
+ z-index: 29;
32074
32200
  top: 0;
32075
32201
  left: 0;
32076
- z-index: 29;
32077
32202
  align-items: center;
32078
32203
  width: 100%;
32079
32204
  height: 100%;
@@ -32115,24 +32240,24 @@ body {
32115
32240
  }
32116
32241
  .alain-default__aside {
32117
32242
  position: absolute;
32243
+ z-index: 14;
32118
32244
  top: 0;
32119
32245
  bottom: 0;
32120
- z-index: 14;
32246
+ overflow: hidden;
32121
32247
  width: 200px;
32122
32248
  margin-top: 64px;
32123
- overflow: hidden;
32124
- background-color: #fff;
32125
32249
  backface-visibility: hidden;
32250
+ background-color: #fff;
32126
32251
  transition: width 0.2s cubic-bezier(0.25, 0, 0.15, 1), translate 0.2s cubic-bezier(0.25, 0, 0.15, 1);
32127
32252
  -webkit-overflow-scrolling: touch;
32128
32253
  }
32129
32254
  .alain-default__aside::after {
32255
+ content: '';
32130
32256
  position: absolute;
32131
32257
  top: 0;
32132
32258
  right: 0;
32133
32259
  bottom: 0;
32134
32260
  border-right: 1px solid #efe3e5;
32135
- content: '';
32136
32261
  }
32137
32262
  .alain-default__aside-wrap {
32138
32263
  display: flex;
@@ -32140,12 +32265,12 @@ body {
32140
32265
  height: 100%;
32141
32266
  }
32142
32267
  .alain-default__aside-inner {
32268
+ scrollbar-width: none;
32269
+ scroll-snap-type: proximity;
32270
+ overflow: hidden scroll;
32143
32271
  flex: 1 1 0%;
32144
- overflow-x: hidden scroll;
32145
32272
  -webkit-overflow-scrolling: touch;
32146
- scroll-snap-type: proximity;
32147
32273
  scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
32148
- scrollbar-width: none;
32149
32274
  }
32150
32275
  .alain-default__aside-inner::-webkit-scrollbar {
32151
32276
  width: 0;
@@ -32161,10 +32286,10 @@ body {
32161
32286
  border-top: 1px solid #efe3e5;
32162
32287
  }
32163
32288
  .alain-default__aside-link-collapsed {
32289
+ cursor: pointer;
32164
32290
  padding: 8px 0;
32165
32291
  font-size: 16px;
32166
32292
  text-align: center;
32167
- cursor: pointer;
32168
32293
  }
32169
32294
  @media (min-width: 768px) {
32170
32295
  .alain-default__collapsed .alain-default__aside {
@@ -32204,18 +32329,18 @@ body {
32204
32329
  .alain-default__progress-bar {
32205
32330
  position: fixed;
32206
32331
  z-index: 29;
32332
+ overflow: hidden;
32207
32333
  width: 100vw;
32208
32334
  height: 4px;
32209
- overflow: hidden;
32210
32335
  background: rgba(221, 221, 221, 0.4);
32211
32336
  }
32212
32337
  .alain-default__progress-bar::after {
32338
+ content: ' ';
32339
+ transform-origin: top left;
32213
32340
  display: block;
32214
32341
  width: 33.3vw;
32215
32342
  height: 100%;
32216
- transform-origin: top left;
32217
32343
  animation: gradcolours 5s steps(1) infinite, loadthird 1s infinite linear;
32218
- content: ' ';
32219
32344
  }
32220
32345
  @keyframes loadthird {
32221
32346
  0% {
@@ -32256,15 +32381,15 @@ body {
32256
32381
  transition: border-left-color 0.4s ease;
32257
32382
  }
32258
32383
  .sidebar-nav__item-link {
32384
+ user-select: none;
32259
32385
  position: relative;
32386
+ overflow: hidden;
32260
32387
  display: block;
32261
32388
  padding: 8px 32px 8px 16px;
32262
- overflow: hidden;
32263
32389
  color: rgba(0, 0, 0, 0.85);
32264
- white-space: nowrap;
32265
32390
  text-decoration: none !important;
32266
32391
  text-overflow: ellipsis;
32267
- user-select: none;
32392
+ white-space: nowrap;
32268
32393
  }
32269
32394
  .sidebar-nav__item-link:hover {
32270
32395
  color: #1890ff;
@@ -32316,8 +32441,8 @@ body {
32316
32441
  color: rgba(0, 0, 0, 0.45);
32317
32442
  }
32318
32443
  .sidebar-nav__sub {
32319
- display: none;
32320
32444
  overflow: hidden;
32445
+ display: none;
32321
32446
  }
32322
32447
  .sidebar-nav__sub .sidebar-nav__item {
32323
32448
  border-left: 0 !important;
@@ -32331,6 +32456,7 @@ body {
32331
32456
  }
32332
32457
  .sidebar-nav__sub-arrow::before,
32333
32458
  .sidebar-nav__sub-arrow::after {
32459
+ content: '';
32334
32460
  position: absolute;
32335
32461
  width: 6px;
32336
32462
  height: 1.5px;
@@ -32338,7 +32464,6 @@ body {
32338
32464
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
32339
32465
  border-radius: 2px;
32340
32466
  transition: background-color 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);
32341
- content: '';
32342
32467
  }
32343
32468
  .sidebar-nav__sub-arrow::before {
32344
32469
  transform: rotate(-45deg) translateX(2px);
@@ -32490,10 +32615,10 @@ body {
32490
32615
  }
32491
32616
  .alain-default__fixed .reuse-tab {
32492
32617
  position: fixed;
32618
+ z-index: 10;
32493
32619
  top: 64px;
32494
32620
  right: 24px;
32495
32621
  left: 224px;
32496
- z-index: 10;
32497
32622
  }
32498
32623
  .alain-default__collapsed .reuse-tab {
32499
32624
  left: 88px;
@@ -32533,10 +32658,10 @@ body {
32533
32658
  padding: 16px;
32534
32659
  }
32535
32660
  .app-icons .ant-col-6 {
32661
+ cursor: pointer;
32536
32662
  padding: 16px 0;
32537
32663
  text-align: center;
32538
32664
  border-radius: 4px;
32539
- cursor: pointer;
32540
32665
  transition: background-color 300ms;
32541
32666
  }
32542
32667
  .app-icons .ant-col-6:hover {
@@ -32550,42 +32675,30 @@ body {
32550
32675
  .app-icons small {
32551
32676
  display: block;
32552
32677
  padding-top: 4px;
32553
- color: #9c9c9c;
32554
32678
  font-size: 14px;
32679
+ color: #9c9c9c;
32555
32680
  }
32556
32681
  .alain-default__aside-user {
32682
+ cursor: pointer;
32557
32683
  display: flex;
32558
32684
  align-items: center;
32559
32685
  justify-content: center;
32560
32686
  margin: 24px 24px 0 24px;
32561
- cursor: pointer;
32562
32687
  }
32563
32688
  .alain-default__aside-user .ant-dropdown-trigger {
32564
32689
  display: flex;
32565
32690
  align-items: center;
32566
32691
  }
32567
32692
  .alain-default__aside-user-info {
32568
- flex: 1;
32569
32693
  overflow: hidden;
32694
+ flex: 1;
32570
32695
  color: rgba(0, 0, 0, 0.85);
32571
- white-space: nowrap;
32572
32696
  text-overflow: ellipsis;
32697
+ white-space: nowrap;
32573
32698
  }
32574
32699
  .alain-default__aside-user-avatar {
32575
32700
  margin-right: 8px;
32576
32701
  }
32577
- @media (min-width: 768px) {
32578
- .alain-default__collapsed .alain-default__aside-user {
32579
- width: 64px;
32580
- margin-left: 0;
32581
- }
32582
- .alain-default__collapsed .alain-default__aside-user-info {
32583
- display: none;
32584
- }
32585
- .alain-default__collapsed .alain-default__aside-user-avatar {
32586
- margin: 0 auto;
32587
- }
32588
- }
32589
32702
  [dir='rtl'] .alain-default__aside-user-avatar {
32590
32703
  margin-right: 0;
32591
32704
  margin-left: 8px;
@@ -32598,6 +32711,18 @@ body {
32598
32711
  margin: 0 auto;
32599
32712
  }
32600
32713
  }
32714
+ @media (min-width: 768px) {
32715
+ .alain-default__collapsed .alain-default__aside-user {
32716
+ width: 64px;
32717
+ margin-left: 0;
32718
+ }
32719
+ .alain-default__collapsed .alain-default__aside-user-info {
32720
+ display: none;
32721
+ }
32722
+ .alain-default__collapsed .alain-default__aside-user-avatar {
32723
+ margin: 0 auto;
32724
+ }
32725
+ }
32601
32726
  .alain-default__fixed .alain-default__header {
32602
32727
  position: fixed;
32603
32728
  top: 0;
@@ -32626,13 +32751,13 @@ body {
32626
32751
  display: block;
32627
32752
  }
32628
32753
  .st__p-left .ant-table-pagination {
32629
- display: block;
32630
32754
  float: none;
32755
+ display: block;
32631
32756
  text-align: left;
32632
32757
  }
32633
32758
  .st__p-center .ant-table-pagination {
32634
- display: block;
32635
32759
  float: none;
32760
+ display: block;
32636
32761
  text-align: center;
32637
32762
  }
32638
32763
  .st__btn-sub .st__btn-text {
@@ -32640,8 +32765,8 @@ body {
32640
32765
  color: inherit;
32641
32766
  }
32642
32767
  .st__btn-disabled .st__btn-text {
32643
- color: rgba(0, 0, 0, 0.25);
32644
32768
  pointer-events: none;
32769
+ color: rgba(0, 0, 0, 0.25);
32645
32770
  }
32646
32771
  .st .nz-resizable-handle {
32647
32772
  display: flex;
@@ -32728,8 +32853,8 @@ body {
32728
32853
  @media screen and (min-width: 768px) {
32729
32854
  .st__width-strict .ant-table-content > table,
32730
32855
  .st__width-strict .ant-table-body > table {
32731
- word-wrap: break-word !important;
32732
32856
  table-layout: fixed !important;
32857
+ word-wrap: break-word !important;
32733
32858
  }
32734
32859
  }
32735
32860
  .sv {
@@ -32742,15 +32867,15 @@ body {
32742
32867
  display: block;
32743
32868
  }
32744
32869
  .sv__container .ant-row {
32745
- margin-bottom: -16px;
32746
32870
  overflow: hidden;
32871
+ margin-bottom: -16px;
32747
32872
  }
32748
32873
  .sv__item-fixed {
32749
32874
  display: flex;
32750
32875
  }
32751
32876
  .sv__item-fixed .sv__label {
32752
- flex: 0 0 auto;
32753
32877
  overflow: hidden;
32878
+ flex: 0 0 auto;
32754
32879
  text-align: right;
32755
32880
  text-overflow: ellipsis;
32756
32881
  }
@@ -32761,27 +32886,27 @@ body {
32761
32886
  margin: 0 0 16px 0;
32762
32887
  }
32763
32888
  .sv__title {
32764
- display: block;
32765
32889
  float: none;
32766
32890
  clear: both;
32891
+ display: block;
32767
32892
  width: 100%;
32768
32893
  margin-bottom: 16px;
32769
- color: rgba(0, 0, 0, 0.85);
32770
- font-weight: 500;
32771
32894
  font-size: 14px;
32895
+ font-weight: 500;
32896
+ color: rgba(0, 0, 0, 0.85);
32772
32897
  }
32773
32898
  .sv__label {
32774
32899
  display: table-cell;
32775
32900
  padding-bottom: 16px;
32776
- color: rgba(0, 0, 0, 0.5);
32777
32901
  line-height: 22px;
32902
+ color: rgba(0, 0, 0, 0.5);
32778
32903
  white-space: nowrap;
32779
32904
  }
32780
32905
  .sv__label:not(.sv__label-empty)::after {
32906
+ content: ':';
32781
32907
  position: relative;
32782
32908
  top: -0.5px;
32783
32909
  margin: 0 8px 0 2px;
32784
- content: ':';
32785
32910
  }
32786
32911
  .sv__label-optional {
32787
32912
  margin-left: 2px;
@@ -32797,10 +32922,10 @@ body {
32797
32922
  display: table-cell;
32798
32923
  width: 100%;
32799
32924
  padding-bottom: 16px;
32800
- color: rgba(0, 0, 0, 0.85);
32801
32925
  line-height: 22px;
32802
- vertical-align: top;
32926
+ color: rgba(0, 0, 0, 0.85);
32803
32927
  word-break: break-all;
32928
+ vertical-align: top;
32804
32929
  }
32805
32930
  .sv__type-primary .sv__detail {
32806
32931
  color: #1890ff;
@@ -32842,9 +32967,9 @@ body {
32842
32967
  }
32843
32968
  .sv__value-prefix,
32844
32969
  .sv__value-unit {
32845
- color: rgba(0, 0, 0, 0.5);
32846
32970
  font-size: 12px;
32847
32971
  font-style: normal;
32972
+ color: rgba(0, 0, 0, 0.5);
32848
32973
  }
32849
32974
  .sv__value-prefix {
32850
32975
  padding-right: 3px;
@@ -32861,11 +32986,11 @@ body {
32861
32986
  padding-left: 14px;
32862
32987
  }
32863
32988
  .sv__value:not(:first-child)::before {
32989
+ content: '/';
32864
32990
  position: absolute;
32865
32991
  left: 0;
32866
32992
  width: 6px;
32867
32993
  color: rgba(0, 0, 0, 0.5);
32868
- content: '/';
32869
32994
  }
32870
32995
  .sv__value-small .sv__value-text {
32871
32996
  font-size: 14px;
@@ -32921,14 +33046,14 @@ body {
32921
33046
  padding: 8px 16px;
32922
33047
  }
32923
33048
  .se__title {
32924
- display: block;
32925
33049
  float: none;
32926
33050
  clear: both;
33051
+ display: block;
32927
33052
  width: 100%;
32928
- color: rgba(0, 0, 0, 0.85);
32929
- font-weight: 700;
32930
33053
  font-size: 14px;
33054
+ font-weight: 700;
32931
33055
  line-height: 1.5715;
33056
+ color: rgba(0, 0, 0, 0.85);
32932
33057
  }
32933
33058
  .se__item {
32934
33059
  transition: none;
@@ -32938,8 +33063,8 @@ body {
32938
33063
  padding-bottom: 0;
32939
33064
  }
32940
33065
  .se__item-empty::before {
32941
- display: inline-block;
32942
33066
  content: '';
33067
+ display: inline-block;
32943
33068
  }
32944
33069
  .se__item + .ant-divider {
32945
33070
  margin: 0 0 24px 0;
@@ -32948,8 +33073,8 @@ body {
32948
33073
  display: table-cell;
32949
33074
  flex: 0 0 auto;
32950
33075
  width: initial;
32951
- white-space: nowrap;
32952
33076
  text-align: right;
33077
+ white-space: nowrap;
32953
33078
  }
32954
33079
  .se__label-optional {
32955
33080
  margin-left: 2px;
@@ -33064,8 +33189,8 @@ body {
33064
33189
  font-size: 14px;
33065
33190
  }
33066
33191
  .avatar-list__item .ant-avatar {
33067
- border: 1px solid #fff;
33068
33192
  cursor: pointer;
33193
+ border: 1px solid #fff;
33069
33194
  }
33070
33195
  .avatar-list__large {
33071
33196
  width: 40px;
@@ -33095,9 +33220,9 @@ ellipsis {
33095
33220
  display: inline;
33096
33221
  }
33097
33222
  .ellipsis {
33223
+ overflow: hidden;
33098
33224
  display: inline-block;
33099
33225
  width: 100%;
33100
- overflow: hidden;
33101
33226
  word-break: break-all;
33102
33227
  }
33103
33228
  .ellipsis__lines {
@@ -33105,9 +33230,9 @@ ellipsis {
33105
33230
  }
33106
33231
  .ellipsis__line-clamp {
33107
33232
  position: relative;
33233
+ overflow: hidden;
33108
33234
  /* stylelint-disable-next-line value-no-vendor-prefix */
33109
33235
  display: -webkit-box;
33110
- overflow: hidden;
33111
33236
  text-overflow: ellipsis;
33112
33237
  }
33113
33238
  .ellipsis__shadow {
@@ -33118,17 +33243,17 @@ ellipsis {
33118
33243
  opacity: 0;
33119
33244
  }
33120
33245
  .error-collect {
33246
+ cursor: pointer;
33121
33247
  padding-right: 24px;
33122
33248
  color: #f5222d;
33123
- cursor: pointer;
33124
33249
  }
33125
33250
  .error-collect__count {
33126
33251
  padding-left: 8px;
33127
33252
  }
33128
33253
  .error-collect-rtl {
33254
+ direction: rtl;
33129
33255
  padding-right: 0;
33130
33256
  padding-left: 24px;
33131
- direction: rtl;
33132
33257
  }
33133
33258
  .error-collect-rtl .error-collect__count {
33134
33259
  padding-right: 8px;
@@ -33140,15 +33265,15 @@ ellipsis {
33140
33265
  height: 100%;
33141
33266
  }
33142
33267
  .exception__img-block {
33268
+ zoom: 1;
33143
33269
  flex: 0 0 62.5%;
33144
33270
  width: 62.5%;
33145
33271
  padding-right: 152px;
33146
- zoom: 1;
33147
33272
  }
33148
33273
  .exception__img-block::before,
33149
33274
  .exception__img-block::after {
33150
- display: table;
33151
33275
  content: ' ';
33276
+ display: table;
33152
33277
  }
33153
33278
  .exception__img-block::after {
33154
33279
  clear: both;
@@ -33170,16 +33295,16 @@ ellipsis {
33170
33295
  }
33171
33296
  .exception__cont-title {
33172
33297
  margin-bottom: 24px;
33173
- color: #434e59;
33174
- font-weight: 600;
33175
33298
  font-size: 72px;
33299
+ font-weight: 600;
33176
33300
  line-height: 72px;
33301
+ color: #434e59;
33177
33302
  }
33178
33303
  .exception__cont-desc {
33179
33304
  margin-bottom: 16px;
33180
- color: rgba(0, 0, 0, 0.45);
33181
33305
  font-size: 20px;
33182
33306
  line-height: 28px;
33307
+ color: rgba(0, 0, 0, 0.45);
33183
33308
  }
33184
33309
  .exception__cont-actions .ant-btn:not(:last-child) {
33185
33310
  margin-right: 8px;
@@ -33201,8 +33326,8 @@ ellipsis {
33201
33326
  }
33202
33327
  @media screen and (max-width: 480px) {
33203
33328
  .exception__img-block {
33204
- margin-bottom: -24px;
33205
33329
  overflow: hidden;
33330
+ margin-bottom: -24px;
33206
33331
  }
33207
33332
  }
33208
33333
  .exception-rtl {
@@ -33213,9 +33338,9 @@ ellipsis {
33213
33338
  }
33214
33339
  .footer-toolbar {
33215
33340
  position: fixed;
33341
+ z-index: 9;
33216
33342
  right: 0;
33217
33343
  bottom: 0;
33218
- z-index: 9;
33219
33344
  display: flex;
33220
33345
  width: 100%;
33221
33346
  height: 56px;
@@ -33230,9 +33355,9 @@ ellipsis {
33230
33355
  flex: 1;
33231
33356
  }
33232
33357
  .full-content {
33358
+ overflow: auto;
33233
33359
  display: block;
33234
33360
  height: 100%;
33235
- overflow: auto;
33236
33361
  }
33237
33362
  .full-content__body {
33238
33363
  overflow: hidden;
@@ -33258,8 +33383,8 @@ ellipsis {
33258
33383
  color: rgba(0, 0, 0, 0.85);
33259
33384
  }
33260
33385
  .global-footer__copyright {
33261
- color: rgba(0, 0, 0, 0.45);
33262
33386
  font-size: 14px;
33387
+ color: rgba(0, 0, 0, 0.45);
33263
33388
  }
33264
33389
  .global-footer-rtl {
33265
33390
  direction: rtl;
@@ -33272,8 +33397,8 @@ ellipsis {
33272
33397
  width: 336px;
33273
33398
  }
33274
33399
  .notice-icon__btn {
33275
- display: inline-block;
33276
33400
  cursor: pointer;
33401
+ display: inline-block;
33277
33402
  transition: all 0.3s;
33278
33403
  }
33279
33404
  .notice-icon .ant-popover-inner-content {
@@ -33286,14 +33411,14 @@ ellipsis {
33286
33411
  margin-left: 32px;
33287
33412
  }
33288
33413
  .notice-icon .ant-list {
33289
- max-height: 400px;
33290
33414
  overflow: auto;
33415
+ max-height: 400px;
33291
33416
  }
33292
33417
  .notice-icon .ant-list-item {
33418
+ cursor: pointer;
33419
+ overflow: hidden;
33293
33420
  padding-right: 24px;
33294
33421
  padding-left: 24px;
33295
- overflow: hidden;
33296
- cursor: pointer;
33297
33422
  transition: all 0.3s;
33298
33423
  }
33299
33424
  .notice-icon .ant-list-item:last-child {
@@ -33324,13 +33449,13 @@ ellipsis {
33324
33449
  margin-bottom: 16px;
33325
33450
  }
33326
33451
  .notice-icon__clear {
33452
+ cursor: pointer;
33327
33453
  height: 46px;
33328
- color: rgba(0, 0, 0, 0.85);
33329
33454
  line-height: 46px;
33455
+ color: rgba(0, 0, 0, 0.85);
33330
33456
  text-align: center;
33331
33457
  border-top: 1px solid #f0f0f0;
33332
33458
  border-radius: 0 0 2px 2px;
33333
- cursor: pointer;
33334
33459
  transition: all 0.3s;
33335
33460
  }
33336
33461
  .notice-icon__clear:hover {
@@ -33355,8 +33480,8 @@ ellipsis {
33355
33480
  float: right;
33356
33481
  margin-top: -1.5px;
33357
33482
  margin-right: 0;
33358
- color: rgba(0, 0, 0, 0.45);
33359
33483
  font-weight: normal;
33484
+ color: rgba(0, 0, 0, 0.45);
33360
33485
  }
33361
33486
  .page-header {
33362
33487
  display: block;
@@ -33396,15 +33521,15 @@ ellipsis {
33396
33521
  border-radius: 2px;
33397
33522
  }
33398
33523
  .page-header__title {
33399
- color: rgba(0, 0, 0, 0.85);
33400
- font-weight: 500;
33401
33524
  font-size: 20px;
33525
+ font-weight: 500;
33526
+ color: rgba(0, 0, 0, 0.85);
33402
33527
  }
33403
33528
  .page-header__title small {
33404
33529
  padding-left: 8px;
33405
- color: rgba(0, 0, 0, 0.4);
33406
- font-weight: normal;
33407
33530
  font-size: 14px;
33531
+ font-weight: normal;
33532
+ color: rgba(0, 0, 0, 0.4);
33408
33533
  }
33409
33534
  .page-header__action {
33410
33535
  min-width: 266px;
@@ -33512,9 +33637,9 @@ ellipsis {
33512
33637
  }
33513
33638
  .quick-menu {
33514
33639
  position: fixed;
33640
+ z-index: 11;
33515
33641
  right: -1px;
33516
33642
  left: auto;
33517
- z-index: 11;
33518
33643
  display: block;
33519
33644
  backface-visibility: hidden;
33520
33645
  transition: margin 0.3s cubic-bezier(1, 0, 0, 1);
@@ -33530,6 +33655,7 @@ ellipsis {
33530
33655
  padding: 0 12px;
33531
33656
  }
33532
33657
  .quick-menu__ctrl {
33658
+ cursor: pointer;
33533
33659
  position: absolute;
33534
33660
  top: -1px;
33535
33661
  left: -50px;
@@ -33538,7 +33664,6 @@ ellipsis {
33538
33664
  text-align: center;
33539
33665
  border-right: 0;
33540
33666
  border-radius: 3px 0 0 3px;
33541
- cursor: pointer;
33542
33667
  }
33543
33668
  .quick-menu__ctrl-icon {
33544
33669
  font-size: 20px;
@@ -33550,11 +33675,6 @@ ellipsis {
33550
33675
  margin: 0 auto;
33551
33676
  text-align: center;
33552
33677
  }
33553
- @media screen and (max-width: 480px) {
33554
- .result {
33555
- width: 100%;
33556
- }
33557
- }
33558
33678
  .result__icon {
33559
33679
  margin-bottom: 24px;
33560
33680
  font-size: 72px;
@@ -33568,16 +33688,16 @@ ellipsis {
33568
33688
  }
33569
33689
  .result__title {
33570
33690
  margin-bottom: 16px;
33571
- color: rgba(0, 0, 0, 0.85);
33572
- font-weight: 500;
33573
33691
  font-size: 24px;
33692
+ font-weight: 500;
33574
33693
  line-height: 32px;
33694
+ color: rgba(0, 0, 0, 0.85);
33575
33695
  }
33576
33696
  .result__desc {
33577
33697
  margin-bottom: 24px;
33578
- color: rgba(0, 0, 0, 0.45);
33579
33698
  font-size: 14px;
33580
33699
  line-height: 22px;
33700
+ color: rgba(0, 0, 0, 0.45);
33581
33701
  }
33582
33702
  .result__extra {
33583
33703
  padding: 24px 40px;
@@ -33600,28 +33720,33 @@ ellipsis {
33600
33720
  .result .ant-steps .ant-steps-title {
33601
33721
  background: #fafafa;
33602
33722
  }
33723
+ @media screen and (max-width: 480px) {
33724
+ .result {
33725
+ width: 100%;
33726
+ }
33727
+ }
33603
33728
  .result-rtl {
33604
33729
  direction: rtl;
33605
33730
  }
33606
33731
  .reuse-tab {
33732
+ user-select: none;
33607
33733
  display: block;
33608
33734
  background-color: #fff;
33609
33735
  outline: none;
33610
- user-select: none;
33611
33736
  }
33612
33737
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__op {
33613
33738
  position: absolute;
33614
33739
  display: none;
33615
33740
  margin: 0;
33616
- color: rgba(0, 0, 0, 0.85);
33617
33741
  font-size: 10px;
33742
+ color: rgba(0, 0, 0, 0.85);
33618
33743
  }
33619
33744
  .reuse-tab .ant-tabs-nav .ant-tabs-tab:hover .reuse-tab__op {
33620
33745
  display: block;
33621
33746
  }
33622
33747
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__name-width {
33623
- display: inline-block;
33624
33748
  overflow: hidden;
33749
+ display: inline-block;
33625
33750
  text-overflow: ellipsis;
33626
33751
  }
33627
33752
  .reuse-tab .ant-tabs > .ant-tabs-nav {
@@ -33656,8 +33781,8 @@ ellipsis {
33656
33781
  right: 4px;
33657
33782
  }
33658
33783
  .reuse-tab__disabled {
33659
- opacity: 0.8;
33660
33784
  pointer-events: none;
33785
+ opacity: 0.8;
33661
33786
  }
33662
33787
  .reuse-tab__cm .ant-menu {
33663
33788
  border: 1px solid #e9e9e9;
@@ -33666,15 +33791,15 @@ ellipsis {
33666
33791
  direction: rtl;
33667
33792
  }
33668
33793
  .tag-select {
33794
+ user-select: none;
33669
33795
  position: relative;
33796
+ overflow: hidden;
33670
33797
  display: block;
33671
33798
  max-height: 38px;
33672
33799
  margin-top: -16px;
33673
33800
  margin-left: -8px;
33674
- overflow: hidden;
33675
33801
  line-height: 1.5715;
33676
33802
  transition: all 0.3s;
33677
- user-select: none;
33678
33803
  }
33679
33804
  .tag-select__expanded {
33680
33805
  max-height: 200px;
@@ -33702,9 +33827,9 @@ ellipsis {
33702
33827
  transition: transform 0.24s;
33703
33828
  }
33704
33829
  .tag-select-rtl {
33830
+ direction: rtl;
33705
33831
  margin-right: -8px;
33706
33832
  margin-left: 0;
33707
- direction: rtl;
33708
33833
  }
33709
33834
  .tag-select-rtl__has-expand {
33710
33835
  padding-right: 0 !important;
@@ -33723,17 +33848,18 @@ ellipsis {
33723
33848
  margin-left: 8px;
33724
33849
  }
33725
33850
  .down-file__not-support {
33851
+ /* stylelint-disable-next-line order/order */
33726
33852
  display: none;
33727
33853
  }
33728
33854
  .loading-backdrop {
33729
33855
  z-index: 9999;
33730
- background-color: rgba(0, 0, 0, 0.15);
33731
33856
  opacity: 1;
33857
+ background-color: rgba(0, 0, 0, 0.15);
33732
33858
  }
33733
33859
  .loading-default {
33734
33860
  position: fixed;
33735
- inset: 0;
33736
33861
  z-index: 10000;
33862
+ inset: 0;
33737
33863
  display: flex;
33738
33864
  flex-direction: column;
33739
33865
  align-items: center;
@@ -33741,8 +33867,8 @@ ellipsis {
33741
33867
  }
33742
33868
  .loading-default__icon {
33743
33869
  margin-bottom: 8px;
33744
- color: #1890ff;
33745
33870
  font-size: 24px;
33871
+ color: #1890ff;
33746
33872
  }
33747
33873
  .loading-default__text {
33748
33874
  color: #1890ff;
@@ -33760,20 +33886,20 @@ ellipsis {
33760
33886
  }
33761
33887
  .onboarding__mask {
33762
33888
  position: fixed;
33763
- inset: 0;
33764
33889
  z-index: 99998;
33765
- background-color: #000;
33890
+ inset: 0;
33766
33891
  opacity: 0.5;
33892
+ background-color: #000;
33767
33893
  }
33768
33894
  .onboarding__item {
33769
33895
  position: absolute;
33770
33896
  }
33771
33897
  .onboarding__light {
33898
+ pointer-events: none;
33772
33899
  position: absolute;
33773
33900
  z-index: 99999;
33774
33901
  background-color: rgba(255, 255, 255, 0.9);
33775
33902
  animation: 2500ms cubic-bezier(0.55, 0.05, 0.6, 0.2) 0s infinite normal none running onboardingAnt;
33776
- pointer-events: none;
33777
33903
  }
33778
33904
  .onboarding__light-el {
33779
33905
  z-index: 100000 !important;
@@ -33802,9 +33928,9 @@ ellipsis {
33802
33928
  }
33803
33929
  .pdf-container {
33804
33930
  position: absolute;
33931
+ overflow-x: auto;
33805
33932
  width: 100%;
33806
33933
  height: 100%;
33807
- overflow-x: auto;
33808
33934
  -webkit-overflow-scrolling: touch;
33809
33935
  }
33810
33936
  .cell__has-unit {
@@ -33840,8 +33966,8 @@ ellipsis {
33840
33966
  }
33841
33967
  .cell .unit {
33842
33968
  margin-left: 2px;
33843
- color: rgba(0, 0, 0, 0.45);
33844
33969
  font-size: 12px;
33970
+ color: rgba(0, 0, 0, 0.45);
33845
33971
  }
33846
33972
  .cell__disabled[data-type="link"] {
33847
33973
  pointer-events: none;
@@ -33870,8 +33996,8 @@ g2-tag-cloud {
33870
33996
  }
33871
33997
  .g2-card__top {
33872
33998
  position: relative;
33873
- width: 100%;
33874
33999
  overflow: hidden;
34000
+ width: 100%;
33875
34001
  }
33876
34002
  .g2-card__top-margin {
33877
34003
  margin-bottom: 12px;
@@ -33881,19 +34007,19 @@ g2-tag-cloud {
33881
34007
  }
33882
34008
  .g2-card__meta {
33883
34009
  height: 22px;
33884
- color: rgba(0, 0, 0, 0.45);
33885
34010
  font-size: 14px;
33886
34011
  line-height: 22px;
34012
+ color: rgba(0, 0, 0, 0.45);
33887
34013
  }
33888
34014
  .g2-card__meta-wrap {
33889
34015
  float: left;
33890
34016
  }
33891
34017
  .g2-card__meta-action {
34018
+ cursor: pointer;
33892
34019
  position: absolute;
33893
34020
  top: 4px;
33894
34021
  right: 0;
33895
34022
  line-height: 1;
33896
- cursor: pointer;
33897
34023
  }
33898
34024
  .g2-card__avatar {
33899
34025
  position: relative;
@@ -33905,16 +34031,16 @@ g2-tag-cloud {
33905
34031
  border-radius: 100%;
33906
34032
  }
33907
34033
  .g2-card__total {
34034
+ overflow: hidden;
33908
34035
  height: 38px;
33909
34036
  margin-top: 4px;
33910
34037
  margin-bottom: 0;
33911
- overflow: hidden;
33912
- color: rgba(0, 0, 0, 0.85);
33913
34038
  font-size: 30px;
33914
34039
  line-height: 38px;
33915
- white-space: nowrap;
34040
+ color: rgba(0, 0, 0, 0.85);
33916
34041
  text-overflow: ellipsis;
33917
34042
  word-break: break-all;
34043
+ white-space: nowrap;
33918
34044
  }
33919
34045
  .g2-card__desc {
33920
34046
  width: 100%;
@@ -33973,17 +34099,17 @@ g2-tag-cloud {
33973
34099
  position: absolute;
33974
34100
  top: 50%;
33975
34101
  right: 0;
34102
+ transform: translateY(-50%);
33976
34103
  min-width: 250px;
33977
34104
  margin: 0 20px;
33978
34105
  padding: 0;
33979
34106
  list-style: none;
33980
- transform: translateY(-50%);
33981
34107
  }
33982
34108
  .g2-pie__legend-item {
34109
+ cursor: pointer;
33983
34110
  height: 22px;
33984
34111
  margin-bottom: 16px;
33985
34112
  line-height: 22px;
33986
- cursor: pointer;
33987
34113
  }
33988
34114
  .g2-pie__legend-item:last-child {
33989
34115
  margin-bottom: 0;
@@ -34016,31 +34142,31 @@ g2-tag-cloud {
34016
34142
  }
34017
34143
  .g2-pie__legend-block .g2-pie__legend {
34018
34144
  position: relative;
34019
- min-width: auto;
34020
34145
  transform: none;
34146
+ min-width: auto;
34021
34147
  }
34022
34148
  .g2-pie__total {
34023
34149
  position: absolute;
34024
34150
  top: 50%;
34025
34151
  left: 50%;
34152
+ transform: translate(-50%, -50%);
34026
34153
  height: 62px;
34027
34154
  text-align: center;
34028
- transform: translate(-50%, -50%);
34029
34155
  }
34030
34156
  .g2-pie__total-title {
34031
34157
  height: 22px;
34032
34158
  margin-bottom: 8px;
34033
- color: rgba(0, 0, 0, 0.45);
34034
- font-weight: normal;
34035
34159
  font-size: 14px;
34160
+ font-weight: normal;
34036
34161
  line-height: 22px;
34162
+ color: rgba(0, 0, 0, 0.45);
34037
34163
  }
34038
34164
  .g2-pie__total-stat {
34039
34165
  display: block;
34040
34166
  height: 32px;
34041
- color: rgba(0, 0, 0, 0.85);
34042
34167
  font-size: 1.2em;
34043
34168
  line-height: 32px;
34169
+ color: rgba(0, 0, 0, 0.85);
34044
34170
  white-space: nowrap;
34045
34171
  }
34046
34172
  .g2-pie__mini .g2-pie__total-title {
@@ -34054,20 +34180,20 @@ g2-tag-cloud {
34054
34180
  margin-top: 16px;
34055
34181
  }
34056
34182
  .g2-radar__legend-item {
34183
+ cursor: pointer;
34057
34184
  position: relative;
34058
- color: rgba(0, 0, 0, 0.45);
34059
34185
  line-height: 22px;
34186
+ color: rgba(0, 0, 0, 0.45);
34060
34187
  text-align: center;
34061
- cursor: pointer;
34062
34188
  }
34063
34189
  .g2-radar__legend-item::after {
34190
+ content: '';
34064
34191
  position: absolute;
34065
34192
  top: 8px;
34066
34193
  right: 0;
34067
34194
  width: 1px;
34068
34195
  height: 40px;
34069
34196
  background-color: #f0f0f0;
34070
- content: '';
34071
34197
  }
34072
34198
  .g2-radar__legend-item:last-child::after {
34073
34199
  display: none;
@@ -34076,9 +34202,9 @@ g2-tag-cloud {
34076
34202
  margin-top: 4px;
34077
34203
  margin-bottom: 0;
34078
34204
  padding-left: 16px;
34079
- color: rgba(0, 0, 0, 0.85);
34080
34205
  font-size: 24px;
34081
34206
  line-height: 32px;
34207
+ color: rgba(0, 0, 0, 0.85);
34082
34208
  }
34083
34209
  .g2-radar__legend-dot {
34084
34210
  position: relative;
@@ -34091,8 +34217,8 @@ g2-tag-cloud {
34091
34217
  }
34092
34218
  .g2-water-wave {
34093
34219
  position: relative;
34094
- display: inline-block;
34095
34220
  transform-origin: left;
34221
+ display: inline-block;
34096
34222
  }
34097
34223
  .g2-water-wave__desc {
34098
34224
  position: absolute;
@@ -34102,69 +34228,69 @@ g2-tag-cloud {
34102
34228
  text-align: center;
34103
34229
  }
34104
34230
  .g2-water-wave__desc-title {
34105
- color: rgba(0, 0, 0, 0.45);
34106
34231
  font-size: 14px;
34107
34232
  line-height: 22px;
34233
+ color: rgba(0, 0, 0, 0.45);
34108
34234
  }
34109
34235
  .g2-water-wave__desc-percent {
34110
- color: rgba(0, 0, 0, 0.85);
34111
34236
  font-size: 24px;
34112
34237
  line-height: 32px;
34238
+ color: rgba(0, 0, 0, 0.85);
34113
34239
  }
34114
34240
  .g2-water-wave__canvas {
34115
- transform: scale(0.5);
34116
34241
  transform-origin: 0 0;
34242
+ transform: scale(0.5);
34117
34243
  }
34118
34244
  .number-info {
34119
34245
  display: inline-block;
34120
34246
  }
34121
34247
  .number-info__title {
34122
34248
  margin-bottom: 16px;
34123
- color: rgba(0, 0, 0, 0.85);
34124
34249
  font-size: 16px;
34250
+ color: rgba(0, 0, 0, 0.85);
34125
34251
  transition: all 0.3s;
34126
34252
  }
34127
34253
  .number-info__title-sub {
34128
- height: 22px;
34129
34254
  overflow: hidden;
34130
- color: rgba(0, 0, 0, 0.45);
34255
+ height: 22px;
34131
34256
  font-size: 14px;
34132
34257
  line-height: 22px;
34133
- white-space: nowrap;
34258
+ color: rgba(0, 0, 0, 0.45);
34134
34259
  text-overflow: ellipsis;
34135
34260
  word-break: break-all;
34261
+ white-space: nowrap;
34136
34262
  }
34137
34263
  .number-info__value {
34138
- margin-top: 4px;
34139
34264
  overflow: hidden;
34265
+ margin-top: 4px;
34140
34266
  font-size: 0;
34141
- white-space: nowrap;
34142
34267
  text-overflow: ellipsis;
34143
34268
  word-break: break-all;
34269
+ white-space: nowrap;
34144
34270
  }
34145
34271
  .number-info__value-suffix {
34146
34272
  margin-left: 4px;
34147
- color: rgba(0, 0, 0, 0.85);
34148
34273
  font-size: 16px;
34149
34274
  font-style: normal;
34275
+ color: rgba(0, 0, 0, 0.85);
34150
34276
  }
34151
34277
  .number-info__value-text {
34152
34278
  display: inline-block;
34153
34279
  height: 32px;
34154
- color: rgba(0, 0, 0, 0.85);
34155
34280
  font-size: 24px;
34156
34281
  line-height: 32px;
34282
+ color: rgba(0, 0, 0, 0.85);
34157
34283
  }
34158
34284
  .number-info__value-sub {
34159
34285
  margin-left: 32px;
34160
- color: rgba(0, 0, 0, 0.45);
34161
34286
  font-size: 16px;
34287
+ color: rgba(0, 0, 0, 0.45);
34162
34288
  vertical-align: top;
34163
34289
  }
34164
34290
  .number-info__value-sub .anticon {
34291
+ transform: scale(0.82);
34165
34292
  margin-left: 4px;
34166
34293
  font-size: 12px;
34167
- transform: scale(0.82);
34168
34294
  }
34169
34295
  .number-info__value-sub .anticon-caret-up {
34170
34296
  color: #f5222d;
@@ -34181,6 +34307,7 @@ g2-tag-cloud {
34181
34307
  padding-left: 32px;
34182
34308
  }
34183
34309
  .number-info:not(:first-child)::after {
34310
+ content: '';
34184
34311
  position: absolute;
34185
34312
  top: 0;
34186
34313
  bottom: 0;
@@ -34188,7 +34315,6 @@ g2-tag-cloud {
34188
34315
  width: 1px;
34189
34316
  margin: 8px 0;
34190
34317
  background-color: #f0f0f0;
34191
- content: '';
34192
34318
  }
34193
34319
  .trend {
34194
34320
  display: inline-block;
@@ -34203,8 +34329,8 @@ g2-tag-cloud {
34203
34329
  }
34204
34330
  .trend__up i,
34205
34331
  .trend__down i {
34206
- font-size: 12px;
34207
34332
  transform: scale(0.83);
34333
+ font-size: 12px;
34208
34334
  }
34209
34335
  .trend__up {
34210
34336
  color: #f5222d;