@delon/theme 19.0.1 → 19.2.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.
package/dark.css CHANGED
@@ -23396,6 +23396,229 @@ span.ant-radio + * {
23396
23396
  nz-spin {
23397
23397
  display: block;
23398
23398
  }
23399
+ .ant-splitter {
23400
+ font-variant: tabular-nums;
23401
+ font-feature-settings: 'tnum';
23402
+ display: flex;
23403
+ align-items: stretch;
23404
+ box-sizing: border-box;
23405
+ width: 100%;
23406
+ height: 100%;
23407
+ margin: 0;
23408
+ padding: 0;
23409
+ color: rgba(255, 255, 255, 0.85);
23410
+ font-size: 14px;
23411
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
23412
+ line-height: 1.5715;
23413
+ list-style: none;
23414
+ }
23415
+ .ant-splitter-horizontal {
23416
+ flex-direction: row;
23417
+ }
23418
+ .ant-splitter-vertical {
23419
+ flex-direction: column;
23420
+ }
23421
+ .ant-splitter-panel {
23422
+ box-sizing: border-box;
23423
+ padding: 0 1px;
23424
+ overflow: auto;
23425
+ scrollbar-width: thin;
23426
+ }
23427
+ .ant-splitter-panel-hidden {
23428
+ padding: 0;
23429
+ overflow: hidden;
23430
+ }
23431
+ .ant-splitter-panel:has(.ant-splitter:only-child) {
23432
+ overflow: hidden;
23433
+ }
23434
+ .ant-splitter-bar {
23435
+ position: relative;
23436
+ flex: none;
23437
+ user-select: none;
23438
+ }
23439
+ .ant-splitter-bar-preview {
23440
+ position: absolute;
23441
+ z-index: 1;
23442
+ display: none;
23443
+ background: #177ddc;
23444
+ opacity: 0.2;
23445
+ transition: none;
23446
+ pointer-events: none;
23447
+ }
23448
+ .ant-splitter-bar-preview-active {
23449
+ display: block;
23450
+ }
23451
+ .ant-splitter-bar-dragger {
23452
+ position: absolute;
23453
+ top: 50%;
23454
+ left: 50%;
23455
+ z-index: 1;
23456
+ transform: translate(-50%, -50%);
23457
+ }
23458
+ .ant-splitter-bar-dragger::before {
23459
+ position: absolute;
23460
+ top: 50%;
23461
+ left: 50%;
23462
+ background: rgba(255, 255, 255, 0.08);
23463
+ transform: translate(-50%, -50%);
23464
+ content: '';
23465
+ }
23466
+ .ant-splitter-bar-dragger:hover:not(.ant-splitter-bar-dragger-active)::before {
23467
+ background: #111a2c;
23468
+ }
23469
+ .ant-splitter-bar-dragger::after {
23470
+ position: absolute;
23471
+ top: 50%;
23472
+ left: 50%;
23473
+ background: rgba(255, 255, 255, 0.15);
23474
+ transform: translate(-50%, -50%);
23475
+ content: '';
23476
+ }
23477
+ .ant-splitter-bar-dragger-active {
23478
+ z-index: 2;
23479
+ }
23480
+ .ant-splitter-bar-dragger-active::before {
23481
+ background: #112545;
23482
+ }
23483
+ .ant-splitter-bar:hover .ant-splitter-bar-collapse-bar,
23484
+ .ant-splitter-bar:active .ant-splitter-bar-collapse-bar {
23485
+ opacity: 1;
23486
+ }
23487
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled {
23488
+ z-index: 0;
23489
+ }
23490
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled,
23491
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover,
23492
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active {
23493
+ cursor: default;
23494
+ }
23495
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::before,
23496
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover::before,
23497
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active::before {
23498
+ background: rgba(255, 255, 255, 0.08);
23499
+ }
23500
+ .ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::after {
23501
+ display: none;
23502
+ }
23503
+ .ant-splitter-bar-collapse-bar {
23504
+ position: absolute;
23505
+ top: 50%;
23506
+ left: 50%;
23507
+ z-index: 1000;
23508
+ display: flex;
23509
+ align-items: center;
23510
+ justify-content: center;
23511
+ color: rgba(255, 255, 255, 0.85);
23512
+ font-size: 12px;
23513
+ background: rgba(255, 255, 255, 0.08);
23514
+ border-radius: 2px;
23515
+ transform: translate(-50%, -50%);
23516
+ cursor: pointer;
23517
+ opacity: 0;
23518
+ }
23519
+ .ant-splitter-bar-collapse-bar:hover {
23520
+ background: #111a2c;
23521
+ }
23522
+ .ant-splitter-bar-collapse-bar:active {
23523
+ background: #112545;
23524
+ }
23525
+ .ant-splitter-horizontal > .ant-splitter-bar {
23526
+ width: 0;
23527
+ }
23528
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger {
23529
+ width: 6px;
23530
+ height: 100%;
23531
+ cursor: col-resize;
23532
+ }
23533
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::before {
23534
+ width: 2px;
23535
+ height: 100%;
23536
+ }
23537
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::after {
23538
+ width: 2px;
23539
+ height: 20px;
23540
+ }
23541
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-preview {
23542
+ width: 2px;
23543
+ height: 100%;
23544
+ }
23545
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
23546
+ width: 12px;
23547
+ height: 24px;
23548
+ }
23549
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
23550
+ right: calc(6px / 2);
23551
+ left: auto;
23552
+ transform: translateY(-50%);
23553
+ }
23554
+ .ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
23555
+ right: auto;
23556
+ left: calc(6px / 2);
23557
+ transform: translateY(-50%);
23558
+ }
23559
+ .ant-splitter-vertical > .ant-splitter-bar {
23560
+ height: 0;
23561
+ }
23562
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger {
23563
+ width: 100%;
23564
+ height: 6px;
23565
+ cursor: row-resize;
23566
+ }
23567
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger:has(.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger-disabled) {
23568
+ cursor: default;
23569
+ }
23570
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::before {
23571
+ width: 100%;
23572
+ height: 2px;
23573
+ }
23574
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::after {
23575
+ width: 20px;
23576
+ height: 2px;
23577
+ }
23578
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-preview {
23579
+ width: 100%;
23580
+ height: 2px;
23581
+ }
23582
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
23583
+ width: 24px;
23584
+ height: 12px;
23585
+ }
23586
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
23587
+ top: auto;
23588
+ bottom: calc(6px / 2);
23589
+ transform: translateX(-50%);
23590
+ }
23591
+ .ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
23592
+ top: calc(6px / 2);
23593
+ bottom: auto;
23594
+ transform: translateX(-50%);
23595
+ }
23596
+ .ant-splitter-mask {
23597
+ position: fixed;
23598
+ z-index: 1000;
23599
+ inset: 0;
23600
+ }
23601
+ .ant-splitter-mask-horizontal {
23602
+ cursor: col-resize;
23603
+ }
23604
+ .ant-splitter-mask-vertical {
23605
+ cursor: row-resize;
23606
+ }
23607
+ .ant-splitter-rtl {
23608
+ direction: rtl;
23609
+ }
23610
+ .ant-splitter-rtl .ant-splitter-dot-spin {
23611
+ transform: rotate(-45deg);
23612
+ animation-name: antRotateRtl;
23613
+ }
23614
+ @keyframes antRotateRtl {
23615
+ to {
23616
+ transform: rotate(-405deg);
23617
+ }
23618
+ }
23619
+ nz-splitter {
23620
+ display: block;
23621
+ }
23399
23622
  .ant-statistic {
23400
23623
  box-sizing: border-box;
23401
23624
  margin: 0;
@@ -29611,6 +29834,9 @@ nz-tree {
29611
29834
  margin-bottom: 4px;
29612
29835
  overflow: auto;
29613
29836
  }
29837
+ .ant-select-dropdown.ant-select-tree-dropdown .cdk-virtual-scroll-content-wrapper {
29838
+ overflow: auto;
29839
+ }
29614
29840
  .ant-picker-calendar {
29615
29841
  box-sizing: border-box;
29616
29842
  margin: 0;
@@ -30528,7 +30754,7 @@ nz-space-item {
30528
30754
  width: 16px;
30529
30755
  height: 16px;
30530
30756
  }
30531
- .ant-hashCode {
30757
+ .ant-hash-code {
30532
30758
  display: flex;
30533
30759
  flex-direction: column;
30534
30760
  align-items: center;
@@ -30542,78 +30768,78 @@ nz-space-item {
30542
30768
  list-style: none;
30543
30769
  cursor: pointer;
30544
30770
  }
30545
- .ant-hashCode-header-copy {
30771
+ .ant-hash-code-header-copy {
30546
30772
  margin-left: 8px;
30547
30773
  cursor: pointer;
30548
30774
  opacity: 0.45;
30549
30775
  }
30550
- .ant-hashCode-header {
30776
+ .ant-hash-code-header {
30551
30777
  display: flex;
30552
30778
  justify-content: left;
30553
30779
  width: 100%;
30554
30780
  height: 22px;
30555
30781
  padding-bottom: 8px;
30556
30782
  }
30557
- .ant-hashCode-header .ant-hashCode-header-title {
30783
+ .ant-hash-code-header .ant-hash-code-header-title {
30558
30784
  font-size: 14px;
30559
30785
  line-height: 1.5715;
30560
30786
  text-align: center;
30561
30787
  opacity: 0.45;
30562
30788
  }
30563
- .ant-hashCode-header .ant-hashCode-header-logo {
30789
+ .ant-hash-code-header .ant-hash-code-header-logo {
30564
30790
  display: flex;
30565
30791
  flex: 1;
30566
30792
  justify-content: right;
30567
30793
  }
30568
- .ant-hashCode-double {
30794
+ .ant-hash-code-double {
30569
30795
  width: 172px;
30570
30796
  }
30571
- .ant-hashCode-double.ant-hashCode-primary {
30797
+ .ant-hash-code-double.ant-hash-code-primary {
30572
30798
  width: 220px;
30573
30799
  }
30574
- .ant-hashCode-single {
30800
+ .ant-hash-code-single {
30575
30801
  display: flex;
30576
30802
  flex-direction: row-reverse;
30577
30803
  width: 236px;
30578
30804
  }
30579
- .ant-hashCode-single.ant-hashCode-primary {
30805
+ .ant-hash-code-single.ant-hash-code-primary {
30580
30806
  width: 284px;
30581
30807
  }
30582
- .ant-hashCode-single .ant-hashCode-header-copy {
30808
+ .ant-hash-code-single .ant-hash-code-header-copy {
30583
30809
  margin-top: 8px;
30584
30810
  }
30585
- .ant-hashCode-strip {
30811
+ .ant-hash-code-strip {
30586
30812
  width: 350px;
30587
30813
  }
30588
- .ant-hashCode-strip.ant-hashCode-primary {
30814
+ .ant-hash-code-strip.ant-hash-code-primary {
30589
30815
  width: 398px;
30590
30816
  }
30591
- .ant-hashCode-rect {
30817
+ .ant-hash-code-rect {
30592
30818
  display: flex;
30593
30819
  flex-direction: row-reverse;
30594
30820
  width: 196px;
30595
30821
  }
30596
- .ant-hashCode-rect.ant-hashCode-primary {
30822
+ .ant-hash-code-rect.ant-hash-code-primary {
30597
30823
  width: 244px;
30598
30824
  }
30599
- .ant-hashCode-primary {
30825
+ .ant-hash-code-primary {
30600
30826
  padding: 24px;
30601
30827
  background-color: #177ddc;
30602
30828
  border-radius: 24px;
30603
30829
  }
30604
- .ant-hashCode-primary .ant-hashCode-header-copy {
30830
+ .ant-hash-code-primary .ant-hash-code-header-copy {
30605
30831
  opacity: 1;
30606
30832
  }
30607
- .ant-hashCode-primary .ant-hashCode-header-title,
30608
- .ant-hashCode-primary .ant-hashCode-header-copy,
30609
- .ant-hashCode-primary .ant-hashCode-header-logo {
30833
+ .ant-hash-code-primary .ant-hash-code-header-title,
30834
+ .ant-hash-code-primary .ant-hash-code-header-copy,
30835
+ .ant-hash-code-primary .ant-hash-code-header-logo {
30610
30836
  color: rgba(255, 255, 255, 0.85);
30611
30837
  }
30612
- .ant-hashCode-contant {
30838
+ .ant-hash-code-contant {
30613
30839
  width: 100%;
30614
30840
  height: 100%;
30615
30841
  }
30616
- .ant-hashCode-code-value {
30842
+ .ant-hash-code-code-value {
30617
30843
  display: flex;
30618
30844
  flex-wrap: wrap;
30619
30845
  gap: 0 10px;
@@ -30621,33 +30847,33 @@ nz-space-item {
30621
30847
  height: 35px;
30622
30848
  overflow: hidden;
30623
30849
  }
30624
- .ant-hashCode-code-value-block {
30850
+ .ant-hash-code-code-value-block {
30625
30851
  height: 16px;
30626
30852
  font-size: 14px;
30627
30853
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
30628
30854
  }
30629
- .ant-hashCode-value-primary .ant-hashCode-code-value-block {
30855
+ .ant-hash-code-value-primary .ant-hash-code-code-value-block {
30630
30856
  color: #fff;
30631
30857
  }
30632
- .ant-hashCode-texaure-double {
30858
+ .ant-hash-code-texaure-double {
30633
30859
  width: 175px;
30634
30860
  height: 36px;
30635
30861
  }
30636
- .ant-hashCode-texaure {
30862
+ .ant-hash-code-texaure {
30637
30863
  position: absolute;
30638
30864
  margin-top: -35px;
30639
30865
  overflow: hidden;
30640
30866
  }
30641
- .ant-hashCode-texaure-single {
30867
+ .ant-hash-code-texaure-single {
30642
30868
  width: 210px;
30643
30869
  height: 28px;
30644
30870
  margin-top: -21px;
30645
30871
  }
30646
- .ant-hashCode-texaure-strip {
30872
+ .ant-hash-code-texaure-strip {
30647
30873
  width: 350px;
30648
30874
  height: 36px;
30649
30875
  }
30650
- .ant-hashCode-texaure-rect {
30876
+ .ant-hash-code-texaure-rect {
30651
30877
  width: 175px;
30652
30878
  height: 72px;
30653
30879
  margin-top: -71px;
@@ -30854,6 +31080,181 @@ nz-space-item {
30854
31080
  width: 32px;
30855
31081
  height: 32px;
30856
31082
  }
31083
+ .ant-check-list {
31084
+ position: fixed;
31085
+ right: 32px;
31086
+ bottom: 32px;
31087
+ z-index: 999;
31088
+ font-size: 14px;
31089
+ cursor: pointer;
31090
+ }
31091
+ .ant-check-list .ant-check-list-button {
31092
+ display: flex;
31093
+ gap: 8px;
31094
+ align-items: center;
31095
+ justify-content: center;
31096
+ min-width: 110px;
31097
+ height: 40px;
31098
+ border-radius: 20px;
31099
+ }
31100
+ .ant-check-list .ant-check-list-icon {
31101
+ font-size: 24px;
31102
+ line-height: 24px;
31103
+ }
31104
+ .ant-check-list .ant-check-list-description {
31105
+ font-size: 14px;
31106
+ }
31107
+ .ant-check-list-content {
31108
+ display: block;
31109
+ width: 303px;
31110
+ }
31111
+ .ant-check-list-content .ant-check-list-header {
31112
+ display: flex;
31113
+ align-items: center;
31114
+ justify-content: space-between;
31115
+ padding: 12px 12px 16px;
31116
+ }
31117
+ .ant-check-list-content .ant-check-list-header .ant-check-list-header-title {
31118
+ font-weight: 500;
31119
+ font-size: 20px;
31120
+ }
31121
+ .ant-check-list-content .ant-check-list-header .ant-check-list-header-extra {
31122
+ cursor: pointer;
31123
+ }
31124
+ .ant-check-list-content .ant-check-list-header-finish {
31125
+ width: 304px;
31126
+ padding-top: 12px;
31127
+ text-align: center;
31128
+ }
31129
+ .ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon {
31130
+ width: 64px;
31131
+ height: 64px;
31132
+ color: #177ddc;
31133
+ font-size: 64px;
31134
+ }
31135
+ .ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title {
31136
+ margin-top: 8px;
31137
+ margin-bottom: 8px;
31138
+ font-weight: 500;
31139
+ font-size: 16px;
31140
+ }
31141
+ .ant-check-list-content .ant-check-list-progressBar {
31142
+ display: flex;
31143
+ justify-content: space-between;
31144
+ margin: 12px 16px;
31145
+ margin-top: 0;
31146
+ }
31147
+ .ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress {
31148
+ flex: auto;
31149
+ }
31150
+ .ant-check-list-content .ant-check-list-steps-content {
31151
+ max-height: 250px;
31152
+ overflow-y: scroll;
31153
+ }
31154
+ .ant-check-list-content .ant-check-list-steps {
31155
+ display: flex;
31156
+ align-items: center;
31157
+ justify-content: space-between;
31158
+ height: 52px;
31159
+ padding-right: 12px;
31160
+ padding-left: 12px;
31161
+ border-radius: 6px;
31162
+ cursor: pointer;
31163
+ }
31164
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item {
31165
+ display: flex;
31166
+ gap: 12px;
31167
+ align-items: center;
31168
+ justify-content: center;
31169
+ width: calc(100% - 22px);
31170
+ font-weight: 400;
31171
+ }
31172
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle {
31173
+ display: flex;
31174
+ flex: 0 0 28px;
31175
+ align-items: center;
31176
+ justify-content: center;
31177
+ width: 28px;
31178
+ height: 28px;
31179
+ font-weight: 600;
31180
+ background-color: #141414;
31181
+ border: 1px solid #434343;
31182
+ border-radius: 50%;
31183
+ user-select: none;
31184
+ }
31185
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
31186
+ color: #177ddc;
31187
+ font-size: 16px;
31188
+ }
31189
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined {
31190
+ color: #141414;
31191
+ font-size: 14px;
31192
+ }
31193
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description {
31194
+ flex: 1;
31195
+ overflow: hidden;
31196
+ line-height: 2;
31197
+ white-space: nowrap;
31198
+ text-overflow: ellipsis;
31199
+ }
31200
+ .ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows {
31201
+ flex: 0 0 22px;
31202
+ width: 38px;
31203
+ height: 38px;
31204
+ color: #177ddc;
31205
+ font-size: 22px;
31206
+ }
31207
+ .ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle {
31208
+ background-color: #177ddc;
31209
+ border: none;
31210
+ }
31211
+ .ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description {
31212
+ font-weight: 500;
31213
+ text-decoration: line-through;
31214
+ text-decoration-thickness: 2px;
31215
+ text-decoration-color: rgba(255, 255, 255, 0.85);
31216
+ opacity: 0.85;
31217
+ }
31218
+ .ant-check-list-content .ant-check-list-highlight {
31219
+ background-color: #111b26;
31220
+ }
31221
+ .ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle {
31222
+ border: 1px solid #177ddc;
31223
+ }
31224
+ .ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
31225
+ color: #177ddc;
31226
+ }
31227
+ .ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description {
31228
+ font-weight: 600;
31229
+ }
31230
+ .ant-check-list-content .ant-check-list-footer {
31231
+ padding: 12px 12px 0;
31232
+ color: rgba(255, 255, 255, 0.45);
31233
+ font-size: 14px;
31234
+ text-decoration: underline;
31235
+ cursor: pointer;
31236
+ }
31237
+ .ant-check-list-content .ant-check-list-close-check {
31238
+ display: flex;
31239
+ flex-direction: column;
31240
+ padding: 12px;
31241
+ }
31242
+ .ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title {
31243
+ margin-bottom: 24px;
31244
+ font-weight: 500;
31245
+ font-size: 16px;
31246
+ }
31247
+ .ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action {
31248
+ display: flex;
31249
+ flex-direction: row;
31250
+ gap: 8px;
31251
+ margin-bottom: 16px;
31252
+ }
31253
+ .ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other {
31254
+ color: rgba(255, 255, 255, 0.45);
31255
+ font-size: 14px;
31256
+ cursor: pointer;
31257
+ }
30857
31258
  /** system */
30858
31259
  sf + st {
30859
31260
  margin-top: 16px;
@@ -31039,10 +31440,10 @@ a:focus {
31039
31440
  left: 0;
31040
31441
  width: 100%;
31041
31442
  padding: 10px 24px;
31042
- text-align: right;
31043
- background: #1f1f1f;
31044
31443
  border-top: 1px solid #303030;
31045
31444
  border-radius: 0 0 2px 2px;
31445
+ text-align: right;
31446
+ background: #1f1f1f;
31046
31447
  }
31047
31448
  .ant-form-item-label em {
31048
31449
  color: #bfbfbf;
@@ -31098,9 +31499,9 @@ a:focus {
31098
31499
  justify-content: space-between;
31099
31500
  margin: -24px -24px 24px -24px;
31100
31501
  padding: 16px 24px;
31101
- background: #141414;
31102
31502
  border-bottom: 1px solid #303030;
31103
31503
  border-radius: 2px 2px 0 0;
31504
+ background: #141414;
31104
31505
  }
31105
31506
  .modal-title {
31106
31507
  /**
@@ -31139,9 +31540,9 @@ a:focus {
31139
31540
  */
31140
31541
  margin: 24px -24px -24px -24px;
31141
31542
  padding: 10px 16px;
31142
- text-align: right;
31143
31543
  border-top: 1px solid #303030;
31144
31544
  border-radius: 0 0 2px 2px;
31545
+ text-align: right;
31145
31546
  }
31146
31547
  .modal-include-tabs {
31147
31548
  /**
@@ -31170,8 +31571,8 @@ a:focus {
31170
31571
  .ant-table td .img {
31171
31572
  max-width: 32px;
31172
31573
  max-height: 32px;
31173
- vertical-align: middle;
31174
31574
  border-radius: 4px;
31575
+ vertical-align: middle;
31175
31576
  }
31176
31577
  .ant-table td > img:not(:last-child),
31177
31578
  .ant-table td .img:not(:last-child) {
@@ -31224,9 +31625,9 @@ a:focus {
31224
31625
  align-items: center;
31225
31626
  width: 100%;
31226
31627
  padding: 8px 8px;
31628
+ border-bottom: none;
31227
31629
  text-align: left !important;
31228
31630
  white-space: inherit;
31229
- border-bottom: none;
31230
31631
  }
31231
31632
  .ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
31232
31633
  flex: 1;
@@ -31241,8 +31642,8 @@ a:focus {
31241
31642
  */
31242
31643
  }
31243
31644
  .ant-tag__plus .ant-tag {
31244
- background: #fff;
31245
31645
  border-style: dashed;
31646
+ background: #fff;
31246
31647
  }
31247
31648
  /**
31248
31649
  * Corrected `ng-tag` list line wrapping spacing
@@ -31606,8 +32007,8 @@ fieldset {
31606
32007
  }
31607
32008
  }
31608
32009
  .header-dropdown {
31609
- background-color: #1f1f1f;
31610
32010
  border-radius: 4px;
32011
+ background-color: #1f1f1f;
31611
32012
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.32), 0 9px 28px 0 rgba(0, 0, 0, 0.2), 0 12px 48px 16px rgba(0, 0, 0, 0.12);
31612
32013
  }
31613
32014
  @media screen and (max-width: 480px) {
@@ -31666,11 +32067,11 @@ fieldset {
31666
32067
  display: none;
31667
32068
  width: 32px;
31668
32069
  height: 32px;
32070
+ border-radius: 50%;
31669
32071
  font-size: 20px;
31670
32072
  line-height: 32px;
31671
32073
  text-align: center;
31672
32074
  background: rgba(0, 0, 0, 0.66);
31673
- border-radius: 50%;
31674
32075
  }
31675
32076
  .sf__array-container .ant-card .sf__array-remove i {
31676
32077
  color: #fff;
@@ -31831,10 +32232,10 @@ fieldset {
31831
32232
  width: 20px;
31832
32233
  height: 20px;
31833
32234
  margin-right: 8px;
32235
+ border-radius: 2px;
31834
32236
  font-weight: bold;
31835
32237
  color: #fff;
31836
32238
  text-align: center;
31837
- border-radius: 2px;
31838
32239
  }
31839
32240
  .setting-drawer__handle {
31840
32241
  pointer-events: auto;
@@ -31848,10 +32249,10 @@ fieldset {
31848
32249
  justify-content: center;
31849
32250
  width: 48px;
31850
32251
  height: 48px;
32252
+ border-radius: 4px 0 0 4px;
31851
32253
  font-size: 16px;
31852
32254
  text-align: center;
31853
32255
  background: #177ddc;
31854
- border-radius: 4px 0 0 4px;
31855
32256
  transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
31856
32257
  }
31857
32258
  .setting-drawer__handle-icon {
@@ -32285,10 +32686,10 @@ fieldset {
32285
32686
  code {
32286
32687
  margin: 0 4px;
32287
32688
  padding: 2px 4px;
32288
- font-size: 90%;
32289
- background-color: rgba(255, 255, 255, 0.04);
32290
32689
  border: 1px solid #434343;
32291
32690
  border-radius: 2px;
32691
+ font-size: 90%;
32692
+ background-color: rgba(255, 255, 255, 0.04);
32292
32693
  }
32293
32694
  /**
32294
32695
  * Set the background to white
@@ -34683,8 +35084,8 @@ textarea.ant-input::-webkit-scrollbar-thumb {
34683
35084
  * 隐藏滚动条
34684
35085
  */
34685
35086
  .hide-scrollbar {
34686
- scrollbar-width: none;
34687
35087
  scrollbar-color: transparent transparent;
35088
+ scrollbar-width: none;
34688
35089
  }
34689
35090
  .hide-scrollbar::-webkit-scrollbar {
34690
35091
  width: 1px;
@@ -34740,9 +35141,9 @@ body {
34740
35141
  padding: 24px;
34741
35142
  padding-top: 12px;
34742
35143
  padding-bottom: 12px;
35144
+ border-bottom: 1px solid #303030;
34743
35145
  color: #929292;
34744
35146
  background-color: #141414;
34745
- border-bottom: 1px solid #303030;
34746
35147
  }
34747
35148
  .alain-default__content-title > h1 {
34748
35149
  margin-bottom: 0;
@@ -34847,9 +35248,9 @@ body {
34847
35248
  display: block;
34848
35249
  min-width: 50px;
34849
35250
  padding: 8px 2px;
35251
+ border-radius: 2px;
34850
35252
  line-height: 100%;
34851
35253
  text-align: center;
34852
- border-radius: 2px;
34853
35254
  outline: none;
34854
35255
  transition: background-color 300ms;
34855
35256
  }
@@ -34893,9 +35294,9 @@ body {
34893
35294
  .alain-default__search .ant-input,
34894
35295
  .alain-default__search .ant-input-group-addon,
34895
35296
  .alain-default__search .ant-input-affix-wrapper {
34896
- color: #fff;
34897
- background-color: rgba(255, 255, 255, 0.2);
34898
35297
  border: none;
35298
+ color: #fff;
35299
+ background-color: #ffffff;
34899
35300
  }
34900
35301
  .alain-default__search .ant-input::placeholder,
34901
35302
  .alain-default__search .ant-input-group-addon::placeholder,
@@ -35153,8 +35554,8 @@ body {
35153
35554
  color: rgba(255, 255, 255, 0.85);
35154
35555
  }
35155
35556
  .sidebar-nav__selected {
35156
- background-color: #141414;
35157
35557
  border-left-color: #177ddc;
35558
+ background-color: #141414;
35158
35559
  }
35159
35560
  .sidebar-nav__selected > .sidebar-nav__item-link {
35160
35561
  color: #177ddc;
@@ -35196,9 +35597,9 @@ body {
35196
35597
  position: absolute;
35197
35598
  width: 6px;
35198
35599
  height: 1.5px;
35600
+ border-radius: 2px;
35199
35601
  background: #fff;
35200
35602
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
35201
- border-radius: 2px;
35202
35603
  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);
35203
35604
  }
35204
35605
  .sidebar-nav__sub-arrow::before {
@@ -35236,9 +35637,9 @@ body {
35236
35637
  z-index: 16;
35237
35638
  display: none;
35238
35639
  min-width: 160px;
35239
- background-color: #141414;
35240
35640
  border: 1px solid #303030;
35241
35641
  border-radius: 4px;
35642
+ background-color: #141414;
35242
35643
  }
35243
35644
  .sidebar-nav__floating .sidebar-nav__item-link {
35244
35645
  padding-left: 16px;
@@ -35396,8 +35797,8 @@ body {
35396
35797
  .app-icons .ant-col-6 {
35397
35798
  cursor: pointer;
35398
35799
  padding: 16px 0;
35399
- text-align: center;
35400
35800
  border-radius: 4px;
35801
+ text-align: center;
35401
35802
  transition: background-color 300ms;
35402
35803
  }
35403
35804
  .app-icons .ant-col-6:hover {
@@ -35405,8 +35806,8 @@ body {
35405
35806
  }
35406
35807
  .app-icons i {
35407
35808
  padding: 15px;
35408
- font-size: 22px;
35409
35809
  border-radius: 50%;
35810
+ font-size: 22px;
35410
35811
  }
35411
35812
  .app-icons small {
35412
35813
  display: block;
@@ -35500,9 +35901,9 @@ body {
35500
35901
  width: 100%;
35501
35902
  }
35502
35903
  .st__btn-sub .st__btn-text {
35904
+ display: block;
35503
35905
  width: 100%;
35504
35906
  color: inherit;
35505
- display: block;
35506
35907
  }
35507
35908
  .st__btn-disabled .st__btn-text {
35508
35909
  pointer-events: none;
@@ -35757,8 +36158,8 @@ body {
35757
36158
  border-bottom: 1px solid #303030;
35758
36159
  }
35759
36160
  .sv__bordered .sv__label {
35760
- background-color: rgba(255, 255, 255, 0.04);
35761
36161
  border-right: 1px solid #303030;
36162
+ background-color: rgba(255, 255, 255, 0.04);
35762
36163
  }
35763
36164
  .sv__bordered .sv__label,
35764
36165
  .sv__bordered .sv__detail {
@@ -36075,9 +36476,9 @@ ellipsis {
36075
36476
  width: 100%;
36076
36477
  height: 56px;
36077
36478
  padding: 0 24px;
36479
+ border-top: 1px solid #303030;
36078
36480
  line-height: 56px;
36079
36481
  background: #1f1f1f;
36080
- border-top: 1px solid #303030;
36081
36482
  box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.32), 0 -9px 28px 0 rgba(0, 0, 0, 0.2), 0 -12px 48px 16px rgba(0, 0, 0, 0.12);
36082
36483
  transition: all 0.3s;
36083
36484
  }
@@ -36181,11 +36582,11 @@ ellipsis {
36181
36582
  .notice-icon__clear {
36182
36583
  cursor: pointer;
36183
36584
  height: 46px;
36585
+ border-top: 1px solid #303030;
36586
+ border-radius: 0 0 2px 2px;
36184
36587
  line-height: 46px;
36185
36588
  color: rgba(255, 255, 255, 0.85);
36186
36589
  text-align: center;
36187
- border-top: 1px solid #303030;
36188
- border-radius: 0 0 2px 2px;
36189
36590
  transition: all 0.3s;
36190
36591
  }
36191
36592
  .notice-icon__clear:hover {
@@ -36213,11 +36614,14 @@ ellipsis {
36213
36614
  font-weight: normal;
36214
36615
  color: rgba(255, 255, 255, 0.45);
36215
36616
  }
36617
+ .notice-icon__item-extra .ant-tag {
36618
+ margin-right: 0;
36619
+ }
36216
36620
  .page-header {
36217
36621
  display: block;
36218
36622
  padding: 24px;
36219
- background-color: #141414;
36220
36623
  border-bottom: 1px solid #303030;
36624
+ background-color: #141414;
36221
36625
  }
36222
36626
  .page-header__wide {
36223
36627
  max-width: 1200px;
@@ -36376,8 +36780,8 @@ ellipsis {
36376
36780
  }
36377
36781
  .quick-menu,
36378
36782
  .quick-menu__ctrl {
36379
- background-color: #1f1f1f;
36380
36783
  border: 1px solid #303030;
36784
+ background-color: #1f1f1f;
36381
36785
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.32), 0 9px 28px 0 rgba(0, 0, 0, 0.2), 0 12px 48px 16px rgba(0, 0, 0, 0.12);
36382
36786
  }
36383
36787
  .quick-menu__inner {
@@ -36391,9 +36795,9 @@ ellipsis {
36391
36795
  left: -50px;
36392
36796
  width: 50px;
36393
36797
  height: 50px;
36394
- text-align: center;
36395
36798
  border-right: 0;
36396
36799
  border-radius: 3px 0 0 3px;
36800
+ text-align: center;
36397
36801
  }
36398
36802
  .quick-menu__ctrl-icon {
36399
36803
  font-size: 20px;
@@ -36431,9 +36835,9 @@ ellipsis {
36431
36835
  }
36432
36836
  .result__extra {
36433
36837
  padding: 24px 40px;
36838
+ border-radius: 2px;
36434
36839
  text-align: left;
36435
36840
  background: rgba(255, 255, 255, 0.04);
36436
- border-radius: 2px;
36437
36841
  }
36438
36842
  @media screen and (max-width: 480px) {
36439
36843
  .result__extra {
@@ -36690,8 +37094,8 @@ ellipsis {
36690
37094
  margin-right: 4px;
36691
37095
  }
36692
37096
  .cell .img {
36693
- vertical-align: middle;
36694
37097
  border-radius: 4px;
37098
+ vertical-align: middle;
36695
37099
  }
36696
37100
  .cell .unit {
36697
37101
  margin-left: 2px;
@@ -36796,8 +37200,8 @@ g2-tag-cloud {
36796
37200
  .g2-mini-progress__value {
36797
37201
  width: 0;
36798
37202
  height: 100%;
36799
- background-color: #177ddc;
36800
37203
  border-radius: 1px 0 0 1px;
37204
+ background-color: #177ddc;
36801
37205
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
36802
37206
  }
36803
37207
  .g2-mini-progress__target {