@open-condo/ui 1.12.2 → 1.13.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/dist/styles.css CHANGED
@@ -2663,6 +2663,281 @@ a.condo-btn-sm {
2663
2663
  opacity: 0;
2664
2664
  }
2665
2665
 
2666
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2667
+ /* stylelint-disable no-duplicate-selectors */
2668
+ /* stylelint-disable */
2669
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
2670
+ .condo-tooltip {
2671
+ box-sizing: border-box;
2672
+ margin: 0;
2673
+ padding: 0;
2674
+ color: rgba(0, 0, 0, 0.85);
2675
+ font-size: 14px;
2676
+ font-variant: tabular-nums;
2677
+ line-height: 1.5715;
2678
+ list-style: none;
2679
+ font-feature-settings: 'tnum', "tnum";
2680
+ position: absolute;
2681
+ z-index: 1070;
2682
+ display: block;
2683
+ width: -webkit-max-content;
2684
+ width: -moz-max-content;
2685
+ width: max-content;
2686
+ width: intrinsic;
2687
+ max-width: 250px;
2688
+ visibility: visible;
2689
+ }
2690
+ .condo-tooltip-content {
2691
+ position: relative;
2692
+ }
2693
+ .condo-tooltip-hidden {
2694
+ display: none;
2695
+ }
2696
+ .condo-tooltip-placement-top,
2697
+ .condo-tooltip-placement-topLeft,
2698
+ .condo-tooltip-placement-topRight {
2699
+ padding-bottom: 14.3137085px;
2700
+ }
2701
+ .condo-tooltip-placement-right,
2702
+ .condo-tooltip-placement-rightTop,
2703
+ .condo-tooltip-placement-rightBottom {
2704
+ padding-left: 14.3137085px;
2705
+ }
2706
+ .condo-tooltip-placement-bottom,
2707
+ .condo-tooltip-placement-bottomLeft,
2708
+ .condo-tooltip-placement-bottomRight {
2709
+ padding-top: 14.3137085px;
2710
+ }
2711
+ .condo-tooltip-placement-left,
2712
+ .condo-tooltip-placement-leftTop,
2713
+ .condo-tooltip-placement-leftBottom {
2714
+ padding-right: 14.3137085px;
2715
+ }
2716
+ .condo-tooltip-inner {
2717
+ min-width: 30px;
2718
+ min-height: 32px;
2719
+ padding: 6px 8px;
2720
+ color: #fff;
2721
+ text-align: left;
2722
+ text-decoration: none;
2723
+ word-wrap: break-word;
2724
+ background-color: rgba(0, 0, 0, 0.75);
2725
+ border-radius: 2px;
2726
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
2727
+ }
2728
+ .condo-tooltip-arrow {
2729
+ position: absolute;
2730
+ z-index: 2;
2731
+ display: block;
2732
+ width: 22px;
2733
+ height: 22px;
2734
+ overflow: hidden;
2735
+ background: transparent;
2736
+ pointer-events: none;
2737
+ }
2738
+ .condo-tooltip-arrow-content {
2739
+ --antd-arrow-background-color: linear-gradient(to right bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
2740
+ position: absolute;
2741
+ top: 0;
2742
+ right: 0;
2743
+ bottom: 0;
2744
+ left: 0;
2745
+ display: block;
2746
+ width: 11.3137085px;
2747
+ height: 11.3137085px;
2748
+ margin: auto;
2749
+ content: '';
2750
+ pointer-events: auto;
2751
+ border-radius: 0 0 2px;
2752
+ pointer-events: none;
2753
+ }
2754
+ .condo-tooltip-arrow-content::before {
2755
+ position: absolute;
2756
+ top: -11.3137085px;
2757
+ left: -11.3137085px;
2758
+ width: 33.9411255px;
2759
+ height: 33.9411255px;
2760
+ background: var(--antd-arrow-background-color);
2761
+ background-repeat: no-repeat;
2762
+ background-position: -10px -10px;
2763
+ content: '';
2764
+ -webkit-clip-path: inset(33% 33%);
2765
+ clip-path: inset(33% 33%);
2766
+ -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
2767
+ clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
2768
+ }
2769
+ .condo-tooltip-placement-top .condo-tooltip-arrow,
2770
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow,
2771
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow {
2772
+ bottom: 0;
2773
+ transform: translateY(100%);
2774
+ }
2775
+ .condo-tooltip-placement-top .condo-tooltip-arrow-content,
2776
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow-content,
2777
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow-content {
2778
+ box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
2779
+ transform: translateY(-11px) rotate(45deg);
2780
+ }
2781
+ .condo-tooltip-placement-top .condo-tooltip-arrow {
2782
+ left: 50%;
2783
+ transform: translateY(100%) translateX(-50%);
2784
+ }
2785
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow {
2786
+ left: 13px;
2787
+ }
2788
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow {
2789
+ right: 13px;
2790
+ }
2791
+ .condo-tooltip-placement-right .condo-tooltip-arrow,
2792
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow,
2793
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
2794
+ left: 0;
2795
+ transform: translateX(-100%);
2796
+ }
2797
+ .condo-tooltip-placement-right .condo-tooltip-arrow-content,
2798
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow-content,
2799
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow-content {
2800
+ box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
2801
+ transform: translateX(11px) rotate(135deg);
2802
+ }
2803
+ .condo-tooltip-placement-right .condo-tooltip-arrow {
2804
+ top: 50%;
2805
+ transform: translateX(-100%) translateY(-50%);
2806
+ }
2807
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow {
2808
+ top: 5px;
2809
+ }
2810
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
2811
+ bottom: 5px;
2812
+ }
2813
+ .condo-tooltip-placement-left .condo-tooltip-arrow,
2814
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow,
2815
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
2816
+ right: 0;
2817
+ transform: translateX(100%);
2818
+ }
2819
+ .condo-tooltip-placement-left .condo-tooltip-arrow-content,
2820
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow-content,
2821
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow-content {
2822
+ box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
2823
+ transform: translateX(-11px) rotate(315deg);
2824
+ }
2825
+ .condo-tooltip-placement-left .condo-tooltip-arrow {
2826
+ top: 50%;
2827
+ transform: translateX(100%) translateY(-50%);
2828
+ }
2829
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow {
2830
+ top: 5px;
2831
+ }
2832
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
2833
+ bottom: 5px;
2834
+ }
2835
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow,
2836
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow,
2837
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
2838
+ top: 0;
2839
+ transform: translateY(-100%);
2840
+ }
2841
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow-content,
2842
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow-content,
2843
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow-content {
2844
+ box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
2845
+ transform: translateY(11px) rotate(225deg);
2846
+ }
2847
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow {
2848
+ left: 50%;
2849
+ transform: translateY(-100%) translateX(-50%);
2850
+ }
2851
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow {
2852
+ left: 13px;
2853
+ }
2854
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
2855
+ right: 13px;
2856
+ }
2857
+ .condo-tooltip-pink .condo-tooltip-inner {
2858
+ background-color: #eb2f96;
2859
+ }
2860
+ .condo-tooltip-pink .condo-tooltip-arrow-content::before {
2861
+ background: #eb2f96;
2862
+ }
2863
+ .condo-tooltip-magenta .condo-tooltip-inner {
2864
+ background-color: #eb2f96;
2865
+ }
2866
+ .condo-tooltip-magenta .condo-tooltip-arrow-content::before {
2867
+ background: #eb2f96;
2868
+ }
2869
+ .condo-tooltip-red .condo-tooltip-inner {
2870
+ background-color: #f5222d;
2871
+ }
2872
+ .condo-tooltip-red .condo-tooltip-arrow-content::before {
2873
+ background: #f5222d;
2874
+ }
2875
+ .condo-tooltip-volcano .condo-tooltip-inner {
2876
+ background-color: #fa541c;
2877
+ }
2878
+ .condo-tooltip-volcano .condo-tooltip-arrow-content::before {
2879
+ background: #fa541c;
2880
+ }
2881
+ .condo-tooltip-orange .condo-tooltip-inner {
2882
+ background-color: #fa8c16;
2883
+ }
2884
+ .condo-tooltip-orange .condo-tooltip-arrow-content::before {
2885
+ background: #fa8c16;
2886
+ }
2887
+ .condo-tooltip-yellow .condo-tooltip-inner {
2888
+ background-color: #fadb14;
2889
+ }
2890
+ .condo-tooltip-yellow .condo-tooltip-arrow-content::before {
2891
+ background: #fadb14;
2892
+ }
2893
+ .condo-tooltip-gold .condo-tooltip-inner {
2894
+ background-color: #faad14;
2895
+ }
2896
+ .condo-tooltip-gold .condo-tooltip-arrow-content::before {
2897
+ background: #faad14;
2898
+ }
2899
+ .condo-tooltip-cyan .condo-tooltip-inner {
2900
+ background-color: #13c2c2;
2901
+ }
2902
+ .condo-tooltip-cyan .condo-tooltip-arrow-content::before {
2903
+ background: #13c2c2;
2904
+ }
2905
+ .condo-tooltip-lime .condo-tooltip-inner {
2906
+ background-color: #a0d911;
2907
+ }
2908
+ .condo-tooltip-lime .condo-tooltip-arrow-content::before {
2909
+ background: #a0d911;
2910
+ }
2911
+ .condo-tooltip-green .condo-tooltip-inner {
2912
+ background-color: #52c41a;
2913
+ }
2914
+ .condo-tooltip-green .condo-tooltip-arrow-content::before {
2915
+ background: #52c41a;
2916
+ }
2917
+ .condo-tooltip-blue .condo-tooltip-inner {
2918
+ background-color: #1890ff;
2919
+ }
2920
+ .condo-tooltip-blue .condo-tooltip-arrow-content::before {
2921
+ background: #1890ff;
2922
+ }
2923
+ .condo-tooltip-geekblue .condo-tooltip-inner {
2924
+ background-color: #2f54eb;
2925
+ }
2926
+ .condo-tooltip-geekblue .condo-tooltip-arrow-content::before {
2927
+ background: #2f54eb;
2928
+ }
2929
+ .condo-tooltip-purple .condo-tooltip-inner {
2930
+ background-color: #722ed1;
2931
+ }
2932
+ .condo-tooltip-purple .condo-tooltip-arrow-content::before {
2933
+ background: #722ed1;
2934
+ }
2935
+ .condo-tooltip-rtl {
2936
+ direction: rtl;
2937
+ }
2938
+ .condo-tooltip-rtl .condo-tooltip-inner {
2939
+ text-align: right;
2940
+ }
2666
2941
  .condo-typography {
2667
2942
  color: #222;
2668
2943
  word-break: break-word;
@@ -2950,6 +3225,19 @@ span.condo-typography-ellipsis-single-line {
2950
3225
  /*! autoprefixer: ignore next */
2951
3226
  -webkit-box-orient: vertical;
2952
3227
  }
3228
+ .condo-tooltip > .condo-tooltip-content .condo-tooltip-inner {
3229
+ padding: 12px;
3230
+ color: #222;
3231
+ font-size: 12px;
3232
+ font-family: "Open Sans", sans-serif;
3233
+ line-height: 20px;
3234
+ background-color: #fff;
3235
+ border-radius: 12px;
3236
+ box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
3237
+ }
3238
+ .condo-tooltip > .condo-tooltip-content .condo-tooltip-arrow {
3239
+ display: none;
3240
+ }
2953
3241
 
2954
3242
  .condo-promo-block {
2955
3243
  display: flex;
@@ -4070,6 +4358,617 @@ span.condo-typography-ellipsis-single-line {
4070
4358
  border-color: transparent;
4071
4359
  }
4072
4360
 
4361
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
4362
+ /* stylelint-disable no-duplicate-selectors */
4363
+ /* stylelint-disable */
4364
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
4365
+ .condo-list {
4366
+ box-sizing: border-box;
4367
+ margin: 0;
4368
+ padding: 0;
4369
+ color: rgba(0, 0, 0, 0.85);
4370
+ font-size: 14px;
4371
+ font-variant: tabular-nums;
4372
+ line-height: 1.5715;
4373
+ list-style: none;
4374
+ font-feature-settings: 'tnum', "tnum";
4375
+ position: relative;
4376
+ }
4377
+ .condo-list * {
4378
+ outline: none;
4379
+ }
4380
+ .condo-list-pagination {
4381
+ margin-top: 24px;
4382
+ text-align: right;
4383
+ }
4384
+ .condo-list-pagination .condo-pagination-options {
4385
+ text-align: left;
4386
+ }
4387
+ .condo-list-more {
4388
+ margin-top: 12px;
4389
+ text-align: center;
4390
+ }
4391
+ .condo-list-more button {
4392
+ padding-right: 32px;
4393
+ padding-left: 32px;
4394
+ }
4395
+ .condo-list-spin {
4396
+ min-height: 40px;
4397
+ text-align: center;
4398
+ }
4399
+ .condo-list-empty-text {
4400
+ padding: 16px;
4401
+ color: rgba(0, 0, 0, 0.25);
4402
+ font-size: 14px;
4403
+ text-align: center;
4404
+ }
4405
+ .condo-list-items {
4406
+ margin: 0;
4407
+ padding: 0;
4408
+ list-style: none;
4409
+ }
4410
+ .condo-list-item {
4411
+ display: flex;
4412
+ align-items: center;
4413
+ justify-content: space-between;
4414
+ padding: 12px 0;
4415
+ color: rgba(0, 0, 0, 0.85);
4416
+ }
4417
+ .condo-list-item-meta {
4418
+ display: flex;
4419
+ flex: 1;
4420
+ align-items: flex-start;
4421
+ max-width: 100%;
4422
+ }
4423
+ .condo-list-item-meta-avatar {
4424
+ margin-right: 16px;
4425
+ }
4426
+ .condo-list-item-meta-content {
4427
+ flex: 1 0;
4428
+ width: 0;
4429
+ color: rgba(0, 0, 0, 0.85);
4430
+ }
4431
+ .condo-list-item-meta-title {
4432
+ margin-bottom: 4px;
4433
+ color: rgba(0, 0, 0, 0.85);
4434
+ font-size: 14px;
4435
+ line-height: 1.5715;
4436
+ }
4437
+ .condo-list-item-meta-title > a {
4438
+ color: rgba(0, 0, 0, 0.85);
4439
+ transition: all 0.3s;
4440
+ }
4441
+ .condo-list-item-meta-title > a:hover {
4442
+ color: #1890ff;
4443
+ }
4444
+ .condo-list-item-meta-description {
4445
+ color: rgba(0, 0, 0, 0.45);
4446
+ font-size: 14px;
4447
+ line-height: 1.5715;
4448
+ }
4449
+ .condo-list-item-action {
4450
+ flex: 0 0 auto;
4451
+ margin-left: 48px;
4452
+ padding: 0;
4453
+ font-size: 0;
4454
+ list-style: none;
4455
+ }
4456
+ .condo-list-item-action > li {
4457
+ position: relative;
4458
+ display: inline-block;
4459
+ padding: 0 8px;
4460
+ color: rgba(0, 0, 0, 0.45);
4461
+ font-size: 14px;
4462
+ line-height: 1.5715;
4463
+ text-align: center;
4464
+ }
4465
+ .condo-list-item-action > li:first-child {
4466
+ padding-left: 0;
4467
+ }
4468
+ .condo-list-item-action-split {
4469
+ position: absolute;
4470
+ top: 50%;
4471
+ right: 0;
4472
+ width: 1px;
4473
+ height: 14px;
4474
+ margin-top: -7px;
4475
+ background-color: #f0f0f0;
4476
+ }
4477
+ .condo-list-header {
4478
+ background: transparent;
4479
+ }
4480
+ .condo-list-footer {
4481
+ background: transparent;
4482
+ }
4483
+ .condo-list-header,
4484
+ .condo-list-footer {
4485
+ padding-top: 12px;
4486
+ padding-bottom: 12px;
4487
+ }
4488
+ .condo-list-empty {
4489
+ padding: 16px 0;
4490
+ color: rgba(0, 0, 0, 0.45);
4491
+ font-size: 12px;
4492
+ text-align: center;
4493
+ }
4494
+ .condo-list-split .condo-list-item {
4495
+ border-bottom: 1px solid #f0f0f0;
4496
+ }
4497
+ .condo-list-split .condo-list-item:last-child {
4498
+ border-bottom: none;
4499
+ }
4500
+ .condo-list-split .condo-list-header {
4501
+ border-bottom: 1px solid #f0f0f0;
4502
+ }
4503
+ .condo-list-split.condo-list-empty .condo-list-footer {
4504
+ border-top: 1px solid #f0f0f0;
4505
+ }
4506
+ .condo-list-loading .condo-list-spin-nested-loading {
4507
+ min-height: 32px;
4508
+ }
4509
+ .condo-list-split.condo-list-something-after-last-item .condo-spin-container > .condo-list-items > .condo-list-item:last-child {
4510
+ border-bottom: 1px solid #f0f0f0;
4511
+ }
4512
+ .condo-list-lg .condo-list-item {
4513
+ padding: 16px 24px;
4514
+ }
4515
+ .condo-list-sm .condo-list-item {
4516
+ padding: 8px 16px;
4517
+ }
4518
+ .condo-list-vertical .condo-list-item {
4519
+ align-items: initial;
4520
+ }
4521
+ .condo-list-vertical .condo-list-item-main {
4522
+ display: block;
4523
+ flex: 1;
4524
+ }
4525
+ .condo-list-vertical .condo-list-item-extra {
4526
+ margin-left: 40px;
4527
+ }
4528
+ .condo-list-vertical .condo-list-item-meta {
4529
+ margin-bottom: 16px;
4530
+ }
4531
+ .condo-list-vertical .condo-list-item-meta-title {
4532
+ margin-bottom: 12px;
4533
+ color: rgba(0, 0, 0, 0.85);
4534
+ font-size: 16px;
4535
+ line-height: 24px;
4536
+ }
4537
+ .condo-list-vertical .condo-list-item-action {
4538
+ margin-top: 16px;
4539
+ margin-left: auto;
4540
+ }
4541
+ .condo-list-vertical .condo-list-item-action > li {
4542
+ padding: 0 16px;
4543
+ }
4544
+ .condo-list-vertical .condo-list-item-action > li:first-child {
4545
+ padding-left: 0;
4546
+ }
4547
+ .condo-list-grid .condo-col > .condo-list-item {
4548
+ display: block;
4549
+ max-width: 100%;
4550
+ margin-bottom: 16px;
4551
+ padding-top: 0;
4552
+ padding-bottom: 0;
4553
+ border-bottom: none;
4554
+ }
4555
+ .condo-list-item-no-flex {
4556
+ display: block;
4557
+ }
4558
+ .condo-list:not(.condo-list-vertical) .condo-list-item-no-flex .condo-list-item-action {
4559
+ float: right;
4560
+ }
4561
+ .condo-list-bordered {
4562
+ border: 1px solid #d9d9d9;
4563
+ border-radius: 2px;
4564
+ }
4565
+ .condo-list-bordered .condo-list-header {
4566
+ padding-right: 24px;
4567
+ padding-left: 24px;
4568
+ }
4569
+ .condo-list-bordered .condo-list-footer {
4570
+ padding-right: 24px;
4571
+ padding-left: 24px;
4572
+ }
4573
+ .condo-list-bordered .condo-list-item {
4574
+ padding-right: 24px;
4575
+ padding-left: 24px;
4576
+ }
4577
+ .condo-list-bordered .condo-list-pagination {
4578
+ margin: 16px 24px;
4579
+ }
4580
+ .condo-list-bordered.condo-list-sm .condo-list-item {
4581
+ padding: 8px 16px;
4582
+ }
4583
+ .condo-list-bordered.condo-list-sm .condo-list-header,
4584
+ .condo-list-bordered.condo-list-sm .condo-list-footer {
4585
+ padding: 8px 16px;
4586
+ }
4587
+ .condo-list-bordered.condo-list-lg .condo-list-item {
4588
+ padding: 16px 24px;
4589
+ }
4590
+ .condo-list-bordered.condo-list-lg .condo-list-header,
4591
+ .condo-list-bordered.condo-list-lg .condo-list-footer {
4592
+ padding: 16px 24px;
4593
+ }
4594
+ @media screen and (max-width: 768px) {
4595
+ .condo-list-item-action {
4596
+ margin-left: 24px;
4597
+ }
4598
+ .condo-list-vertical .condo-list-item-extra {
4599
+ margin-left: 24px;
4600
+ }
4601
+ }
4602
+ @media screen and (max-width: 576px) {
4603
+ .condo-list-item {
4604
+ flex-wrap: wrap;
4605
+ }
4606
+ .condo-list-item-action {
4607
+ margin-left: 12px;
4608
+ }
4609
+ .condo-list-vertical .condo-list-item {
4610
+ flex-wrap: wrap-reverse;
4611
+ }
4612
+ .condo-list-vertical .condo-list-item-main {
4613
+ min-width: 220px;
4614
+ }
4615
+ .condo-list-vertical .condo-list-item-extra {
4616
+ margin: auto auto 16px;
4617
+ }
4618
+ }
4619
+ .condo-list-rtl {
4620
+ direction: rtl;
4621
+ text-align: right;
4622
+ }
4623
+ .condo-list-rtl .ReactVirtualized__List .condo-list-item {
4624
+ direction: rtl;
4625
+ }
4626
+ .condo-list-rtl .condo-list-pagination {
4627
+ text-align: left;
4628
+ }
4629
+ .condo-list-rtl .condo-list-item-meta-avatar {
4630
+ margin-right: 0;
4631
+ margin-left: 16px;
4632
+ }
4633
+ .condo-list-rtl .condo-list-item-action {
4634
+ margin-right: 48px;
4635
+ margin-left: 0;
4636
+ }
4637
+ .condo-list.condo-list-rtl .condo-list-item-action > li:first-child {
4638
+ padding-right: 0;
4639
+ padding-left: 16px;
4640
+ }
4641
+ .condo-list-rtl .condo-list-item-action-split {
4642
+ right: auto;
4643
+ left: 0;
4644
+ }
4645
+ .condo-list-rtl.condo-list-vertical .condo-list-item-extra {
4646
+ margin-right: 40px;
4647
+ margin-left: 0;
4648
+ }
4649
+ .condo-list-rtl.condo-list-vertical .condo-list-item-action {
4650
+ margin-right: auto;
4651
+ }
4652
+ .condo-list-rtl .condo-list-vertical .condo-list-item-action > li:first-child {
4653
+ padding-right: 0;
4654
+ padding-left: 16px;
4655
+ }
4656
+ .condo-list-rtl .condo-list:not(.condo-list-vertical) .condo-list-item-no-flex .condo-list-item-action {
4657
+ float: left;
4658
+ }
4659
+ @media screen and (max-width: 768px) {
4660
+ .condo-list-rtl .condo-list-item-action {
4661
+ margin-right: 24px;
4662
+ margin-left: 0;
4663
+ }
4664
+ .condo-list-rtl .condo-list-vertical .condo-list-item-extra {
4665
+ margin-right: 24px;
4666
+ margin-left: 0;
4667
+ }
4668
+ }
4669
+ @media screen and (max-width: 576px) {
4670
+ .condo-list-rtl .condo-list-item-action {
4671
+ margin-right: 22px;
4672
+ margin-left: 0;
4673
+ }
4674
+ .condo-list-rtl.condo-list-vertical .condo-list-item-extra {
4675
+ margin: auto auto 16px;
4676
+ }
4677
+ }
4678
+ .condo-tooltip {
4679
+ box-sizing: border-box;
4680
+ margin: 0;
4681
+ padding: 0;
4682
+ color: rgba(0, 0, 0, 0.85);
4683
+ font-size: 14px;
4684
+ font-variant: tabular-nums;
4685
+ line-height: 1.5715;
4686
+ list-style: none;
4687
+ font-feature-settings: 'tnum', "tnum";
4688
+ position: absolute;
4689
+ z-index: 1070;
4690
+ display: block;
4691
+ width: -webkit-max-content;
4692
+ width: -moz-max-content;
4693
+ width: max-content;
4694
+ width: intrinsic;
4695
+ max-width: 250px;
4696
+ visibility: visible;
4697
+ }
4698
+ .condo-tooltip-content {
4699
+ position: relative;
4700
+ }
4701
+ .condo-tooltip-hidden {
4702
+ display: none;
4703
+ }
4704
+ .condo-tooltip-placement-top,
4705
+ .condo-tooltip-placement-topLeft,
4706
+ .condo-tooltip-placement-topRight {
4707
+ padding-bottom: 14.3137085px;
4708
+ }
4709
+ .condo-tooltip-placement-right,
4710
+ .condo-tooltip-placement-rightTop,
4711
+ .condo-tooltip-placement-rightBottom {
4712
+ padding-left: 14.3137085px;
4713
+ }
4714
+ .condo-tooltip-placement-bottom,
4715
+ .condo-tooltip-placement-bottomLeft,
4716
+ .condo-tooltip-placement-bottomRight {
4717
+ padding-top: 14.3137085px;
4718
+ }
4719
+ .condo-tooltip-placement-left,
4720
+ .condo-tooltip-placement-leftTop,
4721
+ .condo-tooltip-placement-leftBottom {
4722
+ padding-right: 14.3137085px;
4723
+ }
4724
+ .condo-tooltip-inner {
4725
+ min-width: 30px;
4726
+ min-height: 32px;
4727
+ padding: 6px 8px;
4728
+ color: #fff;
4729
+ text-align: left;
4730
+ text-decoration: none;
4731
+ word-wrap: break-word;
4732
+ background-color: rgba(0, 0, 0, 0.75);
4733
+ border-radius: 2px;
4734
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
4735
+ }
4736
+ .condo-tooltip-arrow {
4737
+ position: absolute;
4738
+ z-index: 2;
4739
+ display: block;
4740
+ width: 22px;
4741
+ height: 22px;
4742
+ overflow: hidden;
4743
+ background: transparent;
4744
+ pointer-events: none;
4745
+ }
4746
+ .condo-tooltip-arrow-content {
4747
+ --antd-arrow-background-color: linear-gradient(to right bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
4748
+ position: absolute;
4749
+ top: 0;
4750
+ right: 0;
4751
+ bottom: 0;
4752
+ left: 0;
4753
+ display: block;
4754
+ width: 11.3137085px;
4755
+ height: 11.3137085px;
4756
+ margin: auto;
4757
+ content: '';
4758
+ pointer-events: auto;
4759
+ border-radius: 0 0 2px;
4760
+ pointer-events: none;
4761
+ }
4762
+ .condo-tooltip-arrow-content::before {
4763
+ position: absolute;
4764
+ top: -11.3137085px;
4765
+ left: -11.3137085px;
4766
+ width: 33.9411255px;
4767
+ height: 33.9411255px;
4768
+ background: var(--antd-arrow-background-color);
4769
+ background-repeat: no-repeat;
4770
+ background-position: -10px -10px;
4771
+ content: '';
4772
+ -webkit-clip-path: inset(33% 33%);
4773
+ clip-path: inset(33% 33%);
4774
+ -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
4775
+ clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
4776
+ }
4777
+ .condo-tooltip-placement-top .condo-tooltip-arrow,
4778
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow,
4779
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow {
4780
+ bottom: 0;
4781
+ transform: translateY(100%);
4782
+ }
4783
+ .condo-tooltip-placement-top .condo-tooltip-arrow-content,
4784
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow-content,
4785
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow-content {
4786
+ box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
4787
+ transform: translateY(-11px) rotate(45deg);
4788
+ }
4789
+ .condo-tooltip-placement-top .condo-tooltip-arrow {
4790
+ left: 50%;
4791
+ transform: translateY(100%) translateX(-50%);
4792
+ }
4793
+ .condo-tooltip-placement-topLeft .condo-tooltip-arrow {
4794
+ left: 13px;
4795
+ }
4796
+ .condo-tooltip-placement-topRight .condo-tooltip-arrow {
4797
+ right: 13px;
4798
+ }
4799
+ .condo-tooltip-placement-right .condo-tooltip-arrow,
4800
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow,
4801
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
4802
+ left: 0;
4803
+ transform: translateX(-100%);
4804
+ }
4805
+ .condo-tooltip-placement-right .condo-tooltip-arrow-content,
4806
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow-content,
4807
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow-content {
4808
+ box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
4809
+ transform: translateX(11px) rotate(135deg);
4810
+ }
4811
+ .condo-tooltip-placement-right .condo-tooltip-arrow {
4812
+ top: 50%;
4813
+ transform: translateX(-100%) translateY(-50%);
4814
+ }
4815
+ .condo-tooltip-placement-rightTop .condo-tooltip-arrow {
4816
+ top: 5px;
4817
+ }
4818
+ .condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
4819
+ bottom: 5px;
4820
+ }
4821
+ .condo-tooltip-placement-left .condo-tooltip-arrow,
4822
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow,
4823
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
4824
+ right: 0;
4825
+ transform: translateX(100%);
4826
+ }
4827
+ .condo-tooltip-placement-left .condo-tooltip-arrow-content,
4828
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow-content,
4829
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow-content {
4830
+ box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
4831
+ transform: translateX(-11px) rotate(315deg);
4832
+ }
4833
+ .condo-tooltip-placement-left .condo-tooltip-arrow {
4834
+ top: 50%;
4835
+ transform: translateX(100%) translateY(-50%);
4836
+ }
4837
+ .condo-tooltip-placement-leftTop .condo-tooltip-arrow {
4838
+ top: 5px;
4839
+ }
4840
+ .condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
4841
+ bottom: 5px;
4842
+ }
4843
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow,
4844
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow,
4845
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
4846
+ top: 0;
4847
+ transform: translateY(-100%);
4848
+ }
4849
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow-content,
4850
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow-content,
4851
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow-content {
4852
+ box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
4853
+ transform: translateY(11px) rotate(225deg);
4854
+ }
4855
+ .condo-tooltip-placement-bottom .condo-tooltip-arrow {
4856
+ left: 50%;
4857
+ transform: translateY(-100%) translateX(-50%);
4858
+ }
4859
+ .condo-tooltip-placement-bottomLeft .condo-tooltip-arrow {
4860
+ left: 13px;
4861
+ }
4862
+ .condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
4863
+ right: 13px;
4864
+ }
4865
+ .condo-tooltip-pink .condo-tooltip-inner {
4866
+ background-color: #eb2f96;
4867
+ }
4868
+ .condo-tooltip-pink .condo-tooltip-arrow-content::before {
4869
+ background: #eb2f96;
4870
+ }
4871
+ .condo-tooltip-magenta .condo-tooltip-inner {
4872
+ background-color: #eb2f96;
4873
+ }
4874
+ .condo-tooltip-magenta .condo-tooltip-arrow-content::before {
4875
+ background: #eb2f96;
4876
+ }
4877
+ .condo-tooltip-red .condo-tooltip-inner {
4878
+ background-color: #f5222d;
4879
+ }
4880
+ .condo-tooltip-red .condo-tooltip-arrow-content::before {
4881
+ background: #f5222d;
4882
+ }
4883
+ .condo-tooltip-volcano .condo-tooltip-inner {
4884
+ background-color: #fa541c;
4885
+ }
4886
+ .condo-tooltip-volcano .condo-tooltip-arrow-content::before {
4887
+ background: #fa541c;
4888
+ }
4889
+ .condo-tooltip-orange .condo-tooltip-inner {
4890
+ background-color: #fa8c16;
4891
+ }
4892
+ .condo-tooltip-orange .condo-tooltip-arrow-content::before {
4893
+ background: #fa8c16;
4894
+ }
4895
+ .condo-tooltip-yellow .condo-tooltip-inner {
4896
+ background-color: #fadb14;
4897
+ }
4898
+ .condo-tooltip-yellow .condo-tooltip-arrow-content::before {
4899
+ background: #fadb14;
4900
+ }
4901
+ .condo-tooltip-gold .condo-tooltip-inner {
4902
+ background-color: #faad14;
4903
+ }
4904
+ .condo-tooltip-gold .condo-tooltip-arrow-content::before {
4905
+ background: #faad14;
4906
+ }
4907
+ .condo-tooltip-cyan .condo-tooltip-inner {
4908
+ background-color: #13c2c2;
4909
+ }
4910
+ .condo-tooltip-cyan .condo-tooltip-arrow-content::before {
4911
+ background: #13c2c2;
4912
+ }
4913
+ .condo-tooltip-lime .condo-tooltip-inner {
4914
+ background-color: #a0d911;
4915
+ }
4916
+ .condo-tooltip-lime .condo-tooltip-arrow-content::before {
4917
+ background: #a0d911;
4918
+ }
4919
+ .condo-tooltip-green .condo-tooltip-inner {
4920
+ background-color: #52c41a;
4921
+ }
4922
+ .condo-tooltip-green .condo-tooltip-arrow-content::before {
4923
+ background: #52c41a;
4924
+ }
4925
+ .condo-tooltip-blue .condo-tooltip-inner {
4926
+ background-color: #1890ff;
4927
+ }
4928
+ .condo-tooltip-blue .condo-tooltip-arrow-content::before {
4929
+ background: #1890ff;
4930
+ }
4931
+ .condo-tooltip-geekblue .condo-tooltip-inner {
4932
+ background-color: #2f54eb;
4933
+ }
4934
+ .condo-tooltip-geekblue .condo-tooltip-arrow-content::before {
4935
+ background: #2f54eb;
4936
+ }
4937
+ .condo-tooltip-purple .condo-tooltip-inner {
4938
+ background-color: #722ed1;
4939
+ }
4940
+ .condo-tooltip-purple .condo-tooltip-arrow-content::before {
4941
+ background: #722ed1;
4942
+ }
4943
+ .condo-tooltip-rtl {
4944
+ direction: rtl;
4945
+ }
4946
+ .condo-tooltip-rtl .condo-tooltip-inner {
4947
+ text-align: right;
4948
+ }
4949
+ .condo-list .condo-list-header {
4950
+ padding-bottom: 24px;
4951
+ border-bottom: none;
4952
+ }
4953
+ .condo-list .condo-list-item {
4954
+ display: flex;
4955
+ flex-wrap: nowrap;
4956
+ align-items: end;
4957
+ width: 100%;
4958
+ border-bottom: none;
4959
+ }
4960
+ .condo-list .condo-list-item .condo-typography {
4961
+ max-width: 40%;
4962
+ }
4963
+ .condo-list .condo-list-item .condo-typography:last-of-type {
4964
+ text-align: right;
4965
+ }
4966
+ .condo-list .condo-list-item-divider {
4967
+ flex: 1;
4968
+ margin: 0 8px;
4969
+ border-bottom: 1px solid #e1e5ed;
4970
+ }
4971
+
4073
4972
  .condo-markdown h1,
4074
4973
  .condo-markdown h2,
4075
4974
  .condo-markdown h3,