@delon/theme 16.4.3 → 17.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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/compact.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: -4px -5px;
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: 4px 0;
23058
23063
  font-size: 12px;
@@ -27731,9 +27736,6 @@ nz-space-item {
27731
27736
  align-items: center;
27732
27737
  padding-left: 8px;
27733
27738
  }
27734
- .ant-cron-expression-preview-content-date {
27735
- flex: 1 1 auto;
27736
- }
27737
27739
  .ant-cron-expression-preview-list,
27738
27740
  .ant-cron-expression-preview-icon {
27739
27741
  list-style: none;
@@ -27751,18 +27753,13 @@ nz-space-item {
27751
27753
  height: 132px;
27752
27754
  }
27753
27755
  .ant-cron-expression-preview-icon {
27754
- height: 100%;
27756
+ flex: 0 0 16px;
27757
+ display: flex;
27758
+ justify-content: center;
27755
27759
  }
27756
27760
  .ant-cron-expression-error {
27757
27761
  color: #ff4d4f;
27758
27762
  }
27759
- .ant-cron-expression-hint p {
27760
- display: flex;
27761
- }
27762
- .ant-cron-expression-hint span {
27763
- display: inline-block;
27764
- min-width: 40px;
27765
- }
27766
27763
  .ant-qrcode {
27767
27764
  display: inline-block;
27768
27765
  position: relative;
@@ -28023,6 +28020,130 @@ nz-space-item {
28023
28020
  width: 16px;
28024
28021
  height: 16px;
28025
28022
  }
28023
+ .ant-hashCode {
28024
+ box-sizing: border-box;
28025
+ margin: 0;
28026
+ padding: 0;
28027
+ color: rgba(0, 0, 0, 0.85);
28028
+ font-size: 12px;
28029
+ line-height: 1.66667;
28030
+ list-style: none;
28031
+ display: flex;
28032
+ flex-direction: column;
28033
+ align-items: center;
28034
+ justify-content: center;
28035
+ cursor: pointer;
28036
+ }
28037
+ .ant-hashCode-header-copy {
28038
+ margin-left: 4px;
28039
+ cursor: pointer;
28040
+ opacity: 0.45;
28041
+ }
28042
+ .ant-hashCode-header {
28043
+ display: flex;
28044
+ justify-content: left;
28045
+ width: 100%;
28046
+ height: 22px;
28047
+ padding-bottom: 4px;
28048
+ }
28049
+ .ant-hashCode-header .ant-hashCode-header-title {
28050
+ font-size: 12px;
28051
+ line-height: 1.66667;
28052
+ text-align: center;
28053
+ opacity: 0.45;
28054
+ }
28055
+ .ant-hashCode-header .ant-hashCode-header-logo {
28056
+ display: flex;
28057
+ flex: 1;
28058
+ justify-content: right;
28059
+ }
28060
+ .ant-hashCode-double {
28061
+ width: 172px;
28062
+ }
28063
+ .ant-hashCode-double.ant-hashCode-primary {
28064
+ width: 220px;
28065
+ }
28066
+ .ant-hashCode-single {
28067
+ display: flex;
28068
+ flex-direction: row-reverse;
28069
+ width: 236px;
28070
+ }
28071
+ .ant-hashCode-single.ant-hashCode-primary {
28072
+ width: 284px;
28073
+ }
28074
+ .ant-hashCode-single .ant-hashCode-header-copy {
28075
+ margin-top: 4px;
28076
+ }
28077
+ .ant-hashCode-strip {
28078
+ width: 350px;
28079
+ }
28080
+ .ant-hashCode-strip.ant-hashCode-primary {
28081
+ width: 398px;
28082
+ }
28083
+ .ant-hashCode-rect {
28084
+ display: flex;
28085
+ flex-direction: row-reverse;
28086
+ width: 196px;
28087
+ }
28088
+ .ant-hashCode-rect.ant-hashCode-primary {
28089
+ width: 244px;
28090
+ }
28091
+ .ant-hashCode-primary {
28092
+ padding: 16px;
28093
+ background-color: #1890ff;
28094
+ border-radius: 24px;
28095
+ }
28096
+ .ant-hashCode-primary .ant-hashCode-header-copy {
28097
+ opacity: 1;
28098
+ }
28099
+ .ant-hashCode-primary .ant-hashCode-header-title,
28100
+ .ant-hashCode-primary .ant-hashCode-header-copy,
28101
+ .ant-hashCode-primary .ant-hashCode-header-logo {
28102
+ color: rgba(255, 255, 255, 0.85);
28103
+ }
28104
+ .ant-hashCode-contant {
28105
+ width: 100%;
28106
+ height: 100%;
28107
+ }
28108
+ .ant-hashCode-code-value {
28109
+ display: flex;
28110
+ flex-wrap: wrap;
28111
+ gap: 0 10px;
28112
+ justify-content: space-between;
28113
+ height: 35px;
28114
+ overflow: hidden;
28115
+ }
28116
+ .ant-hashCode-code-value-block {
28117
+ height: 16px;
28118
+ font-size: 12px;
28119
+ font-family: Menlo;
28120
+ }
28121
+ .ant-hashCode-value-primary .ant-hashCode-code-value-block {
28122
+ color: #fff;
28123
+ }
28124
+ .ant-hashCode-texaure-double {
28125
+ width: 175px;
28126
+ height: 36px;
28127
+ }
28128
+ .ant-hashCode-texaure {
28129
+ position: absolute;
28130
+ margin-top: -35px;
28131
+ overflow: hidden;
28132
+ }
28133
+ .ant-hashCode-texaure-single {
28134
+ width: 210px;
28135
+ height: 28px;
28136
+ margin-top: -21px;
28137
+ }
28138
+ .ant-hashCode-texaure-strip {
28139
+ width: 350px;
28140
+ height: 36px;
28141
+ }
28142
+ .ant-hashCode-texaure-rect {
28143
+ width: 175px;
28144
+ height: 72px;
28145
+ margin-top: -71px;
28146
+ }
28026
28147
  sf + st {
28027
28148
  margin-top: 16px;
28028
28149
  }
@@ -28044,6 +28165,7 @@ nz-button-group + nz-popconfirm {
28044
28165
  .ant-transfer-operation .ant-btn + .ant-btn {
28045
28166
  margin-left: initial;
28046
28167
  }
28168
+ /* stylelint-disable-next-line order/order */
28047
28169
  [dir='rtl'] .ant-btn + .ant-btn,
28048
28170
  [dir='rtl'] .ant-btn + nz-popconfirm,
28049
28171
  [dir='rtl'] nz-popconfirm + .ant-btn,
@@ -28275,16 +28397,16 @@ a:focus {
28275
28397
  * ```
28276
28398
  */
28277
28399
  margin: 0;
28278
- color: rgba(0, 0, 0, 0.85);
28279
- font-weight: 500;
28280
28400
  font-size: 14px;
28401
+ font-weight: 500;
28281
28402
  line-height: 22px;
28403
+ color: rgba(0, 0, 0, 0.85);
28282
28404
  word-wrap: break-word;
28283
28405
  }
28284
28406
  .modal-title small {
28285
28407
  margin-left: 8px;
28286
- color: #8c8c8c;
28287
28408
  font-size: 12px;
28409
+ color: #8c8c8c;
28288
28410
  }
28289
28411
  .modal-spin {
28290
28412
  display: block;
@@ -28385,8 +28507,8 @@ a:focus {
28385
28507
  align-items: center;
28386
28508
  width: 100%;
28387
28509
  padding: 6px 4px;
28388
- white-space: inherit;
28389
28510
  text-align: left !important;
28511
+ white-space: inherit;
28390
28512
  border-bottom: none;
28391
28513
  }
28392
28514
  .ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
@@ -28506,6 +28628,7 @@ fieldset {
28506
28628
  */
28507
28629
  .half-float {
28508
28630
  position: relative;
28631
+ /* stylelint-disable-next-line order/order */
28509
28632
  }
28510
28633
  .half-float img {
28511
28634
  display: block;
@@ -28514,8 +28637,8 @@ fieldset {
28514
28637
  }
28515
28638
  .half-float .half-float-bottom {
28516
28639
  position: absolute;
28517
- left: 50%;
28518
28640
  z-index: 2;
28641
+ left: 50%;
28519
28642
  }
28520
28643
  .half-float.half-float-sm {
28521
28644
  margin-bottom: 42px;
@@ -28560,10 +28683,10 @@ fieldset {
28560
28683
  */
28561
28684
  .row-masonry {
28562
28685
  position: relative;
28686
+ column-gap: 16px;
28563
28687
  width: 100%;
28564
28688
  margin: 0;
28565
28689
  padding: 0;
28566
- column-gap: 16px;
28567
28690
  }
28568
28691
  .row-masonry > .col-masonry {
28569
28692
  display: inline-block;
@@ -28574,6 +28697,7 @@ fieldset {
28574
28697
  .row-masonry img {
28575
28698
  max-width: 100%;
28576
28699
  }
28700
+ /* stylelint-disable-next-line order/order */
28577
28701
  @media only screen and (min-width: 480px) {
28578
28702
  .row-masonry-xs-1 {
28579
28703
  column-count: 1;
@@ -28818,6 +28942,7 @@ fieldset {
28818
28942
  padding-bottom: 0;
28819
28943
  }
28820
28944
  .sf__array-container .ant-card .sf__array-remove {
28945
+ cursor: pointer;
28821
28946
  position: absolute;
28822
28947
  top: -16px;
28823
28948
  right: -16px;
@@ -28829,7 +28954,6 @@ fieldset {
28829
28954
  text-align: center;
28830
28955
  background: rgba(0, 0, 0, 0.26);
28831
28956
  border-radius: 50%;
28832
- cursor: pointer;
28833
28957
  }
28834
28958
  .sf__array-container .ant-card .sf__array-remove i {
28835
28959
  color: #fff;
@@ -28860,8 +28984,8 @@ fieldset {
28860
28984
  }
28861
28985
  }
28862
28986
  .sf .ant-upload-select-picture-card i {
28863
- color: #999;
28864
28987
  font-size: 32px;
28988
+ color: #999;
28865
28989
  }
28866
28990
  .sf .ant-upload.ant-upload-drag {
28867
28991
  height: 180px;
@@ -28976,30 +29100,32 @@ fieldset {
28976
29100
  }
28977
29101
  .setting-drawer__title {
28978
29102
  margin-bottom: 12px;
28979
- color: rgba(0, 0, 0, 0.85);
28980
29103
  font-size: 14px;
28981
29104
  line-height: 22px;
29105
+ color: rgba(0, 0, 0, 0.85);
28982
29106
  }
28983
29107
  .setting-drawer__theme {
28984
- margin-top: 24px;
28985
29108
  overflow: hidden;
29109
+ margin-top: 24px;
28986
29110
  }
28987
29111
  .setting-drawer__theme-tag {
29112
+ cursor: pointer;
28988
29113
  float: left;
28989
29114
  width: 20px;
28990
29115
  height: 20px;
28991
29116
  margin-right: 8px;
28992
- color: #fff;
28993
29117
  font-weight: bold;
29118
+ color: #fff;
28994
29119
  text-align: center;
28995
29120
  border-radius: 2px;
28996
- cursor: pointer;
28997
29121
  }
28998
29122
  .setting-drawer__handle {
29123
+ pointer-events: auto;
29124
+ cursor: pointer;
28999
29125
  position: fixed;
29126
+ z-index: 999;
29000
29127
  top: 240px;
29001
29128
  right: 0;
29002
- z-index: 999;
29003
29129
  display: flex;
29004
29130
  align-items: center;
29005
29131
  justify-content: center;
@@ -29009,17 +29135,15 @@ fieldset {
29009
29135
  text-align: center;
29010
29136
  background: #1890ff;
29011
29137
  border-radius: 4px 0 0 4px;
29012
- cursor: pointer;
29013
29138
  transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
29014
- pointer-events: auto;
29015
29139
  }
29016
29140
  .setting-drawer__handle-icon {
29017
- color: #fff;
29018
29141
  font-size: 20px;
29142
+ color: #fff;
29019
29143
  }
29020
29144
  .setting-drawer__handle-opened {
29021
- right: 500px;
29022
29145
  z-index: 1001;
29146
+ right: 500px;
29023
29147
  }
29024
29148
  .setting-drawer-rtl {
29025
29149
  direction: rtl;
@@ -29034,20 +29158,20 @@ fieldset {
29034
29158
  left: 500px;
29035
29159
  }
29036
29160
  .theme-btn {
29161
+ cursor: pointer;
29037
29162
  position: fixed;
29163
+ z-index: 2147483640;
29038
29164
  right: 32px;
29039
29165
  bottom: 102px;
29040
- z-index: 2147483640;
29041
29166
  display: flex;
29042
29167
  flex-direction: column;
29043
- cursor: pointer;
29044
29168
  }
29045
29169
  .theme-btn-active {
29046
29170
  width: 44px;
29047
29171
  height: 44px;
29048
- color: #1890ff;
29049
29172
  font-size: 22px;
29050
29173
  line-height: 44px;
29174
+ color: #1890ff;
29051
29175
  }
29052
29176
  .theme-btn .ant-avatar {
29053
29177
  color: #000;
@@ -30681,9 +30805,9 @@ code {
30681
30805
  *
30682
30806
  * 元素不能被用户缩放
30683
30807
  */
30808
+ resize: none;
30684
30809
  min-width: 100%;
30685
30810
  max-width: 100%;
30686
- resize: none;
30687
30811
  }
30688
30812
  .no-data {
30689
30813
  /**
@@ -30691,9 +30815,9 @@ code {
30691
30815
  *
30692
30816
  * 无数据元素
30693
30817
  */
30694
- color: rgba(0, 0, 0, 0.25);
30695
30818
  font-size: 16px;
30696
30819
  line-height: 64px;
30820
+ color: rgba(0, 0, 0, 0.25);
30697
30821
  text-align: center;
30698
30822
  }
30699
30823
  .no-data i {
@@ -30726,8 +30850,8 @@ code {
30726
30850
  */
30727
30851
  .page-loading {
30728
30852
  position: absolute;
30729
- inset: 0;
30730
30853
  z-index: 10000;
30854
+ inset: 0;
30731
30855
  padding-top: 200px;
30732
30856
  text-align: center;
30733
30857
  background: #f5f5f5;
@@ -30742,8 +30866,8 @@ code {
30742
30866
  * 禁用样式,不可响应任何事件
30743
30867
  */
30744
30868
  .disabled {
30745
- color: rgba(0, 0, 0, 0.25);
30746
30869
  pointer-events: none;
30870
+ color: rgba(0, 0, 0, 0.25);
30747
30871
  }
30748
30872
  /**
30749
30873
  * Positioning method: nothing
@@ -30792,10 +30916,10 @@ code {
30792
30916
  */
30793
30917
  .fixed-top {
30794
30918
  position: fixed;
30919
+ z-index: 9;
30795
30920
  top: 0;
30796
30921
  right: 0;
30797
30922
  left: 0;
30798
- z-index: 9;
30799
30923
  }
30800
30924
  /**
30801
30925
  * Full screen fixed bottom
@@ -30804,10 +30928,10 @@ code {
30804
30928
  */
30805
30929
  .fixed-bottom {
30806
30930
  position: fixed;
30931
+ z-index: 9;
30807
30932
  right: 0;
30808
30933
  bottom: 0;
30809
30934
  left: 0;
30810
- z-index: 9;
30811
30935
  }
30812
30936
  /**
30813
30937
  * If overflow is clipped, a scroll-bar should be added to see the rest of the content
@@ -31795,6 +31919,7 @@ code {
31795
31919
  .scrollbar-y {
31796
31920
  overflow: hidden auto;
31797
31921
  }
31922
+ /* stylelint-disable-next-line order/order */
31798
31923
  body,
31799
31924
  .scrollbar,
31800
31925
  .ant-dialog-wrap,
@@ -31835,9 +31960,9 @@ textarea.ant-input::-webkit-scrollbar-thumb {
31835
31960
  outline: 1px solid #333;
31836
31961
  }
31837
31962
  html {
31838
- height: 100%;
31839
- direction: ltr;
31840
31963
  touch-action: manipulation;
31964
+ direction: ltr;
31965
+ height: 100%;
31841
31966
  }
31842
31967
  html,
31843
31968
  body,
@@ -31850,11 +31975,11 @@ body {
31850
31975
  }
31851
31976
  .alain-default {
31852
31977
  position: relative;
31978
+ overflow-x: hidden;
31853
31979
  display: block;
31854
31980
  width: 100%;
31855
31981
  height: auto;
31856
31982
  min-height: 100%;
31857
- overflow-x: hidden;
31858
31983
  }
31859
31984
  .alain-default__unwrap {
31860
31985
  margin-right: -24px;
@@ -31885,20 +32010,20 @@ body {
31885
32010
  }
31886
32011
  .alain-default__content-title > h1 {
31887
32012
  margin-bottom: 0;
31888
- font-weight: normal;
31889
32013
  font-size: 18px;
32014
+ font-weight: normal;
31890
32015
  }
31891
32016
  .alain-default__content-title > h1 > small {
31892
32017
  display: block;
31893
- color: #8c8c8c;
31894
32018
  font-size: 12px;
32019
+ color: #8c8c8c;
31895
32020
  }
31896
32021
  .alain-default__content nz-input-group {
31897
32022
  width: auto;
31898
32023
  }
31899
32024
  .alain-default__hide-aside .alain-default__content {
31900
- margin-left: 24px !important;
31901
32025
  transform: none !important;
32026
+ margin-left: 24px !important;
31902
32027
  }
31903
32028
  .alain-default__hide-header .alain-default__aside {
31904
32029
  margin-top: 0;
@@ -31982,6 +32107,7 @@ body {
31982
32107
  color: #fff;
31983
32108
  }
31984
32109
  .alain-default__nav-item {
32110
+ cursor: pointer;
31985
32111
  display: block;
31986
32112
  min-width: 50px;
31987
32113
  padding: 8px 2px;
@@ -31989,7 +32115,6 @@ body {
31989
32115
  text-align: center;
31990
32116
  border-radius: 2px;
31991
32117
  outline: none;
31992
- cursor: pointer;
31993
32118
  transition: background-color 300ms;
31994
32119
  }
31995
32120
  .alain-default__nav-item:hover {
@@ -31998,8 +32123,8 @@ body {
31998
32123
  }
31999
32124
  .alain-default__nav-item > i,
32000
32125
  .alain-default__nav-item-icon {
32001
- font-size: 16px !important;
32002
32126
  transform: none !important;
32127
+ font-size: 16px !important;
32003
32128
  }
32004
32129
  .alain-default__top-menu-item {
32005
32130
  display: flex;
@@ -32013,8 +32138,8 @@ body {
32013
32138
  background-color: rgba(255, 255, 255, 0.2);
32014
32139
  }
32015
32140
  .alain-default__top-menu-item-disabled {
32016
- opacity: 0.5;
32017
32141
  pointer-events: none;
32142
+ opacity: 0.5;
32018
32143
  }
32019
32144
  .alain-default__search {
32020
32145
  position: relative;
@@ -32064,15 +32189,15 @@ body {
32064
32189
  }
32065
32190
  .alain-default__search-focus .ant-input-group-addon i,
32066
32191
  .alain-default__search-focus .ant-input-affix-wrapper i {
32067
- color: #595959;
32068
32192
  transform: rotate(90deg);
32193
+ color: #595959;
32069
32194
  }
32070
32195
  @media (max-width: 767px) {
32071
32196
  .alain-default__search {
32072
32197
  position: absolute;
32198
+ z-index: 29;
32073
32199
  top: 0;
32074
32200
  left: 0;
32075
- z-index: 29;
32076
32201
  align-items: center;
32077
32202
  width: 100%;
32078
32203
  height: 100%;
@@ -32114,24 +32239,24 @@ body {
32114
32239
  }
32115
32240
  .alain-default__aside {
32116
32241
  position: absolute;
32242
+ z-index: 14;
32117
32243
  top: 0;
32118
32244
  bottom: 0;
32119
- z-index: 14;
32245
+ overflow: hidden;
32120
32246
  width: 200px;
32121
32247
  margin-top: 56px;
32122
- overflow: hidden;
32123
- background-color: #fff;
32124
32248
  backface-visibility: hidden;
32249
+ background-color: #fff;
32125
32250
  transition: width 0.2s cubic-bezier(0.25, 0, 0.15, 1), translate 0.2s cubic-bezier(0.25, 0, 0.15, 1);
32126
32251
  -webkit-overflow-scrolling: touch;
32127
32252
  }
32128
32253
  .alain-default__aside::after {
32254
+ content: '';
32129
32255
  position: absolute;
32130
32256
  top: 0;
32131
32257
  right: 0;
32132
32258
  bottom: 0;
32133
32259
  border-right: 1px solid #efe3e5;
32134
- content: '';
32135
32260
  }
32136
32261
  .alain-default__aside-wrap {
32137
32262
  display: flex;
@@ -32139,12 +32264,12 @@ body {
32139
32264
  height: 100%;
32140
32265
  }
32141
32266
  .alain-default__aside-inner {
32142
- flex: 1 1 0%;
32267
+ scrollbar-width: none;
32268
+ scroll-snap-type: proximity;
32143
32269
  overflow: hidden scroll;
32270
+ flex: 1 1 0%;
32144
32271
  -webkit-overflow-scrolling: touch;
32145
- scroll-snap-type: proximity;
32146
32272
  scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
32147
- scrollbar-width: none;
32148
32273
  }
32149
32274
  .alain-default__aside-inner::-webkit-scrollbar {
32150
32275
  width: 0;
@@ -32160,10 +32285,10 @@ body {
32160
32285
  border-top: 1px solid #efe3e5;
32161
32286
  }
32162
32287
  .alain-default__aside-link-collapsed {
32288
+ cursor: pointer;
32163
32289
  padding: 8px 0;
32164
32290
  font-size: 16px;
32165
32291
  text-align: center;
32166
- cursor: pointer;
32167
32292
  }
32168
32293
  @media (min-width: 768px) {
32169
32294
  .alain-default__collapsed .alain-default__aside {
@@ -32203,18 +32328,18 @@ body {
32203
32328
  .alain-default__progress-bar {
32204
32329
  position: fixed;
32205
32330
  z-index: 29;
32331
+ overflow: hidden;
32206
32332
  width: 100vw;
32207
32333
  height: 4px;
32208
- overflow: hidden;
32209
32334
  background: rgba(221, 221, 221, 0.4);
32210
32335
  }
32211
32336
  .alain-default__progress-bar::after {
32337
+ content: ' ';
32338
+ transform-origin: top left;
32212
32339
  display: block;
32213
32340
  width: 33.3vw;
32214
32341
  height: 100%;
32215
- transform-origin: top left;
32216
32342
  animation: gradcolours 5s steps(1) infinite, loadthird 1s infinite linear;
32217
- content: ' ';
32218
32343
  }
32219
32344
  @keyframes loadthird {
32220
32345
  0% {
@@ -32255,15 +32380,15 @@ body {
32255
32380
  transition: border-left-color 0.4s ease;
32256
32381
  }
32257
32382
  .sidebar-nav__item-link {
32383
+ user-select: none;
32258
32384
  position: relative;
32385
+ overflow: hidden;
32259
32386
  display: block;
32260
32387
  padding: 8px 32px 8px 16px;
32261
- overflow: hidden;
32262
32388
  color: rgba(0, 0, 0, 0.85);
32263
- white-space: nowrap;
32264
32389
  text-decoration: none !important;
32265
32390
  text-overflow: ellipsis;
32266
- user-select: none;
32391
+ white-space: nowrap;
32267
32392
  }
32268
32393
  .sidebar-nav__item-link:hover {
32269
32394
  color: #1890ff;
@@ -32315,8 +32440,8 @@ body {
32315
32440
  color: rgba(0, 0, 0, 0.45);
32316
32441
  }
32317
32442
  .sidebar-nav__sub {
32318
- display: none;
32319
32443
  overflow: hidden;
32444
+ display: none;
32320
32445
  }
32321
32446
  .sidebar-nav__sub .sidebar-nav__item {
32322
32447
  border-left: 0 !important;
@@ -32330,6 +32455,7 @@ body {
32330
32455
  }
32331
32456
  .sidebar-nav__sub-arrow::before,
32332
32457
  .sidebar-nav__sub-arrow::after {
32458
+ content: '';
32333
32459
  position: absolute;
32334
32460
  width: 6px;
32335
32461
  height: 1.5px;
@@ -32337,7 +32463,6 @@ body {
32337
32463
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
32338
32464
  border-radius: 2px;
32339
32465
  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);
32340
- content: '';
32341
32466
  }
32342
32467
  .sidebar-nav__sub-arrow::before {
32343
32468
  transform: rotate(-45deg) translateX(2px);
@@ -32489,10 +32614,10 @@ body {
32489
32614
  }
32490
32615
  .alain-default__fixed .reuse-tab {
32491
32616
  position: fixed;
32617
+ z-index: 10;
32492
32618
  top: 56px;
32493
32619
  right: 24px;
32494
32620
  left: 224px;
32495
- z-index: 10;
32496
32621
  }
32497
32622
  .alain-default__collapsed .reuse-tab {
32498
32623
  left: 88px;
@@ -32532,10 +32657,10 @@ body {
32532
32657
  padding: 16px;
32533
32658
  }
32534
32659
  .app-icons .ant-col-6 {
32660
+ cursor: pointer;
32535
32661
  padding: 16px 0;
32536
32662
  text-align: center;
32537
32663
  border-radius: 4px;
32538
- cursor: pointer;
32539
32664
  transition: background-color 300ms;
32540
32665
  }
32541
32666
  .app-icons .ant-col-6:hover {
@@ -32549,42 +32674,30 @@ body {
32549
32674
  .app-icons small {
32550
32675
  display: block;
32551
32676
  padding-top: 4px;
32552
- color: #9c9c9c;
32553
32677
  font-size: 14px;
32678
+ color: #9c9c9c;
32554
32679
  }
32555
32680
  .alain-default__aside-user {
32681
+ cursor: pointer;
32556
32682
  display: flex;
32557
32683
  align-items: center;
32558
32684
  justify-content: center;
32559
32685
  margin: 24px 24px 0 24px;
32560
- cursor: pointer;
32561
32686
  }
32562
32687
  .alain-default__aside-user .ant-dropdown-trigger {
32563
32688
  display: flex;
32564
32689
  align-items: center;
32565
32690
  }
32566
32691
  .alain-default__aside-user-info {
32567
- flex: 1;
32568
32692
  overflow: hidden;
32693
+ flex: 1;
32569
32694
  color: rgba(0, 0, 0, 0.85);
32570
- white-space: nowrap;
32571
32695
  text-overflow: ellipsis;
32696
+ white-space: nowrap;
32572
32697
  }
32573
32698
  .alain-default__aside-user-avatar {
32574
32699
  margin-right: 8px;
32575
32700
  }
32576
- @media (min-width: 768px) {
32577
- .alain-default__collapsed .alain-default__aside-user {
32578
- width: 64px;
32579
- margin-left: 0;
32580
- }
32581
- .alain-default__collapsed .alain-default__aside-user-info {
32582
- display: none;
32583
- }
32584
- .alain-default__collapsed .alain-default__aside-user-avatar {
32585
- margin: 0 auto;
32586
- }
32587
- }
32588
32701
  [dir='rtl'] .alain-default__aside-user-avatar {
32589
32702
  margin-right: 0;
32590
32703
  margin-left: 8px;
@@ -32597,6 +32710,18 @@ body {
32597
32710
  margin: 0 auto;
32598
32711
  }
32599
32712
  }
32713
+ @media (min-width: 768px) {
32714
+ .alain-default__collapsed .alain-default__aside-user {
32715
+ width: 64px;
32716
+ margin-left: 0;
32717
+ }
32718
+ .alain-default__collapsed .alain-default__aside-user-info {
32719
+ display: none;
32720
+ }
32721
+ .alain-default__collapsed .alain-default__aside-user-avatar {
32722
+ margin: 0 auto;
32723
+ }
32724
+ }
32600
32725
  .alain-default__fixed .alain-default__header {
32601
32726
  position: fixed;
32602
32727
  top: 0;
@@ -32625,13 +32750,13 @@ body {
32625
32750
  display: block;
32626
32751
  }
32627
32752
  .st__p-left .ant-table-pagination {
32628
- display: block;
32629
32753
  float: none;
32754
+ display: block;
32630
32755
  text-align: left;
32631
32756
  }
32632
32757
  .st__p-center .ant-table-pagination {
32633
- display: block;
32634
32758
  float: none;
32759
+ display: block;
32635
32760
  text-align: center;
32636
32761
  }
32637
32762
  .st__btn-sub .st__btn-text {
@@ -32639,8 +32764,8 @@ body {
32639
32764
  color: inherit;
32640
32765
  }
32641
32766
  .st__btn-disabled .st__btn-text {
32642
- color: rgba(0, 0, 0, 0.25);
32643
32767
  pointer-events: none;
32768
+ color: rgba(0, 0, 0, 0.25);
32644
32769
  }
32645
32770
  .st .nz-resizable-handle {
32646
32771
  display: flex;
@@ -32727,8 +32852,8 @@ body {
32727
32852
  @media screen and (min-width: 768px) {
32728
32853
  .st__width-strict .ant-table-content > table,
32729
32854
  .st__width-strict .ant-table-body > table {
32730
- word-wrap: break-word !important;
32731
32855
  table-layout: fixed !important;
32856
+ word-wrap: break-word !important;
32732
32857
  }
32733
32858
  }
32734
32859
  .sv {
@@ -32741,15 +32866,15 @@ body {
32741
32866
  display: block;
32742
32867
  }
32743
32868
  .sv__container .ant-row {
32744
- margin-bottom: -8px;
32745
32869
  overflow: hidden;
32870
+ margin-bottom: -8px;
32746
32871
  }
32747
32872
  .sv__item-fixed {
32748
32873
  display: flex;
32749
32874
  }
32750
32875
  .sv__item-fixed .sv__label {
32751
- flex: 0 0 auto;
32752
32876
  overflow: hidden;
32877
+ flex: 0 0 auto;
32753
32878
  text-align: right;
32754
32879
  text-overflow: ellipsis;
32755
32880
  }
@@ -32760,27 +32885,27 @@ body {
32760
32885
  margin: 0 0 8px 0;
32761
32886
  }
32762
32887
  .sv__title {
32763
- display: block;
32764
32888
  float: none;
32765
32889
  clear: both;
32890
+ display: block;
32766
32891
  width: 100%;
32767
32892
  margin-bottom: 8px;
32768
- color: rgba(0, 0, 0, 0.85);
32769
- font-weight: 500;
32770
32893
  font-size: 14px;
32894
+ font-weight: 500;
32895
+ color: rgba(0, 0, 0, 0.85);
32771
32896
  }
32772
32897
  .sv__label {
32773
32898
  display: table-cell;
32774
32899
  padding-bottom: 8px;
32775
- color: rgba(0, 0, 0, 0.5);
32776
32900
  line-height: 22px;
32901
+ color: rgba(0, 0, 0, 0.5);
32777
32902
  white-space: nowrap;
32778
32903
  }
32779
32904
  .sv__label:not(.sv__label-empty)::after {
32905
+ content: ':';
32780
32906
  position: relative;
32781
32907
  top: -0.5px;
32782
32908
  margin: 0 8px 0 2px;
32783
- content: ':';
32784
32909
  }
32785
32910
  .sv__label-optional {
32786
32911
  margin-left: 2px;
@@ -32796,10 +32921,10 @@ body {
32796
32921
  display: table-cell;
32797
32922
  width: 100%;
32798
32923
  padding-bottom: 8px;
32799
- color: rgba(0, 0, 0, 0.85);
32800
32924
  line-height: 22px;
32801
- vertical-align: top;
32925
+ color: rgba(0, 0, 0, 0.85);
32802
32926
  word-break: break-all;
32927
+ vertical-align: top;
32803
32928
  }
32804
32929
  .sv__type-primary .sv__detail {
32805
32930
  color: #1890ff;
@@ -32841,9 +32966,9 @@ body {
32841
32966
  }
32842
32967
  .sv__value-prefix,
32843
32968
  .sv__value-unit {
32844
- color: rgba(0, 0, 0, 0.5);
32845
32969
  font-size: 12px;
32846
32970
  font-style: normal;
32971
+ color: rgba(0, 0, 0, 0.5);
32847
32972
  }
32848
32973
  .sv__value-prefix {
32849
32974
  padding-right: 3px;
@@ -32860,11 +32985,11 @@ body {
32860
32985
  padding-left: 14px;
32861
32986
  }
32862
32987
  .sv__value:not(:first-child)::before {
32988
+ content: '/';
32863
32989
  position: absolute;
32864
32990
  left: 0;
32865
32991
  width: 6px;
32866
32992
  color: rgba(0, 0, 0, 0.5);
32867
- content: '/';
32868
32993
  }
32869
32994
  .sv__value-small .sv__value-text {
32870
32995
  font-size: 14px;
@@ -32920,14 +33045,14 @@ body {
32920
33045
  padding: 4px 8px;
32921
33046
  }
32922
33047
  .se__title {
32923
- display: block;
32924
33048
  float: none;
32925
33049
  clear: both;
33050
+ display: block;
32926
33051
  width: 100%;
32927
- color: rgba(0, 0, 0, 0.85);
32928
- font-weight: 700;
32929
33052
  font-size: 14px;
33053
+ font-weight: 700;
32930
33054
  line-height: 1.66667;
33055
+ color: rgba(0, 0, 0, 0.85);
32931
33056
  }
32932
33057
  .se__item {
32933
33058
  transition: none;
@@ -32937,8 +33062,8 @@ body {
32937
33062
  padding-bottom: 0;
32938
33063
  }
32939
33064
  .se__item-empty::before {
32940
- display: inline-block;
32941
33065
  content: '';
33066
+ display: inline-block;
32942
33067
  }
32943
33068
  .se__item + .ant-divider {
32944
33069
  margin: 0 0 16px 0;
@@ -32947,8 +33072,8 @@ body {
32947
33072
  display: table-cell;
32948
33073
  flex: 0 0 auto;
32949
33074
  width: initial;
32950
- white-space: nowrap;
32951
33075
  text-align: right;
33076
+ white-space: nowrap;
32952
33077
  }
32953
33078
  .se__label-optional {
32954
33079
  margin-left: 2px;
@@ -33063,8 +33188,8 @@ body {
33063
33188
  font-size: 12px;
33064
33189
  }
33065
33190
  .avatar-list__item .ant-avatar {
33066
- border: 1px solid #fff;
33067
33191
  cursor: pointer;
33192
+ border: 1px solid #fff;
33068
33193
  }
33069
33194
  .avatar-list__large {
33070
33195
  width: 32px;
@@ -33094,9 +33219,9 @@ ellipsis {
33094
33219
  display: inline;
33095
33220
  }
33096
33221
  .ellipsis {
33222
+ overflow: hidden;
33097
33223
  display: inline-block;
33098
33224
  width: 100%;
33099
- overflow: hidden;
33100
33225
  word-break: break-all;
33101
33226
  }
33102
33227
  .ellipsis__lines {
@@ -33104,9 +33229,9 @@ ellipsis {
33104
33229
  }
33105
33230
  .ellipsis__line-clamp {
33106
33231
  position: relative;
33232
+ overflow: hidden;
33107
33233
  /* stylelint-disable-next-line value-no-vendor-prefix */
33108
33234
  display: -webkit-box;
33109
- overflow: hidden;
33110
33235
  text-overflow: ellipsis;
33111
33236
  }
33112
33237
  .ellipsis__shadow {
@@ -33117,17 +33242,17 @@ ellipsis {
33117
33242
  opacity: 0;
33118
33243
  }
33119
33244
  .error-collect {
33245
+ cursor: pointer;
33120
33246
  padding-right: 24px;
33121
33247
  color: #f5222d;
33122
- cursor: pointer;
33123
33248
  }
33124
33249
  .error-collect__count {
33125
33250
  padding-left: 8px;
33126
33251
  }
33127
33252
  .error-collect-rtl {
33253
+ direction: rtl;
33128
33254
  padding-right: 0;
33129
33255
  padding-left: 24px;
33130
- direction: rtl;
33131
33256
  }
33132
33257
  .error-collect-rtl .error-collect__count {
33133
33258
  padding-right: 8px;
@@ -33139,15 +33264,15 @@ ellipsis {
33139
33264
  height: 100%;
33140
33265
  }
33141
33266
  .exception__img-block {
33267
+ zoom: 1;
33142
33268
  flex: 0 0 62.5%;
33143
33269
  width: 62.5%;
33144
33270
  padding-right: 152px;
33145
- zoom: 1;
33146
33271
  }
33147
33272
  .exception__img-block::before,
33148
33273
  .exception__img-block::after {
33149
- display: table;
33150
33274
  content: ' ';
33275
+ display: table;
33151
33276
  }
33152
33277
  .exception__img-block::after {
33153
33278
  clear: both;
@@ -33169,16 +33294,16 @@ ellipsis {
33169
33294
  }
33170
33295
  .exception__cont-title {
33171
33296
  margin-bottom: 24px;
33172
- color: #434e59;
33173
- font-weight: 600;
33174
33297
  font-size: 72px;
33298
+ font-weight: 600;
33175
33299
  line-height: 72px;
33300
+ color: #434e59;
33176
33301
  }
33177
33302
  .exception__cont-desc {
33178
33303
  margin-bottom: 16px;
33179
- color: rgba(0, 0, 0, 0.45);
33180
33304
  font-size: 20px;
33181
33305
  line-height: 28px;
33306
+ color: rgba(0, 0, 0, 0.45);
33182
33307
  }
33183
33308
  .exception__cont-actions .ant-btn:not(:last-child) {
33184
33309
  margin-right: 8px;
@@ -33200,8 +33325,8 @@ ellipsis {
33200
33325
  }
33201
33326
  @media screen and (max-width: 480px) {
33202
33327
  .exception__img-block {
33203
- margin-bottom: -24px;
33204
33328
  overflow: hidden;
33329
+ margin-bottom: -24px;
33205
33330
  }
33206
33331
  }
33207
33332
  .exception-rtl {
@@ -33212,9 +33337,9 @@ ellipsis {
33212
33337
  }
33213
33338
  .footer-toolbar {
33214
33339
  position: fixed;
33340
+ z-index: 9;
33215
33341
  right: 0;
33216
33342
  bottom: 0;
33217
- z-index: 9;
33218
33343
  display: flex;
33219
33344
  width: 100%;
33220
33345
  height: 48px;
@@ -33229,9 +33354,9 @@ ellipsis {
33229
33354
  flex: 1;
33230
33355
  }
33231
33356
  .full-content {
33357
+ overflow: auto;
33232
33358
  display: block;
33233
33359
  height: 100%;
33234
- overflow: auto;
33235
33360
  }
33236
33361
  .full-content__body {
33237
33362
  overflow: hidden;
@@ -33257,8 +33382,8 @@ ellipsis {
33257
33382
  color: rgba(0, 0, 0, 0.85);
33258
33383
  }
33259
33384
  .global-footer__copyright {
33260
- color: rgba(0, 0, 0, 0.45);
33261
33385
  font-size: 12px;
33386
+ color: rgba(0, 0, 0, 0.45);
33262
33387
  }
33263
33388
  .global-footer-rtl {
33264
33389
  direction: rtl;
@@ -33271,8 +33396,8 @@ ellipsis {
33271
33396
  width: 336px;
33272
33397
  }
33273
33398
  .notice-icon__btn {
33274
- display: inline-block;
33275
33399
  cursor: pointer;
33400
+ display: inline-block;
33276
33401
  transition: all 0.3s;
33277
33402
  }
33278
33403
  .notice-icon .ant-popover-inner-content {
@@ -33285,14 +33410,14 @@ ellipsis {
33285
33410
  margin-left: 32px;
33286
33411
  }
33287
33412
  .notice-icon .ant-list {
33288
- max-height: 400px;
33289
33413
  overflow: auto;
33414
+ max-height: 400px;
33290
33415
  }
33291
33416
  .notice-icon .ant-list-item {
33417
+ cursor: pointer;
33418
+ overflow: hidden;
33292
33419
  padding-right: 24px;
33293
33420
  padding-left: 24px;
33294
- overflow: hidden;
33295
- cursor: pointer;
33296
33421
  transition: all 0.3s;
33297
33422
  }
33298
33423
  .notice-icon .ant-list-item:last-child {
@@ -33323,13 +33448,13 @@ ellipsis {
33323
33448
  margin-bottom: 16px;
33324
33449
  }
33325
33450
  .notice-icon__clear {
33451
+ cursor: pointer;
33326
33452
  height: 46px;
33327
- color: rgba(0, 0, 0, 0.85);
33328
33453
  line-height: 46px;
33454
+ color: rgba(0, 0, 0, 0.85);
33329
33455
  text-align: center;
33330
33456
  border-top: 1px solid #f0f0f0;
33331
33457
  border-radius: 0 0 2px 2px;
33332
- cursor: pointer;
33333
33458
  transition: all 0.3s;
33334
33459
  }
33335
33460
  .notice-icon__clear:hover {
@@ -33354,8 +33479,8 @@ ellipsis {
33354
33479
  float: right;
33355
33480
  margin-top: -1.5px;
33356
33481
  margin-right: 0;
33357
- color: rgba(0, 0, 0, 0.45);
33358
33482
  font-weight: normal;
33483
+ color: rgba(0, 0, 0, 0.45);
33359
33484
  }
33360
33485
  .page-header {
33361
33486
  display: block;
@@ -33395,15 +33520,15 @@ ellipsis {
33395
33520
  border-radius: 2px;
33396
33521
  }
33397
33522
  .page-header__title {
33398
- color: rgba(0, 0, 0, 0.85);
33399
- font-weight: 500;
33400
33523
  font-size: 20px;
33524
+ font-weight: 500;
33525
+ color: rgba(0, 0, 0, 0.85);
33401
33526
  }
33402
33527
  .page-header__title small {
33403
33528
  padding-left: 8px;
33404
- color: rgba(0, 0, 0, 0.4);
33405
- font-weight: normal;
33406
33529
  font-size: 14px;
33530
+ font-weight: normal;
33531
+ color: rgba(0, 0, 0, 0.4);
33407
33532
  }
33408
33533
  .page-header__action {
33409
33534
  min-width: 266px;
@@ -33511,9 +33636,9 @@ ellipsis {
33511
33636
  }
33512
33637
  .quick-menu {
33513
33638
  position: fixed;
33639
+ z-index: 11;
33514
33640
  right: -1px;
33515
33641
  left: auto;
33516
- z-index: 11;
33517
33642
  display: block;
33518
33643
  backface-visibility: hidden;
33519
33644
  transition: margin 0.3s cubic-bezier(1, 0, 0, 1);
@@ -33529,6 +33654,7 @@ ellipsis {
33529
33654
  padding: 0 12px;
33530
33655
  }
33531
33656
  .quick-menu__ctrl {
33657
+ cursor: pointer;
33532
33658
  position: absolute;
33533
33659
  top: -1px;
33534
33660
  left: -50px;
@@ -33537,7 +33663,6 @@ ellipsis {
33537
33663
  text-align: center;
33538
33664
  border-right: 0;
33539
33665
  border-radius: 3px 0 0 3px;
33540
- cursor: pointer;
33541
33666
  }
33542
33667
  .quick-menu__ctrl-icon {
33543
33668
  font-size: 20px;
@@ -33549,11 +33674,6 @@ ellipsis {
33549
33674
  margin: 0 auto;
33550
33675
  text-align: center;
33551
33676
  }
33552
- @media screen and (max-width: 480px) {
33553
- .result {
33554
- width: 100%;
33555
- }
33556
- }
33557
33677
  .result__icon {
33558
33678
  margin-bottom: 24px;
33559
33679
  font-size: 72px;
@@ -33567,16 +33687,16 @@ ellipsis {
33567
33687
  }
33568
33688
  .result__title {
33569
33689
  margin-bottom: 16px;
33570
- color: rgba(0, 0, 0, 0.85);
33571
- font-weight: 500;
33572
33690
  font-size: 24px;
33691
+ font-weight: 500;
33573
33692
  line-height: 32px;
33693
+ color: rgba(0, 0, 0, 0.85);
33574
33694
  }
33575
33695
  .result__desc {
33576
33696
  margin-bottom: 24px;
33577
- color: rgba(0, 0, 0, 0.45);
33578
33697
  font-size: 14px;
33579
33698
  line-height: 22px;
33699
+ color: rgba(0, 0, 0, 0.45);
33580
33700
  }
33581
33701
  .result__extra {
33582
33702
  padding: 24px 40px;
@@ -33599,28 +33719,33 @@ ellipsis {
33599
33719
  .result .ant-steps .ant-steps-title {
33600
33720
  background: #fafafa;
33601
33721
  }
33722
+ @media screen and (max-width: 480px) {
33723
+ .result {
33724
+ width: 100%;
33725
+ }
33726
+ }
33602
33727
  .result-rtl {
33603
33728
  direction: rtl;
33604
33729
  }
33605
33730
  .reuse-tab {
33731
+ user-select: none;
33606
33732
  display: block;
33607
33733
  background-color: #fff;
33608
33734
  outline: none;
33609
- user-select: none;
33610
33735
  }
33611
33736
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__op {
33612
33737
  position: absolute;
33613
33738
  display: none;
33614
33739
  margin: 0;
33615
- color: rgba(0, 0, 0, 0.85);
33616
33740
  font-size: 10px;
33741
+ color: rgba(0, 0, 0, 0.85);
33617
33742
  }
33618
33743
  .reuse-tab .ant-tabs-nav .ant-tabs-tab:hover .reuse-tab__op {
33619
33744
  display: block;
33620
33745
  }
33621
33746
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__name-width {
33622
- display: inline-block;
33623
33747
  overflow: hidden;
33748
+ display: inline-block;
33624
33749
  text-overflow: ellipsis;
33625
33750
  }
33626
33751
  .reuse-tab .ant-tabs > .ant-tabs-nav {
@@ -33655,8 +33780,8 @@ ellipsis {
33655
33780
  right: 4px;
33656
33781
  }
33657
33782
  .reuse-tab__disabled {
33658
- opacity: 0.8;
33659
33783
  pointer-events: none;
33784
+ opacity: 0.8;
33660
33785
  }
33661
33786
  .reuse-tab__cm .ant-menu {
33662
33787
  border: 1px solid #e9e9e9;
@@ -33665,15 +33790,15 @@ ellipsis {
33665
33790
  direction: rtl;
33666
33791
  }
33667
33792
  .tag-select {
33793
+ user-select: none;
33668
33794
  position: relative;
33795
+ overflow: hidden;
33669
33796
  display: block;
33670
33797
  max-height: 28px;
33671
33798
  margin-top: -8px;
33672
33799
  margin-left: -8px;
33673
- overflow: hidden;
33674
33800
  line-height: 1.66667;
33675
33801
  transition: all 0.3s;
33676
- user-select: none;
33677
33802
  }
33678
33803
  .tag-select__expanded {
33679
33804
  max-height: 200px;
@@ -33701,9 +33826,9 @@ ellipsis {
33701
33826
  transition: transform 0.24s;
33702
33827
  }
33703
33828
  .tag-select-rtl {
33829
+ direction: rtl;
33704
33830
  margin-right: -8px;
33705
33831
  margin-left: 0;
33706
- direction: rtl;
33707
33832
  }
33708
33833
  .tag-select-rtl__has-expand {
33709
33834
  padding-right: 0 !important;
@@ -33722,17 +33847,18 @@ ellipsis {
33722
33847
  margin-left: 8px;
33723
33848
  }
33724
33849
  .down-file__not-support {
33850
+ /* stylelint-disable-next-line order/order */
33725
33851
  display: none;
33726
33852
  }
33727
33853
  .loading-backdrop {
33728
33854
  z-index: 9999;
33729
- background-color: rgba(0, 0, 0, 0.15);
33730
33855
  opacity: 1;
33856
+ background-color: rgba(0, 0, 0, 0.15);
33731
33857
  }
33732
33858
  .loading-default {
33733
33859
  position: fixed;
33734
- inset: 0;
33735
33860
  z-index: 10000;
33861
+ inset: 0;
33736
33862
  display: flex;
33737
33863
  flex-direction: column;
33738
33864
  align-items: center;
@@ -33740,8 +33866,8 @@ ellipsis {
33740
33866
  }
33741
33867
  .loading-default__icon {
33742
33868
  margin-bottom: 8px;
33743
- color: #1890ff;
33744
33869
  font-size: 24px;
33870
+ color: #1890ff;
33745
33871
  }
33746
33872
  .loading-default__text {
33747
33873
  color: #1890ff;
@@ -33759,20 +33885,20 @@ ellipsis {
33759
33885
  }
33760
33886
  .onboarding__mask {
33761
33887
  position: fixed;
33762
- inset: 0;
33763
33888
  z-index: 99998;
33764
- background-color: #000;
33889
+ inset: 0;
33765
33890
  opacity: 0.5;
33891
+ background-color: #000;
33766
33892
  }
33767
33893
  .onboarding__item {
33768
33894
  position: absolute;
33769
33895
  }
33770
33896
  .onboarding__light {
33897
+ pointer-events: none;
33771
33898
  position: absolute;
33772
33899
  z-index: 99999;
33773
33900
  background-color: rgba(255, 255, 255, 0.9);
33774
33901
  animation: 2500ms cubic-bezier(0.55, 0.05, 0.6, 0.2) 0s infinite normal none running onboardingAnt;
33775
- pointer-events: none;
33776
33902
  }
33777
33903
  .onboarding__light-el {
33778
33904
  z-index: 100000 !important;
@@ -33801,9 +33927,9 @@ ellipsis {
33801
33927
  }
33802
33928
  .pdf-container {
33803
33929
  position: absolute;
33930
+ overflow-x: auto;
33804
33931
  width: 100%;
33805
33932
  height: 100%;
33806
- overflow-x: auto;
33807
33933
  -webkit-overflow-scrolling: touch;
33808
33934
  }
33809
33935
  .cell__has-unit {
@@ -33839,8 +33965,8 @@ ellipsis {
33839
33965
  }
33840
33966
  .cell .unit {
33841
33967
  margin-left: 2px;
33842
- color: rgba(0, 0, 0, 0.45);
33843
33968
  font-size: 12px;
33969
+ color: rgba(0, 0, 0, 0.45);
33844
33970
  }
33845
33971
  .cell__disabled[data-type="link"] {
33846
33972
  pointer-events: none;
@@ -33869,8 +33995,8 @@ g2-tag-cloud {
33869
33995
  }
33870
33996
  .g2-card__top {
33871
33997
  position: relative;
33872
- width: 100%;
33873
33998
  overflow: hidden;
33999
+ width: 100%;
33874
34000
  }
33875
34001
  .g2-card__top-margin {
33876
34002
  margin-bottom: 12px;
@@ -33880,19 +34006,19 @@ g2-tag-cloud {
33880
34006
  }
33881
34007
  .g2-card__meta {
33882
34008
  height: 22px;
33883
- color: rgba(0, 0, 0, 0.45);
33884
34009
  font-size: 12px;
33885
34010
  line-height: 22px;
34011
+ color: rgba(0, 0, 0, 0.45);
33886
34012
  }
33887
34013
  .g2-card__meta-wrap {
33888
34014
  float: left;
33889
34015
  }
33890
34016
  .g2-card__meta-action {
34017
+ cursor: pointer;
33891
34018
  position: absolute;
33892
34019
  top: 4px;
33893
34020
  right: 0;
33894
34021
  line-height: 1;
33895
- cursor: pointer;
33896
34022
  }
33897
34023
  .g2-card__avatar {
33898
34024
  position: relative;
@@ -33904,16 +34030,16 @@ g2-tag-cloud {
33904
34030
  border-radius: 100%;
33905
34031
  }
33906
34032
  .g2-card__total {
34033
+ overflow: hidden;
33907
34034
  height: 38px;
33908
34035
  margin-top: 4px;
33909
34036
  margin-bottom: 0;
33910
- overflow: hidden;
33911
- color: rgba(0, 0, 0, 0.85);
33912
34037
  font-size: 30px;
33913
34038
  line-height: 38px;
33914
- white-space: nowrap;
34039
+ color: rgba(0, 0, 0, 0.85);
33915
34040
  text-overflow: ellipsis;
33916
34041
  word-break: break-all;
34042
+ white-space: nowrap;
33917
34043
  }
33918
34044
  .g2-card__desc {
33919
34045
  width: 100%;
@@ -33972,17 +34098,17 @@ g2-tag-cloud {
33972
34098
  position: absolute;
33973
34099
  top: 50%;
33974
34100
  right: 0;
34101
+ transform: translateY(-50%);
33975
34102
  min-width: 250px;
33976
34103
  margin: 0 20px;
33977
34104
  padding: 0;
33978
34105
  list-style: none;
33979
- transform: translateY(-50%);
33980
34106
  }
33981
34107
  .g2-pie__legend-item {
34108
+ cursor: pointer;
33982
34109
  height: 22px;
33983
34110
  margin-bottom: 16px;
33984
34111
  line-height: 22px;
33985
- cursor: pointer;
33986
34112
  }
33987
34113
  .g2-pie__legend-item:last-child {
33988
34114
  margin-bottom: 0;
@@ -34015,31 +34141,31 @@ g2-tag-cloud {
34015
34141
  }
34016
34142
  .g2-pie__legend-block .g2-pie__legend {
34017
34143
  position: relative;
34018
- min-width: auto;
34019
34144
  transform: none;
34145
+ min-width: auto;
34020
34146
  }
34021
34147
  .g2-pie__total {
34022
34148
  position: absolute;
34023
34149
  top: 50%;
34024
34150
  left: 50%;
34151
+ transform: translate(-50%, -50%);
34025
34152
  height: 62px;
34026
34153
  text-align: center;
34027
- transform: translate(-50%, -50%);
34028
34154
  }
34029
34155
  .g2-pie__total-title {
34030
34156
  height: 22px;
34031
34157
  margin-bottom: 8px;
34032
- color: rgba(0, 0, 0, 0.45);
34033
- font-weight: normal;
34034
34158
  font-size: 14px;
34159
+ font-weight: normal;
34035
34160
  line-height: 22px;
34161
+ color: rgba(0, 0, 0, 0.45);
34036
34162
  }
34037
34163
  .g2-pie__total-stat {
34038
34164
  display: block;
34039
34165
  height: 32px;
34040
- color: rgba(0, 0, 0, 0.85);
34041
34166
  font-size: 1.2em;
34042
34167
  line-height: 32px;
34168
+ color: rgba(0, 0, 0, 0.85);
34043
34169
  white-space: nowrap;
34044
34170
  }
34045
34171
  .g2-pie__mini .g2-pie__total-title {
@@ -34053,20 +34179,20 @@ g2-tag-cloud {
34053
34179
  margin-top: 16px;
34054
34180
  }
34055
34181
  .g2-radar__legend-item {
34182
+ cursor: pointer;
34056
34183
  position: relative;
34057
- color: rgba(0, 0, 0, 0.45);
34058
34184
  line-height: 22px;
34185
+ color: rgba(0, 0, 0, 0.45);
34059
34186
  text-align: center;
34060
- cursor: pointer;
34061
34187
  }
34062
34188
  .g2-radar__legend-item::after {
34189
+ content: '';
34063
34190
  position: absolute;
34064
34191
  top: 8px;
34065
34192
  right: 0;
34066
34193
  width: 1px;
34067
34194
  height: 40px;
34068
34195
  background-color: #f0f0f0;
34069
- content: '';
34070
34196
  }
34071
34197
  .g2-radar__legend-item:last-child::after {
34072
34198
  display: none;
@@ -34075,9 +34201,9 @@ g2-tag-cloud {
34075
34201
  margin-top: 4px;
34076
34202
  margin-bottom: 0;
34077
34203
  padding-left: 16px;
34078
- color: rgba(0, 0, 0, 0.85);
34079
34204
  font-size: 24px;
34080
34205
  line-height: 32px;
34206
+ color: rgba(0, 0, 0, 0.85);
34081
34207
  }
34082
34208
  .g2-radar__legend-dot {
34083
34209
  position: relative;
@@ -34090,8 +34216,8 @@ g2-tag-cloud {
34090
34216
  }
34091
34217
  .g2-water-wave {
34092
34218
  position: relative;
34093
- display: inline-block;
34094
34219
  transform-origin: left;
34220
+ display: inline-block;
34095
34221
  }
34096
34222
  .g2-water-wave__desc {
34097
34223
  position: absolute;
@@ -34101,69 +34227,69 @@ g2-tag-cloud {
34101
34227
  text-align: center;
34102
34228
  }
34103
34229
  .g2-water-wave__desc-title {
34104
- color: rgba(0, 0, 0, 0.45);
34105
34230
  font-size: 14px;
34106
34231
  line-height: 22px;
34232
+ color: rgba(0, 0, 0, 0.45);
34107
34233
  }
34108
34234
  .g2-water-wave__desc-percent {
34109
- color: rgba(0, 0, 0, 0.85);
34110
34235
  font-size: 24px;
34111
34236
  line-height: 32px;
34237
+ color: rgba(0, 0, 0, 0.85);
34112
34238
  }
34113
34239
  .g2-water-wave__canvas {
34114
- transform: scale(0.5);
34115
34240
  transform-origin: 0 0;
34241
+ transform: scale(0.5);
34116
34242
  }
34117
34243
  .number-info {
34118
34244
  display: inline-block;
34119
34245
  }
34120
34246
  .number-info__title {
34121
34247
  margin-bottom: 16px;
34122
- color: rgba(0, 0, 0, 0.85);
34123
34248
  font-size: 14px;
34249
+ color: rgba(0, 0, 0, 0.85);
34124
34250
  transition: all 0.3s;
34125
34251
  }
34126
34252
  .number-info__title-sub {
34127
- height: 22px;
34128
34253
  overflow: hidden;
34129
- color: rgba(0, 0, 0, 0.45);
34254
+ height: 22px;
34130
34255
  font-size: 12px;
34131
34256
  line-height: 22px;
34132
- white-space: nowrap;
34257
+ color: rgba(0, 0, 0, 0.45);
34133
34258
  text-overflow: ellipsis;
34134
34259
  word-break: break-all;
34260
+ white-space: nowrap;
34135
34261
  }
34136
34262
  .number-info__value {
34137
- margin-top: 4px;
34138
34263
  overflow: hidden;
34264
+ margin-top: 4px;
34139
34265
  font-size: 0;
34140
- white-space: nowrap;
34141
34266
  text-overflow: ellipsis;
34142
34267
  word-break: break-all;
34268
+ white-space: nowrap;
34143
34269
  }
34144
34270
  .number-info__value-suffix {
34145
34271
  margin-left: 4px;
34146
- color: rgba(0, 0, 0, 0.85);
34147
34272
  font-size: 16px;
34148
34273
  font-style: normal;
34274
+ color: rgba(0, 0, 0, 0.85);
34149
34275
  }
34150
34276
  .number-info__value-text {
34151
34277
  display: inline-block;
34152
34278
  height: 32px;
34153
- color: rgba(0, 0, 0, 0.85);
34154
34279
  font-size: 24px;
34155
34280
  line-height: 32px;
34281
+ color: rgba(0, 0, 0, 0.85);
34156
34282
  }
34157
34283
  .number-info__value-sub {
34158
34284
  margin-left: 32px;
34159
- color: rgba(0, 0, 0, 0.45);
34160
34285
  font-size: 14px;
34286
+ color: rgba(0, 0, 0, 0.45);
34161
34287
  vertical-align: top;
34162
34288
  }
34163
34289
  .number-info__value-sub .anticon {
34290
+ transform: scale(0.82);
34164
34291
  margin-left: 4px;
34165
34292
  font-size: 12px;
34166
- transform: scale(0.82);
34167
34293
  }
34168
34294
  .number-info__value-sub .anticon-caret-up {
34169
34295
  color: #f5222d;
@@ -34180,6 +34306,7 @@ g2-tag-cloud {
34180
34306
  padding-left: 32px;
34181
34307
  }
34182
34308
  .number-info:not(:first-child)::after {
34309
+ content: '';
34183
34310
  position: absolute;
34184
34311
  top: 0;
34185
34312
  bottom: 0;
@@ -34187,7 +34314,6 @@ g2-tag-cloud {
34187
34314
  width: 1px;
34188
34315
  margin: 8px 0;
34189
34316
  background-color: #f0f0f0;
34190
- content: '';
34191
34317
  }
34192
34318
  .trend {
34193
34319
  display: inline-block;
@@ -34202,8 +34328,8 @@ g2-tag-cloud {
34202
34328
  }
34203
34329
  .trend__up i,
34204
34330
  .trend__down i {
34205
- font-size: 12px;
34206
34331
  transform: scale(0.83);
34332
+ font-size: 12px;
34207
34333
  }
34208
34334
  .trend__up {
34209
34335
  color: #f5222d;