@delon/theme 16.4.3 → 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/dark.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(255, 255, 255, 0.3);
5950
5949
  pointer-events: none;
5950
+ color: rgba(255, 255, 255, 0.3);
5951
5951
  }
5952
5952
  .ant-picker-input > input-disabled:hover {
5953
5953
  border-color: #434343;
@@ -5959,8 +5959,8 @@ nz-comment-content {
5959
5959
  box-shadow: none;
5960
5960
  cursor: not-allowed;
5961
5961
  opacity: 1;
5962
- color: rgba(255, 255, 255, 0.3);
5963
5962
  pointer-events: none;
5963
+ color: rgba(255, 255, 255, 0.3);
5964
5964
  }
5965
5965
  .ant-picker-input > input[disabled]:hover {
5966
5966
  border-color: #434343;
@@ -13296,8 +13296,8 @@ nz-empty {
13296
13296
  box-shadow: none;
13297
13297
  cursor: not-allowed;
13298
13298
  opacity: 1;
13299
- color: rgba(255, 255, 255, 0.3);
13300
13299
  pointer-events: none;
13300
+ color: rgba(255, 255, 255, 0.3);
13301
13301
  }
13302
13302
  .ant-input-affix-wrapper-disabled:hover {
13303
13303
  border-color: #434343;
@@ -13309,8 +13309,8 @@ nz-empty {
13309
13309
  box-shadow: none;
13310
13310
  cursor: not-allowed;
13311
13311
  opacity: 1;
13312
- color: rgba(255, 255, 255, 0.3);
13313
13312
  pointer-events: none;
13313
+ color: rgba(255, 255, 255, 0.3);
13314
13314
  }
13315
13315
  .ant-input-affix-wrapper[disabled]:hover {
13316
13316
  border-color: #434343;
@@ -13584,8 +13584,8 @@ textarea.ant-input-affix-wrapper {
13584
13584
  box-shadow: none;
13585
13585
  cursor: not-allowed;
13586
13586
  opacity: 1;
13587
- color: rgba(255, 255, 255, 0.3);
13588
13587
  pointer-events: none;
13588
+ color: rgba(255, 255, 255, 0.3);
13589
13589
  }
13590
13590
  .ant-input-disabled:hover {
13591
13591
  border-color: #434343;
@@ -13597,8 +13597,8 @@ textarea.ant-input-affix-wrapper {
13597
13597
  box-shadow: none;
13598
13598
  cursor: not-allowed;
13599
13599
  opacity: 1;
13600
- color: rgba(255, 255, 255, 0.3);
13601
13600
  pointer-events: none;
13601
+ color: rgba(255, 255, 255, 0.3);
13602
13602
  }
13603
13603
  .ant-input[disabled]:hover {
13604
13604
  border-color: #434343;
@@ -14246,8 +14246,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
14246
14246
  box-shadow: none;
14247
14247
  cursor: not-allowed;
14248
14248
  opacity: 1;
14249
- color: rgba(255, 255, 255, 0.3);
14250
14249
  pointer-events: none;
14250
+ color: rgba(255, 255, 255, 0.3);
14251
14251
  }
14252
14252
  .ant-input-number-affix-wrapper-disabled:hover {
14253
14253
  border-color: #434343;
@@ -14259,8 +14259,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
14259
14259
  box-shadow: none;
14260
14260
  cursor: not-allowed;
14261
14261
  opacity: 1;
14262
- color: rgba(255, 255, 255, 0.3);
14263
14262
  pointer-events: none;
14263
+ color: rgba(255, 255, 255, 0.3);
14264
14264
  }
14265
14265
  .ant-input-number-affix-wrapper[disabled]:hover {
14266
14266
  border-color: #434343;
@@ -14497,8 +14497,8 @@ textarea.ant-input-number-affix-wrapper {
14497
14497
  box-shadow: none;
14498
14498
  cursor: not-allowed;
14499
14499
  opacity: 1;
14500
- color: rgba(255, 255, 255, 0.3);
14501
14500
  pointer-events: none;
14501
+ color: rgba(255, 255, 255, 0.3);
14502
14502
  }
14503
14503
  .ant-input-number-disabled:hover {
14504
14504
  border-color: #434343;
@@ -14510,8 +14510,8 @@ textarea.ant-input-number-affix-wrapper {
14510
14510
  box-shadow: none;
14511
14511
  cursor: not-allowed;
14512
14512
  opacity: 1;
14513
- color: rgba(255, 255, 255, 0.3);
14514
14513
  pointer-events: none;
14514
+ color: rgba(255, 255, 255, 0.3);
14515
14515
  }
14516
14516
  .ant-input-number[disabled]:hover {
14517
14517
  border-color: #434343;
@@ -14993,8 +14993,8 @@ textarea.ant-input-number {
14993
14993
  box-shadow: none;
14994
14994
  cursor: not-allowed;
14995
14995
  opacity: 1;
14996
- color: rgba(255, 255, 255, 0.3);
14997
14996
  pointer-events: none;
14997
+ color: rgba(255, 255, 255, 0.3);
14998
14998
  }
14999
14999
  .ant-input-number-disabled:hover {
15000
15000
  border-color: #434343;
@@ -17256,8 +17256,8 @@ nz-list-item-extra {
17256
17256
  box-shadow: none;
17257
17257
  cursor: not-allowed;
17258
17258
  opacity: 1;
17259
- color: rgba(255, 255, 255, 0.3);
17260
17259
  pointer-events: none;
17260
+ color: rgba(255, 255, 255, 0.3);
17261
17261
  }
17262
17262
  .ant-mentions-disabled:hover {
17263
17263
  border-color: #434343;
@@ -17269,8 +17269,8 @@ nz-list-item-extra {
17269
17269
  box-shadow: none;
17270
17270
  cursor: not-allowed;
17271
17271
  opacity: 1;
17272
- color: rgba(255, 255, 255, 0.3);
17273
17272
  pointer-events: none;
17273
+ color: rgba(255, 255, 255, 0.3);
17274
17274
  }
17275
17275
  .ant-mentions[disabled]:hover {
17276
17276
  border-color: #434343;
@@ -17318,8 +17318,8 @@ textarea.ant-mentions {
17318
17318
  box-shadow: none;
17319
17319
  cursor: not-allowed;
17320
17320
  opacity: 1;
17321
- color: rgba(255, 255, 255, 0.3);
17322
17321
  pointer-events: none;
17322
+ color: rgba(255, 255, 255, 0.3);
17323
17323
  }
17324
17324
  .ant-mentions-disabled > textarea:hover {
17325
17325
  border-color: #434343;
@@ -18996,8 +18996,8 @@ nz-page-header-footer {
18996
18996
  box-shadow: none;
18997
18997
  cursor: not-allowed;
18998
18998
  opacity: 1;
18999
- color: rgba(255, 255, 255, 0.3);
19000
18999
  pointer-events: none;
19000
+ color: rgba(255, 255, 255, 0.3);
19001
19001
  }
19002
19002
  .ant-pagination-options-quick-jumper input-disabled:hover {
19003
19003
  border-color: #434343;
@@ -19009,8 +19009,8 @@ nz-page-header-footer {
19009
19009
  box-shadow: none;
19010
19010
  cursor: not-allowed;
19011
19011
  opacity: 1;
19012
- color: rgba(255, 255, 255, 0.3);
19013
19012
  pointer-events: none;
19013
+ color: rgba(255, 255, 255, 0.3);
19014
19014
  }
19015
19015
  .ant-pagination-options-quick-jumper input[disabled]:hover {
19016
19016
  border-color: #434343;
@@ -23402,37 +23402,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
23402
23402
  .ant-table-sticky-scroll-bar-active {
23403
23403
  background-color: rgba(0, 0, 0, 0.8);
23404
23404
  }
23405
- .ant-table-custom-column col {
23406
- width: auto !important;
23407
- min-width: auto !important;
23408
- display: none;
23409
- }
23410
- .ant-table-custom-column .ant-table-thead .ant-table-row {
23411
- width: 100%;
23412
- display: flex;
23413
- justify-content: space-between;
23414
- }
23415
- .ant-table-custom-column .ant-table-thead .ant-table-row th {
23416
- overflow: hidden;
23417
- }
23418
- .ant-table-custom-column .ant-table-tbody .ant-table-row {
23419
- width: 100%;
23420
- display: flex;
23421
- justify-content: space-between;
23422
- }
23423
- .ant-table-custom-column .ant-table-tbody .ant-table-row td {
23424
- overflow: hidden;
23425
- }
23426
- .ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td {
23427
- width: 100%;
23428
- }
23429
- .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
23430
- .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
23431
- overflow: visible;
23432
- }
23433
- .ant-table-custom-column .ant-table-fixed .ant-table-row {
23434
- width: 100%;
23435
- }
23436
23405
  @media all and (-ms-high-contrast: none) {
23437
23406
  .ant-table-ping-left .ant-table-cell-fix-left-last::after {
23438
23407
  box-shadow: none !important;
@@ -23617,6 +23586,42 @@ cdk-virtual-scroll-viewport.ant-table-body {
23617
23586
  .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 {
23618
23587
  margin: -8px -9px;
23619
23588
  }
23589
+ .ant-table-custom-column col {
23590
+ width: auto !important;
23591
+ min-width: auto !important;
23592
+ display: none;
23593
+ }
23594
+ .ant-table-custom-column .ant-table-thead .ant-table-row,
23595
+ .ant-table-custom-column .ant-table-thead tr {
23596
+ width: 100%;
23597
+ display: flex;
23598
+ justify-content: space-between;
23599
+ }
23600
+ .ant-table-custom-column .ant-table-thead .ant-table-row th,
23601
+ .ant-table-custom-column .ant-table-thead tr th {
23602
+ overflow: hidden;
23603
+ }
23604
+ .ant-table-custom-column .ant-table-tbody .ant-table-row,
23605
+ .ant-table-custom-column .ant-table-tbody tr {
23606
+ width: 100%;
23607
+ display: flex;
23608
+ justify-content: space-between;
23609
+ }
23610
+ .ant-table-custom-column .ant-table-tbody .ant-table-row td,
23611
+ .ant-table-custom-column .ant-table-tbody tr td {
23612
+ overflow: hidden;
23613
+ }
23614
+ .ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td,
23615
+ .ant-table-custom-column .ant-table-tbody tr .nz-disable-td {
23616
+ width: 100%;
23617
+ }
23618
+ .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
23619
+ .ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
23620
+ overflow: visible;
23621
+ }
23622
+ .ant-table-custom-column .ant-table-fixed .ant-table-row {
23623
+ width: 100%;
23624
+ }
23620
23625
  .ant-tabs-small > .ant-tabs-nav .ant-tabs-tab {
23621
23626
  padding: 8px 0;
23622
23627
  font-size: 14px;
@@ -28295,9 +28300,6 @@ nz-space-item {
28295
28300
  align-items: center;
28296
28301
  padding-left: 16px;
28297
28302
  }
28298
- .ant-cron-expression-preview-content-date {
28299
- flex: 1 1 auto;
28300
- }
28301
28303
  .ant-cron-expression-preview-list,
28302
28304
  .ant-cron-expression-preview-icon {
28303
28305
  list-style: none;
@@ -28315,18 +28317,13 @@ nz-space-item {
28315
28317
  height: 132px;
28316
28318
  }
28317
28319
  .ant-cron-expression-preview-icon {
28318
- height: 100%;
28320
+ flex: 0 0 16px;
28321
+ display: flex;
28322
+ justify-content: center;
28319
28323
  }
28320
28324
  .ant-cron-expression-error {
28321
28325
  color: #a61d24;
28322
28326
  }
28323
- .ant-cron-expression-hint p {
28324
- display: flex;
28325
- }
28326
- .ant-cron-expression-hint span {
28327
- display: inline-block;
28328
- min-width: 40px;
28329
- }
28330
28327
  .ant-qrcode {
28331
28328
  display: inline-block;
28332
28329
  position: relative;
@@ -28587,6 +28584,130 @@ nz-space-item {
28587
28584
  width: 16px;
28588
28585
  height: 16px;
28589
28586
  }
28587
+ .ant-hashCode {
28588
+ box-sizing: border-box;
28589
+ margin: 0;
28590
+ padding: 0;
28591
+ color: rgba(255, 255, 255, 0.85);
28592
+ font-size: 14px;
28593
+ line-height: 1.5715;
28594
+ list-style: none;
28595
+ display: flex;
28596
+ flex-direction: column;
28597
+ align-items: center;
28598
+ justify-content: center;
28599
+ cursor: pointer;
28600
+ }
28601
+ .ant-hashCode-header-copy {
28602
+ margin-left: 8px;
28603
+ cursor: pointer;
28604
+ opacity: 0.45;
28605
+ }
28606
+ .ant-hashCode-header {
28607
+ display: flex;
28608
+ justify-content: left;
28609
+ width: 100%;
28610
+ height: 22px;
28611
+ padding-bottom: 8px;
28612
+ }
28613
+ .ant-hashCode-header .ant-hashCode-header-title {
28614
+ font-size: 14px;
28615
+ line-height: 1.5715;
28616
+ text-align: center;
28617
+ opacity: 0.45;
28618
+ }
28619
+ .ant-hashCode-header .ant-hashCode-header-logo {
28620
+ display: flex;
28621
+ flex: 1;
28622
+ justify-content: right;
28623
+ }
28624
+ .ant-hashCode-double {
28625
+ width: 172px;
28626
+ }
28627
+ .ant-hashCode-double.ant-hashCode-primary {
28628
+ width: 220px;
28629
+ }
28630
+ .ant-hashCode-single {
28631
+ display: flex;
28632
+ flex-direction: row-reverse;
28633
+ width: 236px;
28634
+ }
28635
+ .ant-hashCode-single.ant-hashCode-primary {
28636
+ width: 284px;
28637
+ }
28638
+ .ant-hashCode-single .ant-hashCode-header-copy {
28639
+ margin-top: 8px;
28640
+ }
28641
+ .ant-hashCode-strip {
28642
+ width: 350px;
28643
+ }
28644
+ .ant-hashCode-strip.ant-hashCode-primary {
28645
+ width: 398px;
28646
+ }
28647
+ .ant-hashCode-rect {
28648
+ display: flex;
28649
+ flex-direction: row-reverse;
28650
+ width: 196px;
28651
+ }
28652
+ .ant-hashCode-rect.ant-hashCode-primary {
28653
+ width: 244px;
28654
+ }
28655
+ .ant-hashCode-primary {
28656
+ padding: 24px;
28657
+ background-color: #177ddc;
28658
+ border-radius: 24px;
28659
+ }
28660
+ .ant-hashCode-primary .ant-hashCode-header-copy {
28661
+ opacity: 1;
28662
+ }
28663
+ .ant-hashCode-primary .ant-hashCode-header-title,
28664
+ .ant-hashCode-primary .ant-hashCode-header-copy,
28665
+ .ant-hashCode-primary .ant-hashCode-header-logo {
28666
+ color: rgba(255, 255, 255, 0.85);
28667
+ }
28668
+ .ant-hashCode-contant {
28669
+ width: 100%;
28670
+ height: 100%;
28671
+ }
28672
+ .ant-hashCode-code-value {
28673
+ display: flex;
28674
+ flex-wrap: wrap;
28675
+ gap: 0 10px;
28676
+ justify-content: space-between;
28677
+ height: 35px;
28678
+ overflow: hidden;
28679
+ }
28680
+ .ant-hashCode-code-value-block {
28681
+ height: 16px;
28682
+ font-size: 14px;
28683
+ font-family: Menlo;
28684
+ }
28685
+ .ant-hashCode-value-primary .ant-hashCode-code-value-block {
28686
+ color: #fff;
28687
+ }
28688
+ .ant-hashCode-texaure-double {
28689
+ width: 175px;
28690
+ height: 36px;
28691
+ }
28692
+ .ant-hashCode-texaure {
28693
+ position: absolute;
28694
+ margin-top: -35px;
28695
+ overflow: hidden;
28696
+ }
28697
+ .ant-hashCode-texaure-single {
28698
+ width: 210px;
28699
+ height: 28px;
28700
+ margin-top: -21px;
28701
+ }
28702
+ .ant-hashCode-texaure-strip {
28703
+ width: 350px;
28704
+ height: 36px;
28705
+ }
28706
+ .ant-hashCode-texaure-rect {
28707
+ width: 175px;
28708
+ height: 72px;
28709
+ margin-top: -71px;
28710
+ }
28590
28711
  sf + st {
28591
28712
  margin-top: 16px;
28592
28713
  }
@@ -28608,6 +28729,7 @@ nz-button-group + nz-popconfirm {
28608
28729
  .ant-transfer-operation .ant-btn + .ant-btn {
28609
28730
  margin-left: initial;
28610
28731
  }
28732
+ /* stylelint-disable-next-line order/order */
28611
28733
  [dir='rtl'] .ant-btn + .ant-btn,
28612
28734
  [dir='rtl'] .ant-btn + nz-popconfirm,
28613
28735
  [dir='rtl'] nz-popconfirm + .ant-btn,
@@ -28839,16 +28961,16 @@ a:focus {
28839
28961
  * ```
28840
28962
  */
28841
28963
  margin: 0;
28842
- color: rgba(255, 255, 255, 0.85);
28843
- font-weight: 500;
28844
28964
  font-size: 16px;
28965
+ font-weight: 500;
28845
28966
  line-height: 22px;
28967
+ color: rgba(255, 255, 255, 0.85);
28846
28968
  word-wrap: break-word;
28847
28969
  }
28848
28970
  .modal-title small {
28849
28971
  margin-left: 8px;
28850
- color: #8c8c8c;
28851
28972
  font-size: 12px;
28973
+ color: #8c8c8c;
28852
28974
  }
28853
28975
  .modal-spin {
28854
28976
  display: block;
@@ -28949,8 +29071,8 @@ a:focus {
28949
29071
  align-items: center;
28950
29072
  width: 100%;
28951
29073
  padding: 8px 8px;
28952
- white-space: inherit;
28953
29074
  text-align: left !important;
29075
+ white-space: inherit;
28954
29076
  border-bottom: none;
28955
29077
  }
28956
29078
  .ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
@@ -29070,6 +29192,7 @@ fieldset {
29070
29192
  */
29071
29193
  .half-float {
29072
29194
  position: relative;
29195
+ /* stylelint-disable-next-line order/order */
29073
29196
  }
29074
29197
  .half-float img {
29075
29198
  display: block;
@@ -29078,8 +29201,8 @@ fieldset {
29078
29201
  }
29079
29202
  .half-float .half-float-bottom {
29080
29203
  position: absolute;
29081
- left: 50%;
29082
29204
  z-index: 2;
29205
+ left: 50%;
29083
29206
  }
29084
29207
  .half-float.half-float-sm {
29085
29208
  margin-bottom: 42px;
@@ -29124,10 +29247,10 @@ fieldset {
29124
29247
  */
29125
29248
  .row-masonry {
29126
29249
  position: relative;
29250
+ column-gap: 16px;
29127
29251
  width: 100%;
29128
29252
  margin: 0;
29129
29253
  padding: 0;
29130
- column-gap: 16px;
29131
29254
  }
29132
29255
  .row-masonry > .col-masonry {
29133
29256
  display: inline-block;
@@ -29138,6 +29261,7 @@ fieldset {
29138
29261
  .row-masonry img {
29139
29262
  max-width: 100%;
29140
29263
  }
29264
+ /* stylelint-disable-next-line order/order */
29141
29265
  @media only screen and (min-width: 480px) {
29142
29266
  .row-masonry-xs-1 {
29143
29267
  column-count: 1;
@@ -29382,6 +29506,7 @@ fieldset {
29382
29506
  padding-bottom: 0;
29383
29507
  }
29384
29508
  .sf__array-container .ant-card .sf__array-remove {
29509
+ cursor: pointer;
29385
29510
  position: absolute;
29386
29511
  top: -16px;
29387
29512
  right: -16px;
@@ -29393,7 +29518,6 @@ fieldset {
29393
29518
  text-align: center;
29394
29519
  background: rgba(0, 0, 0, 0.66);
29395
29520
  border-radius: 50%;
29396
- cursor: pointer;
29397
29521
  }
29398
29522
  .sf__array-container .ant-card .sf__array-remove i {
29399
29523
  color: #fff;
@@ -29424,8 +29548,8 @@ fieldset {
29424
29548
  }
29425
29549
  }
29426
29550
  .sf .ant-upload-select-picture-card i {
29427
- color: #999;
29428
29551
  font-size: 32px;
29552
+ color: #999;
29429
29553
  }
29430
29554
  .sf .ant-upload.ant-upload-drag {
29431
29555
  height: 180px;
@@ -29540,30 +29664,32 @@ fieldset {
29540
29664
  }
29541
29665
  .setting-drawer__title {
29542
29666
  margin-bottom: 12px;
29543
- color: rgba(255, 255, 255, 0.85);
29544
29667
  font-size: 14px;
29545
29668
  line-height: 22px;
29669
+ color: rgba(255, 255, 255, 0.85);
29546
29670
  }
29547
29671
  .setting-drawer__theme {
29548
- margin-top: 24px;
29549
29672
  overflow: hidden;
29673
+ margin-top: 24px;
29550
29674
  }
29551
29675
  .setting-drawer__theme-tag {
29676
+ cursor: pointer;
29552
29677
  float: left;
29553
29678
  width: 20px;
29554
29679
  height: 20px;
29555
29680
  margin-right: 8px;
29556
- color: #fff;
29557
29681
  font-weight: bold;
29682
+ color: #fff;
29558
29683
  text-align: center;
29559
29684
  border-radius: 2px;
29560
- cursor: pointer;
29561
29685
  }
29562
29686
  .setting-drawer__handle {
29687
+ pointer-events: auto;
29688
+ cursor: pointer;
29563
29689
  position: fixed;
29690
+ z-index: 999;
29564
29691
  top: 240px;
29565
29692
  right: 0;
29566
- z-index: 999;
29567
29693
  display: flex;
29568
29694
  align-items: center;
29569
29695
  justify-content: center;
@@ -29573,17 +29699,15 @@ fieldset {
29573
29699
  text-align: center;
29574
29700
  background: #177ddc;
29575
29701
  border-radius: 4px 0 0 4px;
29576
- cursor: pointer;
29577
29702
  transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
29578
- pointer-events: auto;
29579
29703
  }
29580
29704
  .setting-drawer__handle-icon {
29581
- color: #fff;
29582
29705
  font-size: 20px;
29706
+ color: #fff;
29583
29707
  }
29584
29708
  .setting-drawer__handle-opened {
29585
- right: 500px;
29586
29709
  z-index: 1001;
29710
+ right: 500px;
29587
29711
  }
29588
29712
  .setting-drawer-rtl {
29589
29713
  direction: rtl;
@@ -29598,20 +29722,20 @@ fieldset {
29598
29722
  left: 500px;
29599
29723
  }
29600
29724
  .theme-btn {
29725
+ cursor: pointer;
29601
29726
  position: fixed;
29727
+ z-index: 2147483640;
29602
29728
  right: 32px;
29603
29729
  bottom: 102px;
29604
- z-index: 2147483640;
29605
29730
  display: flex;
29606
29731
  flex-direction: column;
29607
- cursor: pointer;
29608
29732
  }
29609
29733
  .theme-btn-active {
29610
29734
  width: 44px;
29611
29735
  height: 44px;
29612
- color: #177ddc;
29613
29736
  font-size: 22px;
29614
29737
  line-height: 44px;
29738
+ color: #177ddc;
29615
29739
  }
29616
29740
  .theme-btn .ant-avatar {
29617
29741
  color: #000;
@@ -31245,9 +31369,9 @@ code {
31245
31369
  *
31246
31370
  * 元素不能被用户缩放
31247
31371
  */
31372
+ resize: none;
31248
31373
  min-width: 100%;
31249
31374
  max-width: 100%;
31250
- resize: none;
31251
31375
  }
31252
31376
  .no-data {
31253
31377
  /**
@@ -31255,9 +31379,9 @@ code {
31255
31379
  *
31256
31380
  * 无数据元素
31257
31381
  */
31258
- color: rgba(0, 0, 0, 0.25);
31259
31382
  font-size: 16px;
31260
31383
  line-height: 64px;
31384
+ color: rgba(0, 0, 0, 0.25);
31261
31385
  text-align: center;
31262
31386
  }
31263
31387
  .no-data i {
@@ -31290,8 +31414,8 @@ code {
31290
31414
  */
31291
31415
  .page-loading {
31292
31416
  position: absolute;
31293
- inset: 0;
31294
31417
  z-index: 10000;
31418
+ inset: 0;
31295
31419
  padding-top: 200px;
31296
31420
  text-align: center;
31297
31421
  background: rgba(255, 255, 255, 0.08);
@@ -31306,8 +31430,8 @@ code {
31306
31430
  * 禁用样式,不可响应任何事件
31307
31431
  */
31308
31432
  .disabled {
31309
- color: rgba(255, 255, 255, 0.3);
31310
31433
  pointer-events: none;
31434
+ color: rgba(255, 255, 255, 0.3);
31311
31435
  }
31312
31436
  /**
31313
31437
  * Positioning method: nothing
@@ -31356,10 +31480,10 @@ code {
31356
31480
  */
31357
31481
  .fixed-top {
31358
31482
  position: fixed;
31483
+ z-index: 9;
31359
31484
  top: 0;
31360
31485
  right: 0;
31361
31486
  left: 0;
31362
- z-index: 9;
31363
31487
  }
31364
31488
  /**
31365
31489
  * Full screen fixed bottom
@@ -31368,10 +31492,10 @@ code {
31368
31492
  */
31369
31493
  .fixed-bottom {
31370
31494
  position: fixed;
31495
+ z-index: 9;
31371
31496
  right: 0;
31372
31497
  bottom: 0;
31373
31498
  left: 0;
31374
- z-index: 9;
31375
31499
  }
31376
31500
  /**
31377
31501
  * If overflow is clipped, a scroll-bar should be added to see the rest of the content
@@ -32359,6 +32483,7 @@ code {
32359
32483
  .scrollbar-y {
32360
32484
  overflow: hidden auto;
32361
32485
  }
32486
+ /* stylelint-disable-next-line order/order */
32362
32487
  body,
32363
32488
  .scrollbar,
32364
32489
  .ant-dialog-wrap,
@@ -32399,9 +32524,9 @@ textarea.ant-input::-webkit-scrollbar-thumb {
32399
32524
  outline: 1px solid #333;
32400
32525
  }
32401
32526
  html {
32402
- height: 100%;
32403
- direction: ltr;
32404
32527
  touch-action: manipulation;
32528
+ direction: ltr;
32529
+ height: 100%;
32405
32530
  }
32406
32531
  html,
32407
32532
  body,
@@ -32414,11 +32539,11 @@ body {
32414
32539
  }
32415
32540
  .alain-default {
32416
32541
  position: relative;
32542
+ overflow-x: hidden;
32417
32543
  display: block;
32418
32544
  width: 100%;
32419
32545
  height: auto;
32420
32546
  min-height: 100%;
32421
- overflow-x: hidden;
32422
32547
  }
32423
32548
  .alain-default__unwrap {
32424
32549
  margin-right: -24px;
@@ -32449,20 +32574,20 @@ body {
32449
32574
  }
32450
32575
  .alain-default__content-title > h1 {
32451
32576
  margin-bottom: 0;
32452
- font-weight: normal;
32453
32577
  font-size: 18px;
32578
+ font-weight: normal;
32454
32579
  }
32455
32580
  .alain-default__content-title > h1 > small {
32456
32581
  display: block;
32457
- color: #8c8c8c;
32458
32582
  font-size: 12px;
32583
+ color: #8c8c8c;
32459
32584
  }
32460
32585
  .alain-default__content nz-input-group {
32461
32586
  width: auto;
32462
32587
  }
32463
32588
  .alain-default__hide-aside .alain-default__content {
32464
- margin-left: 24px !important;
32465
32589
  transform: none !important;
32590
+ margin-left: 24px !important;
32466
32591
  }
32467
32592
  .alain-default__hide-header .alain-default__aside {
32468
32593
  margin-top: 0;
@@ -32546,6 +32671,7 @@ body {
32546
32671
  color: #fff;
32547
32672
  }
32548
32673
  .alain-default__nav-item {
32674
+ cursor: pointer;
32549
32675
  display: block;
32550
32676
  min-width: 50px;
32551
32677
  padding: 8px 2px;
@@ -32553,7 +32679,6 @@ body {
32553
32679
  text-align: center;
32554
32680
  border-radius: 2px;
32555
32681
  outline: none;
32556
- cursor: pointer;
32557
32682
  transition: background-color 300ms;
32558
32683
  }
32559
32684
  .alain-default__nav-item:hover {
@@ -32562,8 +32687,8 @@ body {
32562
32687
  }
32563
32688
  .alain-default__nav-item > i,
32564
32689
  .alain-default__nav-item-icon {
32565
- font-size: 18px !important;
32566
32690
  transform: none !important;
32691
+ font-size: 18px !important;
32567
32692
  }
32568
32693
  .alain-default__top-menu-item {
32569
32694
  display: flex;
@@ -32577,8 +32702,8 @@ body {
32577
32702
  background-color: rgba(255, 255, 255, 0.2);
32578
32703
  }
32579
32704
  .alain-default__top-menu-item-disabled {
32580
- opacity: 0.5;
32581
32705
  pointer-events: none;
32706
+ opacity: 0.5;
32582
32707
  }
32583
32708
  .alain-default__search {
32584
32709
  position: relative;
@@ -32628,15 +32753,15 @@ body {
32628
32753
  }
32629
32754
  .alain-default__search-focus .ant-input-group-addon i,
32630
32755
  .alain-default__search-focus .ant-input-affix-wrapper i {
32631
- color: #595959;
32632
32756
  transform: rotate(90deg);
32757
+ color: #595959;
32633
32758
  }
32634
32759
  @media (max-width: 767px) {
32635
32760
  .alain-default__search {
32636
32761
  position: absolute;
32762
+ z-index: 29;
32637
32763
  top: 0;
32638
32764
  left: 0;
32639
- z-index: 29;
32640
32765
  align-items: center;
32641
32766
  width: 100%;
32642
32767
  height: 100%;
@@ -32678,24 +32803,24 @@ body {
32678
32803
  }
32679
32804
  .alain-default__aside {
32680
32805
  position: absolute;
32806
+ z-index: 14;
32681
32807
  top: 0;
32682
32808
  bottom: 0;
32683
- z-index: 14;
32809
+ overflow: hidden;
32684
32810
  width: 200px;
32685
32811
  margin-top: 64px;
32686
- overflow: hidden;
32687
- background-color: #141414;
32688
32812
  backface-visibility: hidden;
32813
+ background-color: #141414;
32689
32814
  transition: width 0.2s cubic-bezier(0.25, 0, 0.15, 1), translate 0.2s cubic-bezier(0.25, 0, 0.15, 1);
32690
32815
  -webkit-overflow-scrolling: touch;
32691
32816
  }
32692
32817
  .alain-default__aside::after {
32818
+ content: '';
32693
32819
  position: absolute;
32694
32820
  top: 0;
32695
32821
  right: 0;
32696
32822
  bottom: 0;
32697
32823
  border-right: 1px solid #303030;
32698
- content: '';
32699
32824
  }
32700
32825
  .alain-default__aside-wrap {
32701
32826
  display: flex;
@@ -32703,12 +32828,12 @@ body {
32703
32828
  height: 100%;
32704
32829
  }
32705
32830
  .alain-default__aside-inner {
32706
- flex: 1 1 0%;
32831
+ scrollbar-width: none;
32832
+ scroll-snap-type: proximity;
32707
32833
  overflow: hidden scroll;
32834
+ flex: 1 1 0%;
32708
32835
  -webkit-overflow-scrolling: touch;
32709
- scroll-snap-type: proximity;
32710
32836
  scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
32711
- scrollbar-width: none;
32712
32837
  }
32713
32838
  .alain-default__aside-inner::-webkit-scrollbar {
32714
32839
  width: 0;
@@ -32724,10 +32849,10 @@ body {
32724
32849
  border-top: 1px solid #303030;
32725
32850
  }
32726
32851
  .alain-default__aside-link-collapsed {
32852
+ cursor: pointer;
32727
32853
  padding: 8px 0;
32728
32854
  font-size: 16px;
32729
32855
  text-align: center;
32730
- cursor: pointer;
32731
32856
  }
32732
32857
  @media (min-width: 768px) {
32733
32858
  .alain-default__collapsed .alain-default__aside {
@@ -32767,18 +32892,18 @@ body {
32767
32892
  .alain-default__progress-bar {
32768
32893
  position: fixed;
32769
32894
  z-index: 29;
32895
+ overflow: hidden;
32770
32896
  width: 100vw;
32771
32897
  height: 4px;
32772
- overflow: hidden;
32773
32898
  background: rgba(221, 221, 221, 0.4);
32774
32899
  }
32775
32900
  .alain-default__progress-bar::after {
32901
+ content: ' ';
32902
+ transform-origin: top left;
32776
32903
  display: block;
32777
32904
  width: 33.3vw;
32778
32905
  height: 100%;
32779
- transform-origin: top left;
32780
32906
  animation: gradcolours 5s steps(1) infinite, loadthird 1s infinite linear;
32781
- content: ' ';
32782
32907
  }
32783
32908
  @keyframes loadthird {
32784
32909
  0% {
@@ -32819,15 +32944,15 @@ body {
32819
32944
  transition: border-left-color 0.4s ease;
32820
32945
  }
32821
32946
  .sidebar-nav__item-link {
32947
+ user-select: none;
32822
32948
  position: relative;
32949
+ overflow: hidden;
32823
32950
  display: block;
32824
32951
  padding: 8px 32px 8px 16px;
32825
- overflow: hidden;
32826
32952
  color: rgba(255, 255, 255, 0.85);
32827
- white-space: nowrap;
32828
32953
  text-decoration: none !important;
32829
32954
  text-overflow: ellipsis;
32830
- user-select: none;
32955
+ white-space: nowrap;
32831
32956
  }
32832
32957
  .sidebar-nav__item-link:hover {
32833
32958
  color: #177ddc;
@@ -32879,8 +33004,8 @@ body {
32879
33004
  color: rgba(255, 255, 255, 0.45);
32880
33005
  }
32881
33006
  .sidebar-nav__sub {
32882
- display: none;
32883
33007
  overflow: hidden;
33008
+ display: none;
32884
33009
  }
32885
33010
  .sidebar-nav__sub .sidebar-nav__item {
32886
33011
  border-left: 0 !important;
@@ -32894,6 +33019,7 @@ body {
32894
33019
  }
32895
33020
  .sidebar-nav__sub-arrow::before,
32896
33021
  .sidebar-nav__sub-arrow::after {
33022
+ content: '';
32897
33023
  position: absolute;
32898
33024
  width: 6px;
32899
33025
  height: 1.5px;
@@ -32901,7 +33027,6 @@ body {
32901
33027
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
32902
33028
  border-radius: 2px;
32903
33029
  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);
32904
- content: '';
32905
33030
  }
32906
33031
  .sidebar-nav__sub-arrow::before {
32907
33032
  transform: rotate(-45deg) translateX(2px);
@@ -33053,10 +33178,10 @@ body {
33053
33178
  }
33054
33179
  .alain-default__fixed .reuse-tab {
33055
33180
  position: fixed;
33181
+ z-index: 10;
33056
33182
  top: 64px;
33057
33183
  right: 24px;
33058
33184
  left: 224px;
33059
- z-index: 10;
33060
33185
  }
33061
33186
  .alain-default__collapsed .reuse-tab {
33062
33187
  left: 88px;
@@ -33096,10 +33221,10 @@ body {
33096
33221
  padding: 16px;
33097
33222
  }
33098
33223
  .app-icons .ant-col-6 {
33224
+ cursor: pointer;
33099
33225
  padding: 16px 0;
33100
33226
  text-align: center;
33101
33227
  border-radius: 4px;
33102
- cursor: pointer;
33103
33228
  transition: background-color 300ms;
33104
33229
  }
33105
33230
  .app-icons .ant-col-6:hover {
@@ -33113,42 +33238,30 @@ body {
33113
33238
  .app-icons small {
33114
33239
  display: block;
33115
33240
  padding-top: 4px;
33116
- color: #9c9c9c;
33117
33241
  font-size: 14px;
33242
+ color: #9c9c9c;
33118
33243
  }
33119
33244
  .alain-default__aside-user {
33245
+ cursor: pointer;
33120
33246
  display: flex;
33121
33247
  align-items: center;
33122
33248
  justify-content: center;
33123
33249
  margin: 24px 24px 0 24px;
33124
- cursor: pointer;
33125
33250
  }
33126
33251
  .alain-default__aside-user .ant-dropdown-trigger {
33127
33252
  display: flex;
33128
33253
  align-items: center;
33129
33254
  }
33130
33255
  .alain-default__aside-user-info {
33131
- flex: 1;
33132
33256
  overflow: hidden;
33257
+ flex: 1;
33133
33258
  color: rgba(255, 255, 255, 0.85);
33134
- white-space: nowrap;
33135
33259
  text-overflow: ellipsis;
33260
+ white-space: nowrap;
33136
33261
  }
33137
33262
  .alain-default__aside-user-avatar {
33138
33263
  margin-right: 8px;
33139
33264
  }
33140
- @media (min-width: 768px) {
33141
- .alain-default__collapsed .alain-default__aside-user {
33142
- width: 64px;
33143
- margin-left: 0;
33144
- }
33145
- .alain-default__collapsed .alain-default__aside-user-info {
33146
- display: none;
33147
- }
33148
- .alain-default__collapsed .alain-default__aside-user-avatar {
33149
- margin: 0 auto;
33150
- }
33151
- }
33152
33265
  [dir='rtl'] .alain-default__aside-user-avatar {
33153
33266
  margin-right: 0;
33154
33267
  margin-left: 8px;
@@ -33161,6 +33274,18 @@ body {
33161
33274
  margin: 0 auto;
33162
33275
  }
33163
33276
  }
33277
+ @media (min-width: 768px) {
33278
+ .alain-default__collapsed .alain-default__aside-user {
33279
+ width: 64px;
33280
+ margin-left: 0;
33281
+ }
33282
+ .alain-default__collapsed .alain-default__aside-user-info {
33283
+ display: none;
33284
+ }
33285
+ .alain-default__collapsed .alain-default__aside-user-avatar {
33286
+ margin: 0 auto;
33287
+ }
33288
+ }
33164
33289
  .alain-default__fixed .alain-default__header {
33165
33290
  position: fixed;
33166
33291
  top: 0;
@@ -33189,13 +33314,13 @@ body {
33189
33314
  display: block;
33190
33315
  }
33191
33316
  .st__p-left .ant-table-pagination {
33192
- display: block;
33193
33317
  float: none;
33318
+ display: block;
33194
33319
  text-align: left;
33195
33320
  }
33196
33321
  .st__p-center .ant-table-pagination {
33197
- display: block;
33198
33322
  float: none;
33323
+ display: block;
33199
33324
  text-align: center;
33200
33325
  }
33201
33326
  .st__btn-sub .st__btn-text {
@@ -33203,8 +33328,8 @@ body {
33203
33328
  color: inherit;
33204
33329
  }
33205
33330
  .st__btn-disabled .st__btn-text {
33206
- color: rgba(179, 179, 179, 0.85);
33207
33331
  pointer-events: none;
33332
+ color: rgba(179, 179, 179, 0.85);
33208
33333
  }
33209
33334
  .st .nz-resizable-handle {
33210
33335
  display: flex;
@@ -33291,8 +33416,8 @@ body {
33291
33416
  @media screen and (min-width: 768px) {
33292
33417
  .st__width-strict .ant-table-content > table,
33293
33418
  .st__width-strict .ant-table-body > table {
33294
- word-wrap: break-word !important;
33295
33419
  table-layout: fixed !important;
33420
+ word-wrap: break-word !important;
33296
33421
  }
33297
33422
  }
33298
33423
  .sv {
@@ -33305,15 +33430,15 @@ body {
33305
33430
  display: block;
33306
33431
  }
33307
33432
  .sv__container .ant-row {
33308
- margin-bottom: -16px;
33309
33433
  overflow: hidden;
33434
+ margin-bottom: -16px;
33310
33435
  }
33311
33436
  .sv__item-fixed {
33312
33437
  display: flex;
33313
33438
  }
33314
33439
  .sv__item-fixed .sv__label {
33315
- flex: 0 0 auto;
33316
33440
  overflow: hidden;
33441
+ flex: 0 0 auto;
33317
33442
  text-align: right;
33318
33443
  text-overflow: ellipsis;
33319
33444
  }
@@ -33324,27 +33449,27 @@ body {
33324
33449
  margin: 0 0 16px 0;
33325
33450
  }
33326
33451
  .sv__title {
33327
- display: block;
33328
33452
  float: none;
33329
33453
  clear: both;
33454
+ display: block;
33330
33455
  width: 100%;
33331
33456
  margin-bottom: 16px;
33332
- color: rgba(255, 255, 255, 0.85);
33333
- font-weight: 500;
33334
33457
  font-size: 14px;
33458
+ font-weight: 500;
33459
+ color: rgba(255, 255, 255, 0.85);
33335
33460
  }
33336
33461
  .sv__label {
33337
33462
  display: table-cell;
33338
33463
  padding-bottom: 16px;
33339
- color: rgba(255, 255, 255, 0.5);
33340
33464
  line-height: 22px;
33465
+ color: rgba(255, 255, 255, 0.5);
33341
33466
  white-space: nowrap;
33342
33467
  }
33343
33468
  .sv__label:not(.sv__label-empty)::after {
33469
+ content: ':';
33344
33470
  position: relative;
33345
33471
  top: -0.5px;
33346
33472
  margin: 0 8px 0 2px;
33347
- content: ':';
33348
33473
  }
33349
33474
  .sv__label-optional {
33350
33475
  margin-left: 2px;
@@ -33360,10 +33485,10 @@ body {
33360
33485
  display: table-cell;
33361
33486
  width: 100%;
33362
33487
  padding-bottom: 16px;
33363
- color: rgba(255, 255, 255, 0.85);
33364
33488
  line-height: 22px;
33365
- vertical-align: top;
33489
+ color: rgba(255, 255, 255, 0.85);
33366
33490
  word-break: break-all;
33491
+ vertical-align: top;
33367
33492
  }
33368
33493
  .sv__type-primary .sv__detail {
33369
33494
  color: #177ddc;
@@ -33405,9 +33530,9 @@ body {
33405
33530
  }
33406
33531
  .sv__value-prefix,
33407
33532
  .sv__value-unit {
33408
- color: rgba(255, 255, 255, 0.5);
33409
33533
  font-size: 12px;
33410
33534
  font-style: normal;
33535
+ color: rgba(255, 255, 255, 0.5);
33411
33536
  }
33412
33537
  .sv__value-prefix {
33413
33538
  padding-right: 3px;
@@ -33424,11 +33549,11 @@ body {
33424
33549
  padding-left: 14px;
33425
33550
  }
33426
33551
  .sv__value:not(:first-child)::before {
33552
+ content: '/';
33427
33553
  position: absolute;
33428
33554
  left: 0;
33429
33555
  width: 6px;
33430
33556
  color: rgba(255, 255, 255, 0.5);
33431
- content: '/';
33432
33557
  }
33433
33558
  .sv__value-small .sv__value-text {
33434
33559
  font-size: 14px;
@@ -33484,14 +33609,14 @@ body {
33484
33609
  padding: 8px 16px;
33485
33610
  }
33486
33611
  .se__title {
33487
- display: block;
33488
33612
  float: none;
33489
33613
  clear: both;
33614
+ display: block;
33490
33615
  width: 100%;
33491
- color: rgba(255, 255, 255, 0.85);
33492
- font-weight: 700;
33493
33616
  font-size: 14px;
33617
+ font-weight: 700;
33494
33618
  line-height: 1.5715;
33619
+ color: rgba(255, 255, 255, 0.85);
33495
33620
  }
33496
33621
  .se__item {
33497
33622
  transition: none;
@@ -33501,8 +33626,8 @@ body {
33501
33626
  padding-bottom: 0;
33502
33627
  }
33503
33628
  .se__item-empty::before {
33504
- display: inline-block;
33505
33629
  content: '';
33630
+ display: inline-block;
33506
33631
  }
33507
33632
  .se__item + .ant-divider {
33508
33633
  margin: 0 0 24px 0;
@@ -33511,8 +33636,8 @@ body {
33511
33636
  display: table-cell;
33512
33637
  flex: 0 0 auto;
33513
33638
  width: initial;
33514
- white-space: nowrap;
33515
33639
  text-align: right;
33640
+ white-space: nowrap;
33516
33641
  }
33517
33642
  .se__label-optional {
33518
33643
  margin-left: 2px;
@@ -33627,8 +33752,8 @@ body {
33627
33752
  font-size: 14px;
33628
33753
  }
33629
33754
  .avatar-list__item .ant-avatar {
33630
- border: 1px solid #fff;
33631
33755
  cursor: pointer;
33756
+ border: 1px solid #fff;
33632
33757
  }
33633
33758
  .avatar-list__large {
33634
33759
  width: 40px;
@@ -33658,9 +33783,9 @@ ellipsis {
33658
33783
  display: inline;
33659
33784
  }
33660
33785
  .ellipsis {
33786
+ overflow: hidden;
33661
33787
  display: inline-block;
33662
33788
  width: 100%;
33663
- overflow: hidden;
33664
33789
  word-break: break-all;
33665
33790
  }
33666
33791
  .ellipsis__lines {
@@ -33668,9 +33793,9 @@ ellipsis {
33668
33793
  }
33669
33794
  .ellipsis__line-clamp {
33670
33795
  position: relative;
33796
+ overflow: hidden;
33671
33797
  /* stylelint-disable-next-line value-no-vendor-prefix */
33672
33798
  display: -webkit-box;
33673
- overflow: hidden;
33674
33799
  text-overflow: ellipsis;
33675
33800
  }
33676
33801
  .ellipsis__shadow {
@@ -33681,17 +33806,17 @@ ellipsis {
33681
33806
  opacity: 0;
33682
33807
  }
33683
33808
  .error-collect {
33809
+ cursor: pointer;
33684
33810
  padding-right: 24px;
33685
33811
  color: #f5222d;
33686
- cursor: pointer;
33687
33812
  }
33688
33813
  .error-collect__count {
33689
33814
  padding-left: 8px;
33690
33815
  }
33691
33816
  .error-collect-rtl {
33817
+ direction: rtl;
33692
33818
  padding-right: 0;
33693
33819
  padding-left: 24px;
33694
- direction: rtl;
33695
33820
  }
33696
33821
  .error-collect-rtl .error-collect__count {
33697
33822
  padding-right: 8px;
@@ -33703,15 +33828,15 @@ ellipsis {
33703
33828
  height: 100%;
33704
33829
  }
33705
33830
  .exception__img-block {
33831
+ zoom: 1;
33706
33832
  flex: 0 0 62.5%;
33707
33833
  width: 62.5%;
33708
33834
  padding-right: 152px;
33709
- zoom: 1;
33710
33835
  }
33711
33836
  .exception__img-block::before,
33712
33837
  .exception__img-block::after {
33713
- display: table;
33714
33838
  content: ' ';
33839
+ display: table;
33715
33840
  }
33716
33841
  .exception__img-block::after {
33717
33842
  clear: both;
@@ -33733,16 +33858,16 @@ ellipsis {
33733
33858
  }
33734
33859
  .exception__cont-title {
33735
33860
  margin-bottom: 24px;
33736
- color: #434e59;
33737
- font-weight: 600;
33738
33861
  font-size: 72px;
33862
+ font-weight: 600;
33739
33863
  line-height: 72px;
33864
+ color: #434e59;
33740
33865
  }
33741
33866
  .exception__cont-desc {
33742
33867
  margin-bottom: 16px;
33743
- color: rgba(255, 255, 255, 0.45);
33744
33868
  font-size: 20px;
33745
33869
  line-height: 28px;
33870
+ color: rgba(255, 255, 255, 0.45);
33746
33871
  }
33747
33872
  .exception__cont-actions .ant-btn:not(:last-child) {
33748
33873
  margin-right: 8px;
@@ -33764,8 +33889,8 @@ ellipsis {
33764
33889
  }
33765
33890
  @media screen and (max-width: 480px) {
33766
33891
  .exception__img-block {
33767
- margin-bottom: -24px;
33768
33892
  overflow: hidden;
33893
+ margin-bottom: -24px;
33769
33894
  }
33770
33895
  }
33771
33896
  .exception-rtl {
@@ -33776,9 +33901,9 @@ ellipsis {
33776
33901
  }
33777
33902
  .footer-toolbar {
33778
33903
  position: fixed;
33904
+ z-index: 9;
33779
33905
  right: 0;
33780
33906
  bottom: 0;
33781
- z-index: 9;
33782
33907
  display: flex;
33783
33908
  width: 100%;
33784
33909
  height: 56px;
@@ -33793,9 +33918,9 @@ ellipsis {
33793
33918
  flex: 1;
33794
33919
  }
33795
33920
  .full-content {
33921
+ overflow: auto;
33796
33922
  display: block;
33797
33923
  height: 100%;
33798
- overflow: auto;
33799
33924
  }
33800
33925
  .full-content__body {
33801
33926
  overflow: hidden;
@@ -33821,8 +33946,8 @@ ellipsis {
33821
33946
  color: rgba(255, 255, 255, 0.85);
33822
33947
  }
33823
33948
  .global-footer__copyright {
33824
- color: rgba(255, 255, 255, 0.45);
33825
33949
  font-size: 14px;
33950
+ color: rgba(255, 255, 255, 0.45);
33826
33951
  }
33827
33952
  .global-footer-rtl {
33828
33953
  direction: rtl;
@@ -33835,8 +33960,8 @@ ellipsis {
33835
33960
  width: 336px;
33836
33961
  }
33837
33962
  .notice-icon__btn {
33838
- display: inline-block;
33839
33963
  cursor: pointer;
33964
+ display: inline-block;
33840
33965
  transition: all 0.3s;
33841
33966
  }
33842
33967
  .notice-icon .ant-popover-inner-content {
@@ -33849,14 +33974,14 @@ ellipsis {
33849
33974
  margin-left: 32px;
33850
33975
  }
33851
33976
  .notice-icon .ant-list {
33852
- max-height: 400px;
33853
33977
  overflow: auto;
33978
+ max-height: 400px;
33854
33979
  }
33855
33980
  .notice-icon .ant-list-item {
33981
+ cursor: pointer;
33982
+ overflow: hidden;
33856
33983
  padding-right: 24px;
33857
33984
  padding-left: 24px;
33858
- overflow: hidden;
33859
- cursor: pointer;
33860
33985
  transition: all 0.3s;
33861
33986
  }
33862
33987
  .notice-icon .ant-list-item:last-child {
@@ -33887,13 +34012,13 @@ ellipsis {
33887
34012
  margin-bottom: 16px;
33888
34013
  }
33889
34014
  .notice-icon__clear {
34015
+ cursor: pointer;
33890
34016
  height: 46px;
33891
- color: rgba(255, 255, 255, 0.85);
33892
34017
  line-height: 46px;
34018
+ color: rgba(255, 255, 255, 0.85);
33893
34019
  text-align: center;
33894
34020
  border-top: 1px solid #303030;
33895
34021
  border-radius: 0 0 2px 2px;
33896
- cursor: pointer;
33897
34022
  transition: all 0.3s;
33898
34023
  }
33899
34024
  .notice-icon__clear:hover {
@@ -33918,8 +34043,8 @@ ellipsis {
33918
34043
  float: right;
33919
34044
  margin-top: -1.5px;
33920
34045
  margin-right: 0;
33921
- color: rgba(255, 255, 255, 0.45);
33922
34046
  font-weight: normal;
34047
+ color: rgba(255, 255, 255, 0.45);
33923
34048
  }
33924
34049
  .page-header {
33925
34050
  display: block;
@@ -33959,15 +34084,15 @@ ellipsis {
33959
34084
  border-radius: 2px;
33960
34085
  }
33961
34086
  .page-header__title {
33962
- color: rgba(255, 255, 255, 0.85);
33963
- font-weight: 500;
33964
34087
  font-size: 20px;
34088
+ font-weight: 500;
34089
+ color: rgba(255, 255, 255, 0.85);
33965
34090
  }
33966
34091
  .page-header__title small {
33967
34092
  padding-left: 8px;
33968
- color: rgba(255, 255, 255, 0.4);
33969
- font-weight: normal;
33970
34093
  font-size: 14px;
34094
+ font-weight: normal;
34095
+ color: rgba(255, 255, 255, 0.4);
33971
34096
  }
33972
34097
  .page-header__action {
33973
34098
  min-width: 266px;
@@ -34075,9 +34200,9 @@ ellipsis {
34075
34200
  }
34076
34201
  .quick-menu {
34077
34202
  position: fixed;
34203
+ z-index: 11;
34078
34204
  right: -1px;
34079
34205
  left: auto;
34080
- z-index: 11;
34081
34206
  display: block;
34082
34207
  backface-visibility: hidden;
34083
34208
  transition: margin 0.3s cubic-bezier(1, 0, 0, 1);
@@ -34093,6 +34218,7 @@ ellipsis {
34093
34218
  padding: 0 12px;
34094
34219
  }
34095
34220
  .quick-menu__ctrl {
34221
+ cursor: pointer;
34096
34222
  position: absolute;
34097
34223
  top: -1px;
34098
34224
  left: -50px;
@@ -34101,7 +34227,6 @@ ellipsis {
34101
34227
  text-align: center;
34102
34228
  border-right: 0;
34103
34229
  border-radius: 3px 0 0 3px;
34104
- cursor: pointer;
34105
34230
  }
34106
34231
  .quick-menu__ctrl-icon {
34107
34232
  font-size: 20px;
@@ -34113,11 +34238,6 @@ ellipsis {
34113
34238
  margin: 0 auto;
34114
34239
  text-align: center;
34115
34240
  }
34116
- @media screen and (max-width: 480px) {
34117
- .result {
34118
- width: 100%;
34119
- }
34120
- }
34121
34241
  .result__icon {
34122
34242
  margin-bottom: 24px;
34123
34243
  font-size: 72px;
@@ -34131,16 +34251,16 @@ ellipsis {
34131
34251
  }
34132
34252
  .result__title {
34133
34253
  margin-bottom: 16px;
34134
- color: rgba(255, 255, 255, 0.85);
34135
- font-weight: 500;
34136
34254
  font-size: 24px;
34255
+ font-weight: 500;
34137
34256
  line-height: 32px;
34257
+ color: rgba(255, 255, 255, 0.85);
34138
34258
  }
34139
34259
  .result__desc {
34140
34260
  margin-bottom: 24px;
34141
- color: rgba(255, 255, 255, 0.45);
34142
34261
  font-size: 14px;
34143
34262
  line-height: 22px;
34263
+ color: rgba(255, 255, 255, 0.45);
34144
34264
  }
34145
34265
  .result__extra {
34146
34266
  padding: 24px 40px;
@@ -34163,28 +34283,33 @@ ellipsis {
34163
34283
  .result .ant-steps .ant-steps-title {
34164
34284
  background: rgba(255, 255, 255, 0.04);
34165
34285
  }
34286
+ @media screen and (max-width: 480px) {
34287
+ .result {
34288
+ width: 100%;
34289
+ }
34290
+ }
34166
34291
  .result-rtl {
34167
34292
  direction: rtl;
34168
34293
  }
34169
34294
  .reuse-tab {
34295
+ user-select: none;
34170
34296
  display: block;
34171
34297
  background-color: #141414;
34172
34298
  outline: none;
34173
- user-select: none;
34174
34299
  }
34175
34300
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__op {
34176
34301
  position: absolute;
34177
34302
  display: none;
34178
34303
  margin: 0;
34179
- color: rgba(255, 255, 255, 0.85);
34180
34304
  font-size: 10px;
34305
+ color: rgba(255, 255, 255, 0.85);
34181
34306
  }
34182
34307
  .reuse-tab .ant-tabs-nav .ant-tabs-tab:hover .reuse-tab__op {
34183
34308
  display: block;
34184
34309
  }
34185
34310
  .reuse-tab .ant-tabs-nav .ant-tabs-tab .reuse-tab__name-width {
34186
- display: inline-block;
34187
34311
  overflow: hidden;
34312
+ display: inline-block;
34188
34313
  text-overflow: ellipsis;
34189
34314
  }
34190
34315
  .reuse-tab .ant-tabs > .ant-tabs-nav {
@@ -34219,8 +34344,8 @@ ellipsis {
34219
34344
  right: 4px;
34220
34345
  }
34221
34346
  .reuse-tab__disabled {
34222
- opacity: 0.8;
34223
34347
  pointer-events: none;
34348
+ opacity: 0.8;
34224
34349
  }
34225
34350
  .reuse-tab__cm .ant-menu {
34226
34351
  border: 1px solid #e9e9e9;
@@ -34229,15 +34354,15 @@ ellipsis {
34229
34354
  direction: rtl;
34230
34355
  }
34231
34356
  .tag-select {
34357
+ user-select: none;
34232
34358
  position: relative;
34359
+ overflow: hidden;
34233
34360
  display: block;
34234
34361
  max-height: 38px;
34235
34362
  margin-top: -16px;
34236
34363
  margin-left: -8px;
34237
- overflow: hidden;
34238
34364
  line-height: 1.5715;
34239
34365
  transition: all 0.3s;
34240
- user-select: none;
34241
34366
  }
34242
34367
  .tag-select__expanded {
34243
34368
  max-height: 200px;
@@ -34265,9 +34390,9 @@ ellipsis {
34265
34390
  transition: transform 0.24s;
34266
34391
  }
34267
34392
  .tag-select-rtl {
34393
+ direction: rtl;
34268
34394
  margin-right: -8px;
34269
34395
  margin-left: 0;
34270
- direction: rtl;
34271
34396
  }
34272
34397
  .tag-select-rtl__has-expand {
34273
34398
  padding-right: 0 !important;
@@ -34286,17 +34411,18 @@ ellipsis {
34286
34411
  margin-left: 8px;
34287
34412
  }
34288
34413
  .down-file__not-support {
34414
+ /* stylelint-disable-next-line order/order */
34289
34415
  display: none;
34290
34416
  }
34291
34417
  .loading-backdrop {
34292
34418
  z-index: 9999;
34293
- background-color: rgba(0, 0, 0, 0.15);
34294
34419
  opacity: 1;
34420
+ background-color: rgba(0, 0, 0, 0.15);
34295
34421
  }
34296
34422
  .loading-default {
34297
34423
  position: fixed;
34298
- inset: 0;
34299
34424
  z-index: 10000;
34425
+ inset: 0;
34300
34426
  display: flex;
34301
34427
  flex-direction: column;
34302
34428
  align-items: center;
@@ -34304,8 +34430,8 @@ ellipsis {
34304
34430
  }
34305
34431
  .loading-default__icon {
34306
34432
  margin-bottom: 8px;
34307
- color: #177ddc;
34308
34433
  font-size: 24px;
34434
+ color: #177ddc;
34309
34435
  }
34310
34436
  .loading-default__text {
34311
34437
  color: #177ddc;
@@ -34323,20 +34449,20 @@ ellipsis {
34323
34449
  }
34324
34450
  .onboarding__mask {
34325
34451
  position: fixed;
34326
- inset: 0;
34327
34452
  z-index: 99998;
34328
- background-color: #000;
34453
+ inset: 0;
34329
34454
  opacity: 0.5;
34455
+ background-color: #000;
34330
34456
  }
34331
34457
  .onboarding__item {
34332
34458
  position: absolute;
34333
34459
  }
34334
34460
  .onboarding__light {
34461
+ pointer-events: none;
34335
34462
  position: absolute;
34336
34463
  z-index: 99999;
34337
34464
  background-color: rgba(0, 0, 0, 0.1);
34338
34465
  animation: 2500ms cubic-bezier(0.55, 0.05, 0.6, 0.2) 0s infinite normal none running onboardingAnt;
34339
- pointer-events: none;
34340
34466
  }
34341
34467
  .onboarding__light-el {
34342
34468
  z-index: 100000 !important;
@@ -34365,9 +34491,9 @@ ellipsis {
34365
34491
  }
34366
34492
  .pdf-container {
34367
34493
  position: absolute;
34494
+ overflow-x: auto;
34368
34495
  width: 100%;
34369
34496
  height: 100%;
34370
- overflow-x: auto;
34371
34497
  -webkit-overflow-scrolling: touch;
34372
34498
  }
34373
34499
  .cell__has-unit {
@@ -34403,8 +34529,8 @@ ellipsis {
34403
34529
  }
34404
34530
  .cell .unit {
34405
34531
  margin-left: 2px;
34406
- color: rgba(255, 255, 255, 0.45);
34407
34532
  font-size: 12px;
34533
+ color: rgba(255, 255, 255, 0.45);
34408
34534
  }
34409
34535
  .cell__disabled[data-type="link"] {
34410
34536
  pointer-events: none;
@@ -34433,8 +34559,8 @@ g2-tag-cloud {
34433
34559
  }
34434
34560
  .g2-card__top {
34435
34561
  position: relative;
34436
- width: 100%;
34437
34562
  overflow: hidden;
34563
+ width: 100%;
34438
34564
  }
34439
34565
  .g2-card__top-margin {
34440
34566
  margin-bottom: 12px;
@@ -34444,19 +34570,19 @@ g2-tag-cloud {
34444
34570
  }
34445
34571
  .g2-card__meta {
34446
34572
  height: 22px;
34447
- color: rgba(255, 255, 255, 0.45);
34448
34573
  font-size: 14px;
34449
34574
  line-height: 22px;
34575
+ color: rgba(255, 255, 255, 0.45);
34450
34576
  }
34451
34577
  .g2-card__meta-wrap {
34452
34578
  float: left;
34453
34579
  }
34454
34580
  .g2-card__meta-action {
34581
+ cursor: pointer;
34455
34582
  position: absolute;
34456
34583
  top: 4px;
34457
34584
  right: 0;
34458
34585
  line-height: 1;
34459
- cursor: pointer;
34460
34586
  }
34461
34587
  .g2-card__avatar {
34462
34588
  position: relative;
@@ -34468,16 +34594,16 @@ g2-tag-cloud {
34468
34594
  border-radius: 100%;
34469
34595
  }
34470
34596
  .g2-card__total {
34597
+ overflow: hidden;
34471
34598
  height: 38px;
34472
34599
  margin-top: 4px;
34473
34600
  margin-bottom: 0;
34474
- overflow: hidden;
34475
- color: rgba(255, 255, 255, 0.85);
34476
34601
  font-size: 30px;
34477
34602
  line-height: 38px;
34478
- white-space: nowrap;
34603
+ color: rgba(255, 255, 255, 0.85);
34479
34604
  text-overflow: ellipsis;
34480
34605
  word-break: break-all;
34606
+ white-space: nowrap;
34481
34607
  }
34482
34608
  .g2-card__desc {
34483
34609
  width: 100%;
@@ -34536,17 +34662,17 @@ g2-tag-cloud {
34536
34662
  position: absolute;
34537
34663
  top: 50%;
34538
34664
  right: 0;
34665
+ transform: translateY(-50%);
34539
34666
  min-width: 250px;
34540
34667
  margin: 0 20px;
34541
34668
  padding: 0;
34542
34669
  list-style: none;
34543
- transform: translateY(-50%);
34544
34670
  }
34545
34671
  .g2-pie__legend-item {
34672
+ cursor: pointer;
34546
34673
  height: 22px;
34547
34674
  margin-bottom: 16px;
34548
34675
  line-height: 22px;
34549
- cursor: pointer;
34550
34676
  }
34551
34677
  .g2-pie__legend-item:last-child {
34552
34678
  margin-bottom: 0;
@@ -34579,31 +34705,31 @@ g2-tag-cloud {
34579
34705
  }
34580
34706
  .g2-pie__legend-block .g2-pie__legend {
34581
34707
  position: relative;
34582
- min-width: auto;
34583
34708
  transform: none;
34709
+ min-width: auto;
34584
34710
  }
34585
34711
  .g2-pie__total {
34586
34712
  position: absolute;
34587
34713
  top: 50%;
34588
34714
  left: 50%;
34715
+ transform: translate(-50%, -50%);
34589
34716
  height: 62px;
34590
34717
  text-align: center;
34591
- transform: translate(-50%, -50%);
34592
34718
  }
34593
34719
  .g2-pie__total-title {
34594
34720
  height: 22px;
34595
34721
  margin-bottom: 8px;
34596
- color: rgba(255, 255, 255, 0.45);
34597
- font-weight: normal;
34598
34722
  font-size: 14px;
34723
+ font-weight: normal;
34599
34724
  line-height: 22px;
34725
+ color: rgba(255, 255, 255, 0.45);
34600
34726
  }
34601
34727
  .g2-pie__total-stat {
34602
34728
  display: block;
34603
34729
  height: 32px;
34604
- color: rgba(255, 255, 255, 0.85);
34605
34730
  font-size: 1.2em;
34606
34731
  line-height: 32px;
34732
+ color: rgba(255, 255, 255, 0.85);
34607
34733
  white-space: nowrap;
34608
34734
  }
34609
34735
  .g2-pie__mini .g2-pie__total-title {
@@ -34617,20 +34743,20 @@ g2-tag-cloud {
34617
34743
  margin-top: 16px;
34618
34744
  }
34619
34745
  .g2-radar__legend-item {
34746
+ cursor: pointer;
34620
34747
  position: relative;
34621
- color: rgba(255, 255, 255, 0.45);
34622
34748
  line-height: 22px;
34749
+ color: rgba(255, 255, 255, 0.45);
34623
34750
  text-align: center;
34624
- cursor: pointer;
34625
34751
  }
34626
34752
  .g2-radar__legend-item::after {
34753
+ content: '';
34627
34754
  position: absolute;
34628
34755
  top: 8px;
34629
34756
  right: 0;
34630
34757
  width: 1px;
34631
34758
  height: 40px;
34632
34759
  background-color: #303030;
34633
- content: '';
34634
34760
  }
34635
34761
  .g2-radar__legend-item:last-child::after {
34636
34762
  display: none;
@@ -34639,9 +34765,9 @@ g2-tag-cloud {
34639
34765
  margin-top: 4px;
34640
34766
  margin-bottom: 0;
34641
34767
  padding-left: 16px;
34642
- color: rgba(255, 255, 255, 0.85);
34643
34768
  font-size: 24px;
34644
34769
  line-height: 32px;
34770
+ color: rgba(255, 255, 255, 0.85);
34645
34771
  }
34646
34772
  .g2-radar__legend-dot {
34647
34773
  position: relative;
@@ -34654,8 +34780,8 @@ g2-tag-cloud {
34654
34780
  }
34655
34781
  .g2-water-wave {
34656
34782
  position: relative;
34657
- display: inline-block;
34658
34783
  transform-origin: left;
34784
+ display: inline-block;
34659
34785
  }
34660
34786
  .g2-water-wave__desc {
34661
34787
  position: absolute;
@@ -34665,69 +34791,69 @@ g2-tag-cloud {
34665
34791
  text-align: center;
34666
34792
  }
34667
34793
  .g2-water-wave__desc-title {
34668
- color: rgba(255, 255, 255, 0.45);
34669
34794
  font-size: 14px;
34670
34795
  line-height: 22px;
34796
+ color: rgba(255, 255, 255, 0.45);
34671
34797
  }
34672
34798
  .g2-water-wave__desc-percent {
34673
- color: rgba(255, 255, 255, 0.85);
34674
34799
  font-size: 24px;
34675
34800
  line-height: 32px;
34801
+ color: rgba(255, 255, 255, 0.85);
34676
34802
  }
34677
34803
  .g2-water-wave__canvas {
34678
- transform: scale(0.5);
34679
34804
  transform-origin: 0 0;
34805
+ transform: scale(0.5);
34680
34806
  }
34681
34807
  .number-info {
34682
34808
  display: inline-block;
34683
34809
  }
34684
34810
  .number-info__title {
34685
34811
  margin-bottom: 16px;
34686
- color: rgba(255, 255, 255, 0.85);
34687
34812
  font-size: 16px;
34813
+ color: rgba(255, 255, 255, 0.85);
34688
34814
  transition: all 0.3s;
34689
34815
  }
34690
34816
  .number-info__title-sub {
34691
- height: 22px;
34692
34817
  overflow: hidden;
34693
- color: rgba(255, 255, 255, 0.45);
34818
+ height: 22px;
34694
34819
  font-size: 14px;
34695
34820
  line-height: 22px;
34696
- white-space: nowrap;
34821
+ color: rgba(255, 255, 255, 0.45);
34697
34822
  text-overflow: ellipsis;
34698
34823
  word-break: break-all;
34824
+ white-space: nowrap;
34699
34825
  }
34700
34826
  .number-info__value {
34701
- margin-top: 4px;
34702
34827
  overflow: hidden;
34828
+ margin-top: 4px;
34703
34829
  font-size: 0;
34704
- white-space: nowrap;
34705
34830
  text-overflow: ellipsis;
34706
34831
  word-break: break-all;
34832
+ white-space: nowrap;
34707
34833
  }
34708
34834
  .number-info__value-suffix {
34709
34835
  margin-left: 4px;
34710
- color: rgba(255, 255, 255, 0.85);
34711
34836
  font-size: 16px;
34712
34837
  font-style: normal;
34838
+ color: rgba(255, 255, 255, 0.85);
34713
34839
  }
34714
34840
  .number-info__value-text {
34715
34841
  display: inline-block;
34716
34842
  height: 32px;
34717
- color: rgba(255, 255, 255, 0.85);
34718
34843
  font-size: 24px;
34719
34844
  line-height: 32px;
34845
+ color: rgba(255, 255, 255, 0.85);
34720
34846
  }
34721
34847
  .number-info__value-sub {
34722
34848
  margin-left: 32px;
34723
- color: rgba(255, 255, 255, 0.45);
34724
34849
  font-size: 16px;
34850
+ color: rgba(255, 255, 255, 0.45);
34725
34851
  vertical-align: top;
34726
34852
  }
34727
34853
  .number-info__value-sub .anticon {
34854
+ transform: scale(0.82);
34728
34855
  margin-left: 4px;
34729
34856
  font-size: 12px;
34730
- transform: scale(0.82);
34731
34857
  }
34732
34858
  .number-info__value-sub .anticon-caret-up {
34733
34859
  color: #d32029;
@@ -34744,6 +34870,7 @@ g2-tag-cloud {
34744
34870
  padding-left: 32px;
34745
34871
  }
34746
34872
  .number-info:not(:first-child)::after {
34873
+ content: '';
34747
34874
  position: absolute;
34748
34875
  top: 0;
34749
34876
  bottom: 0;
@@ -34751,7 +34878,6 @@ g2-tag-cloud {
34751
34878
  width: 1px;
34752
34879
  margin: 8px 0;
34753
34880
  background-color: #303030;
34754
- content: '';
34755
34881
  }
34756
34882
  .trend {
34757
34883
  display: inline-block;
@@ -34766,8 +34892,8 @@ g2-tag-cloud {
34766
34892
  }
34767
34893
  .trend__up i,
34768
34894
  .trend__down i {
34769
- font-size: 12px;
34770
34895
  transform: scale(0.83);
34896
+ font-size: 12px;
34771
34897
  }
34772
34898
  .trend__up {
34773
34899
  color: #d32029;