@open-condo/ui 1.5.0 → 1.7.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
@@ -2167,6 +2167,16 @@ a.condo-btn-sm {
2167
2167
  .condo-btn-primary:active::before {
2168
2168
  opacity: 0.9;
2169
2169
  }
2170
+ .condo-btn-primary.condo-btn-stateless:focus,
2171
+ .condo-btn-primary.condo-btn-stateless:hover,
2172
+ .condo-btn-primary.condo-btn-stateless:active {
2173
+ background: #222;
2174
+ }
2175
+ .condo-btn-primary.condo-btn-stateless:focus::before,
2176
+ .condo-btn-primary.condo-btn-stateless:hover::before,
2177
+ .condo-btn-primary.condo-btn-stateless:active::before {
2178
+ opacity: 0;
2179
+ }
2170
2180
  .condo-btn-primary.condo-btn-dangerous {
2171
2181
  background: #ff3b30;
2172
2182
  transition: background 0.15s ease-in-out;
@@ -2180,6 +2190,11 @@ a.condo-btn-sm {
2180
2190
  .condo-btn-primary.condo-btn-dangerous:active {
2181
2191
  background: #ff3b30;
2182
2192
  }
2193
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:focus,
2194
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:hover,
2195
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:active {
2196
+ background: #ff3b30;
2197
+ }
2183
2198
  .condo-btn-primary.condo-btn-dangerous::before {
2184
2199
  opacity: 0;
2185
2200
  }
@@ -2321,6 +2336,29 @@ a.condo-btn-sm {
2321
2336
  .condo-btn-secondary.condo-btn-dangerous:active::before {
2322
2337
  background: #ff3b30 border-box;
2323
2338
  }
2339
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-icon,
2340
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-icon,
2341
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-icon {
2342
+ color: #ff3b30;
2343
+ transition: color 0.15s ease-out;
2344
+ }
2345
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-icon svg,
2346
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-icon svg,
2347
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-icon svg {
2348
+ fill: currentcolor;
2349
+ }
2350
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-text,
2351
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-text,
2352
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-text {
2353
+ color: #ff3b30;
2354
+ transition: color 0.15s ease-out;
2355
+ }
2356
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless::before,
2357
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus::before,
2358
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover::before,
2359
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active::before {
2360
+ background: #ff3b30 border-box;
2361
+ }
2324
2362
  .condo-btn-secondary::before {
2325
2363
  position: absolute;
2326
2364
  top: -1px;
@@ -2354,7 +2392,46 @@ a.condo-btn-sm {
2354
2392
  background: linear-gradient(90deg, #4cd174 0%, #6db8f2 100%) border-box;
2355
2393
  opacity: 0.9;
2356
2394
  }
2357
- .condo-btn-secondary:disabled,
2395
+ .condo-btn-secondary:disabled {
2396
+ background: transparent;
2397
+ border: 1px solid #707695;
2398
+ opacity: 0.5;
2399
+ }
2400
+ .condo-btn-secondary:disabled > .condo-btn-icon {
2401
+ color: #222;
2402
+ transition: color 0.15s ease-out;
2403
+ }
2404
+ .condo-btn-secondary:disabled > .condo-btn-icon svg {
2405
+ fill: currentcolor;
2406
+ }
2407
+ .condo-btn-secondary:disabled > .condo-btn-text {
2408
+ color: #222;
2409
+ transition: color 0.15s ease-out;
2410
+ }
2411
+ .condo-btn-secondary:disabled > .condo-btn-text::before {
2412
+ opacity: 0;
2413
+ }
2414
+ .condo-btn-secondary:disabled::before {
2415
+ opacity: 0;
2416
+ }
2417
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous) > .condo-btn-icon {
2418
+ color: #222;
2419
+ transition: color 0.15s ease-out;
2420
+ }
2421
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous) > .condo-btn-icon svg {
2422
+ fill: currentcolor;
2423
+ }
2424
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous):hover {
2425
+ border: 1px solid #707695;
2426
+ }
2427
+ .condo-btn-secondary.condo-btn-stateless:hover::before,
2428
+ .condo-btn-secondary.condo-btn-stateless:active::before {
2429
+ opacity: 0;
2430
+ }
2431
+ .condo-btn-secondary.condo-btn-stateless:hover > .condo-btn-text::before,
2432
+ .condo-btn-secondary.condo-btn-stateless:active > .condo-btn-text::before {
2433
+ opacity: 0;
2434
+ }
2358
2435
  .condo-btn-secondary:disabled:hover,
2359
2436
  .condo-btn-secondary:disabled:active,
2360
2437
  .condo-btn-secondary:disabled:focus,
@@ -2366,7 +2443,6 @@ a.condo-btn-sm {
2366
2443
  border: 1px solid #707695;
2367
2444
  opacity: 0.5;
2368
2445
  }
2369
- .condo-btn-secondary:disabled > .condo-btn-icon,
2370
2446
  .condo-btn-secondary:disabled:hover > .condo-btn-icon,
2371
2447
  .condo-btn-secondary:disabled:active > .condo-btn-icon,
2372
2448
  .condo-btn-secondary:disabled:focus > .condo-btn-icon,
@@ -2377,46 +2453,684 @@ a.condo-btn-sm {
2377
2453
  color: #222;
2378
2454
  transition: color 0.15s ease-out;
2379
2455
  }
2380
- .condo-btn-secondary:disabled > .condo-btn-icon svg,
2381
- .condo-btn-secondary:disabled:hover > .condo-btn-icon svg,
2382
- .condo-btn-secondary:disabled:active > .condo-btn-icon svg,
2383
- .condo-btn-secondary:disabled:focus > .condo-btn-icon svg,
2384
- .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-icon svg,
2385
- .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-icon svg,
2386
- .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-icon svg,
2387
- .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-icon svg {
2388
- fill: currentcolor;
2456
+ .condo-btn-secondary:disabled:hover > .condo-btn-icon svg,
2457
+ .condo-btn-secondary:disabled:active > .condo-btn-icon svg,
2458
+ .condo-btn-secondary:disabled:focus > .condo-btn-icon svg,
2459
+ .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-icon svg,
2460
+ .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-icon svg,
2461
+ .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-icon svg,
2462
+ .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-icon svg {
2463
+ fill: currentcolor;
2464
+ }
2465
+ .condo-btn-secondary:disabled:hover > .condo-btn-text,
2466
+ .condo-btn-secondary:disabled:active > .condo-btn-text,
2467
+ .condo-btn-secondary:disabled:focus > .condo-btn-text,
2468
+ .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-text,
2469
+ .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-text,
2470
+ .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-text,
2471
+ .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text {
2472
+ color: #222;
2473
+ transition: color 0.15s ease-out;
2474
+ }
2475
+ .condo-btn-secondary:disabled:hover > .condo-btn-text::before,
2476
+ .condo-btn-secondary:disabled:active > .condo-btn-text::before,
2477
+ .condo-btn-secondary:disabled:focus > .condo-btn-text::before,
2478
+ .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-text::before,
2479
+ .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-text::before,
2480
+ .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-text::before,
2481
+ .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text::before {
2482
+ opacity: 0;
2483
+ }
2484
+ .condo-btn-secondary:disabled:hover::before,
2485
+ .condo-btn-secondary:disabled:active::before,
2486
+ .condo-btn-secondary:disabled:focus::before,
2487
+ .condo-btn-secondary.condo-btn-dangerous:disabled::before,
2488
+ .condo-btn-secondary.condo-btn-dangerous:disabled:hover::before,
2489
+ .condo-btn-secondary.condo-btn-dangerous:disabled:active::before,
2490
+ .condo-btn-secondary.condo-btn-dangerous:disabled:focus::before {
2491
+ opacity: 0;
2492
+ }
2493
+
2494
+ .condo-typography {
2495
+ color: #222;
2496
+ word-break: break-word;
2497
+ }
2498
+ .condo-typography,
2499
+ .condo-typography-large {
2500
+ margin: 0;
2501
+ font-weight: 400;
2502
+ font-size: 16px;
2503
+ font-family: "Open Sans", sans-serif;
2504
+ line-height: 24px;
2505
+ letter-spacing: -0.01em;
2506
+ }
2507
+ .condo-typography-medium {
2508
+ margin: 0;
2509
+ font-weight: 400;
2510
+ font-size: 14px;
2511
+ font-family: "Open Sans", sans-serif;
2512
+ line-height: 22px;
2513
+ letter-spacing: -0.01em;
2514
+ }
2515
+ .condo-typography-small {
2516
+ margin: 0;
2517
+ font-weight: 400;
2518
+ font-size: 12px;
2519
+ font-family: "Open Sans", sans-serif;
2520
+ line-height: 20px;
2521
+ letter-spacing: -0.01em;
2522
+ }
2523
+ .condo-typography-secondary {
2524
+ color: #707695;
2525
+ }
2526
+ .condo-typography-inverted {
2527
+ color: #fff;
2528
+ }
2529
+ .condo-typography-info {
2530
+ color: #2696f3;
2531
+ }
2532
+ .condo-typography-success {
2533
+ color: #39ce66;
2534
+ }
2535
+ .condo-typography-warning {
2536
+ color: #ff9500;
2537
+ }
2538
+ .condo-typography-danger {
2539
+ color: #ff3b30;
2540
+ }
2541
+ .condo-typography-disabled {
2542
+ cursor: not-allowed;
2543
+ opacity: 0.5;
2544
+ -webkit-user-select: none;
2545
+ -moz-user-select: none;
2546
+ -ms-user-select: none;
2547
+ user-select: none;
2548
+ }
2549
+ .condo-typography u,
2550
+ .condo-typography ins {
2551
+ text-decoration: underline;
2552
+ -webkit-text-decoration-skip: ink;
2553
+ text-decoration-skip-ink: auto;
2554
+ text-decoration-thickness: 1px;
2555
+ }
2556
+ .condo-typography s,
2557
+ .condo-typography del {
2558
+ text-decoration: line-through;
2559
+ text-decoration-thickness: 1px;
2560
+ }
2561
+ .condo-typography strong {
2562
+ font-weight: 600;
2563
+ }
2564
+ .condo-typography code {
2565
+ box-sizing: border-box;
2566
+ margin: 0 0.2em;
2567
+ padding: 0.25em 0.4em;
2568
+ font-size: 95%;
2569
+ font-family: "Noto Sans Mono", monospace;
2570
+ background: #f2f4f6;
2571
+ border: 1px solid #e1e5ed;
2572
+ border-radius: 4px;
2573
+ }
2574
+ div.condo-typography:not(:last-of-type),
2575
+ .condo-typography p:not(:last-of-type) {
2576
+ margin-bottom: 16px;
2577
+ }
2578
+ div.condo-typography:not(:last-of-type).condo-typography-medium,
2579
+ .condo-typography p:not(:last-of-type).condo-typography-medium {
2580
+ margin-bottom: 14px;
2581
+ }
2582
+ div.condo-typography:not(:last-of-type).condo-typography-small,
2583
+ .condo-typography p:not(:last-of-type).condo-typography-small {
2584
+ margin-bottom: 12px;
2585
+ }
2586
+ h1.condo-typography,
2587
+ div.condo-typography-h1,
2588
+ div.condo-typography-h1 > textarea,
2589
+ .condo-typography h1 {
2590
+ font-weight: 700;
2591
+ font-size: 38px;
2592
+ font-family: "Open Sans", sans-serif;
2593
+ line-height: 46px;
2594
+ letter-spacing: -0.01em;
2595
+ margin: 0;
2596
+ }
2597
+ h2.condo-typography,
2598
+ div.condo-typography-h2,
2599
+ div.condo-typography-h2 > textarea,
2600
+ .condo-typography h2 {
2601
+ font-weight: 700;
2602
+ font-size: 24px;
2603
+ font-family: "Open Sans", sans-serif;
2604
+ line-height: 32px;
2605
+ letter-spacing: -0.01em;
2606
+ margin: 0;
2607
+ }
2608
+ h3.condo-typography,
2609
+ div.condo-typography-h3,
2610
+ div.condo-typography-h3 > textarea,
2611
+ .condo-typography h3 {
2612
+ font-weight: 700;
2613
+ font-size: 20px;
2614
+ font-family: "Open Sans", sans-serif;
2615
+ line-height: 28px;
2616
+ letter-spacing: -0.01em;
2617
+ margin: 0;
2618
+ }
2619
+ h4.condo-typography,
2620
+ div.condo-typography-h4,
2621
+ div.condo-typography-h4 > textarea,
2622
+ .condo-typography h4 {
2623
+ font-weight: 600;
2624
+ font-size: 16px;
2625
+ font-family: "Open Sans", sans-serif;
2626
+ line-height: 24px;
2627
+ letter-spacing: -0.01em;
2628
+ margin: 0;
2629
+ }
2630
+ h5.condo-typography,
2631
+ div.condo-typography-h5,
2632
+ div.condo-typography-h5 > textarea,
2633
+ .condo-typography h5 {
2634
+ font-weight: 600;
2635
+ font-size: 14px;
2636
+ font-family: "Open Sans", sans-serif;
2637
+ line-height: 22px;
2638
+ letter-spacing: -0.01em;
2639
+ margin: 0;
2640
+ }
2641
+ h6.condo-typography,
2642
+ div.condo-typography-h6,
2643
+ div.condo-typography-h6 > textarea,
2644
+ .condo-typography h6 {
2645
+ font-weight: 600;
2646
+ font-size: 12px;
2647
+ font-family: "Open Sans", sans-serif;
2648
+ line-height: 20px;
2649
+ letter-spacing: -0.01em;
2650
+ margin: 0;
2651
+ }
2652
+ a.condo-typography-ellipsis,
2653
+ span.condo-typography-ellipsis {
2654
+ display: inline-block;
2655
+ max-width: 100%;
2656
+ }
2657
+ a.condo-typography,
2658
+ .condo-typography a {
2659
+ color: #222;
2660
+ text-decoration: underline;
2661
+ text-underline-offset: 0.2em;
2662
+ text-decoration-thickness: 1px;
2663
+ -webkit-text-decoration-color: #707695;
2664
+ text-decoration-color: #707695;
2665
+ outline: none;
2666
+ cursor: pointer;
2667
+ transition-duration: 0.15s;
2668
+ transition-property: color, -webkit-text-decoration-color;
2669
+ transition-property: color, text-decoration-color;
2670
+ transition-property: color, text-decoration-color, -webkit-text-decoration-color;
2671
+ }
2672
+ a.condo-typography.focus-visible,
2673
+ .condo-typography a.focus-visible,
2674
+ a.condo-typography:hover,
2675
+ .condo-typography a:hover {
2676
+ color: #39ce66;
2677
+ -webkit-text-decoration-color: #39ce66;
2678
+ text-decoration-color: #39ce66;
2679
+ }
2680
+ a.condo-typography:focus-visible,
2681
+ .condo-typography a:focus-visible,
2682
+ a.condo-typography:hover,
2683
+ .condo-typography a:hover {
2684
+ color: #39ce66;
2685
+ -webkit-text-decoration-color: #39ce66;
2686
+ text-decoration-color: #39ce66;
2687
+ }
2688
+ a.condo-typography:active,
2689
+ .condo-typography a:active {
2690
+ color: #39ce66;
2691
+ opacity: 0.8;
2692
+ -webkit-text-decoration-color: #39ce66;
2693
+ text-decoration-color: #39ce66;
2694
+ }
2695
+ a.condo-typography:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small),
2696
+ .condo-typography a:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small) {
2697
+ font-size: inherit;
2698
+ }
2699
+ a.condo-typography[disabled],
2700
+ .condo-typography a[disabled],
2701
+ a.condo-typography.condo-typography-disabled,
2702
+ .condo-typography a.condo-typography-disabled,
2703
+ a.condo-typography[disabled].focus-visible,
2704
+ .condo-typography a[disabled].focus-visible,
2705
+ a.condo-typography.condo-typography-disabled.focus-visible,
2706
+ .condo-typography a.condo-typography-disabled.focus-visible,
2707
+ a.condo-typography[disabled]:hover,
2708
+ .condo-typography a[disabled]:hover,
2709
+ a.condo-typography.condo-typography-disabled:hover,
2710
+ .condo-typography a.condo-typography-disabled:hover,
2711
+ a.condo-typography[disabled]:active,
2712
+ .condo-typography a[disabled]:active,
2713
+ a.condo-typography.condo-typography-disabled:active,
2714
+ .condo-typography a.condo-typography-disabled:active {
2715
+ color: #222;
2716
+ cursor: not-allowed;
2717
+ opacity: 0.5;
2718
+ pointer-events: none;
2719
+ }
2720
+ a.condo-typography[disabled],
2721
+ .condo-typography a[disabled],
2722
+ a.condo-typography.condo-typography-disabled,
2723
+ .condo-typography a.condo-typography-disabled,
2724
+ a.condo-typography[disabled].focus-visible,
2725
+ .condo-typography a[disabled].focus-visible,
2726
+ a.condo-typography.condo-typography-disabled.focus-visible,
2727
+ .condo-typography a.condo-typography-disabled.focus-visible,
2728
+ a.condo-typography[disabled]:hover,
2729
+ .condo-typography a[disabled]:hover,
2730
+ a.condo-typography.condo-typography-disabled:hover,
2731
+ .condo-typography a.condo-typography-disabled:hover,
2732
+ a.condo-typography[disabled]:active,
2733
+ .condo-typography a[disabled]:active,
2734
+ a.condo-typography.condo-typography-disabled:active,
2735
+ .condo-typography a.condo-typography-disabled:active {
2736
+ color: #222;
2737
+ cursor: not-allowed;
2738
+ opacity: 0.5;
2739
+ pointer-events: none;
2740
+ }
2741
+ a.condo-typography[disabled],
2742
+ .condo-typography a[disabled],
2743
+ a.condo-typography.condo-typography-disabled,
2744
+ .condo-typography a.condo-typography-disabled,
2745
+ a.condo-typography[disabled]:focus-visible,
2746
+ .condo-typography a[disabled]:focus-visible,
2747
+ a.condo-typography.condo-typography-disabled:focus-visible,
2748
+ .condo-typography a.condo-typography-disabled:focus-visible,
2749
+ a.condo-typography[disabled]:hover,
2750
+ .condo-typography a[disabled]:hover,
2751
+ a.condo-typography.condo-typography-disabled:hover,
2752
+ .condo-typography a.condo-typography-disabled:hover,
2753
+ a.condo-typography[disabled]:active,
2754
+ .condo-typography a[disabled]:active,
2755
+ a.condo-typography.condo-typography-disabled:active,
2756
+ .condo-typography a.condo-typography-disabled:active {
2757
+ color: #222;
2758
+ cursor: not-allowed;
2759
+ opacity: 0.5;
2760
+ pointer-events: none;
2761
+ }
2762
+ .condo-typography-single-line {
2763
+ white-space: nowrap;
2764
+ }
2765
+ .condo-typography-ellipsis-single-line {
2766
+ overflow: hidden;
2767
+ text-overflow: ellipsis;
2768
+ }
2769
+ a.condo-typography-ellipsis-single-line,
2770
+ span.condo-typography-ellipsis-single-line {
2771
+ vertical-align: bottom;
2772
+ }
2773
+ .condo-typography-ellipsis-multiple-line {
2774
+ /* stylelint-disable-next-line value-no-vendor-prefix */
2775
+ display: -webkit-box;
2776
+ overflow: hidden;
2777
+ -webkit-line-clamp: 3;
2778
+ /*! autoprefixer: ignore next */
2779
+ -webkit-box-orient: vertical;
2780
+ }
2781
+
2782
+ .condo-promo-block {
2783
+ display: flex;
2784
+ flex-direction: row;
2785
+ align-items: center;
2786
+ justify-content: flex-start;
2787
+ width: 100%;
2788
+ height: 320px;
2789
+ overflow: hidden;
2790
+ border-radius: 12px;
2791
+ cursor: pointer;
2792
+ }
2793
+ .condo-promo-block-image-container,
2794
+ .condo-promo-block-content-container {
2795
+ box-sizing: border-box;
2796
+ width: 50%;
2797
+ height: 100%;
2798
+ }
2799
+ .condo-promo-block-content-container {
2800
+ display: flex;
2801
+ flex-direction: column;
2802
+ align-items: flex-start;
2803
+ justify-content: space-between;
2804
+ padding: 60px 12px 60px 60px;
2805
+ }
2806
+ .condo-promo-block-content-container-md,
2807
+ .condo-promo-block-content-container-sm {
2808
+ padding: 52px 12px 52px 40px;
2809
+ }
2810
+ .condo-promo-block-content-container-xs {
2811
+ padding: 40px;
2812
+ }
2813
+ .condo-promo-block-content-container-xxs {
2814
+ padding: 40px 32px;
2815
+ }
2816
+ .condo-promo-block-no-image > .condo-promo-block-content-container {
2817
+ width: 100%;
2818
+ padding-right: 60px;
2819
+ }
2820
+ .condo-promo-block-no-image > .condo-promo-block-content-container-md,
2821
+ .condo-promo-block-no-image > .condo-promo-block-content-container-sm {
2822
+ padding-right: 52px;
2823
+ }
2824
+ .condo-promo-block-text-container > *:not(:last-child) {
2825
+ margin-bottom: 16px;
2826
+ }
2827
+ .condo-promo-block-image-container > img {
2828
+ width: 100%;
2829
+ height: 100%;
2830
+ -o-object-fit: cover;
2831
+ object-fit: cover;
2832
+ -o-object-position: right center;
2833
+ object-position: right center;
2834
+ -webkit-user-select: none;
2835
+ -moz-user-select: none;
2836
+ -ms-user-select: none;
2837
+ user-select: none;
2838
+ -webkit-user-drag: none;
2839
+ }
2840
+
2841
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2842
+ /* stylelint-disable no-duplicate-selectors */
2843
+ /* stylelint-disable */
2844
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
2845
+ .condo-card {
2846
+ box-sizing: border-box;
2847
+ margin: 0;
2848
+ padding: 0;
2849
+ color: rgba(0, 0, 0, 0.85);
2850
+ font-size: 14px;
2851
+ font-variant: tabular-nums;
2852
+ line-height: 1.5715;
2853
+ list-style: none;
2854
+ font-feature-settings: 'tnum', "tnum";
2855
+ position: relative;
2856
+ background: #fff;
2857
+ border-radius: 2px;
2858
+ }
2859
+ .condo-card-rtl {
2860
+ direction: rtl;
2861
+ }
2862
+ .condo-card-hoverable {
2863
+ cursor: pointer;
2864
+ transition: box-shadow 0.3s, border-color 0.3s;
2865
+ }
2866
+ .condo-card-hoverable:hover {
2867
+ border-color: transparent;
2868
+ box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
2869
+ }
2870
+ .condo-card-bordered {
2871
+ border: 1px solid #f0f0f0;
2872
+ }
2873
+ .condo-card-head {
2874
+ min-height: 48px;
2875
+ margin-bottom: -1px;
2876
+ padding: 0 24px;
2877
+ color: rgba(0, 0, 0, 0.85);
2878
+ font-weight: 500;
2879
+ font-size: 16px;
2880
+ background: transparent;
2881
+ border-bottom: 1px solid #f0f0f0;
2882
+ border-radius: 2px 2px 0 0;
2883
+ }
2884
+ .condo-card-head::before {
2885
+ display: table;
2886
+ content: '';
2887
+ }
2888
+ .condo-card-head::after {
2889
+ display: table;
2890
+ clear: both;
2891
+ content: '';
2892
+ }
2893
+ .condo-card-head-wrapper {
2894
+ display: flex;
2895
+ align-items: center;
2896
+ }
2897
+ .condo-card-head-title {
2898
+ display: inline-block;
2899
+ flex: 1;
2900
+ padding: 16px 0;
2901
+ overflow: hidden;
2902
+ white-space: nowrap;
2903
+ text-overflow: ellipsis;
2904
+ }
2905
+ .condo-card-head-title > .condo-typography,
2906
+ .condo-card-head-title > .condo-typography-edit-content {
2907
+ left: 0;
2908
+ margin-top: 0;
2909
+ margin-bottom: 0;
2910
+ }
2911
+ .condo-card-head .condo-tabs-top {
2912
+ clear: both;
2913
+ margin-bottom: -17px;
2914
+ color: rgba(0, 0, 0, 0.85);
2915
+ font-weight: normal;
2916
+ font-size: 14px;
2917
+ }
2918
+ .condo-card-head .condo-tabs-top-bar {
2919
+ border-bottom: 1px solid #f0f0f0;
2920
+ }
2921
+ .condo-card-extra {
2922
+ margin-left: auto;
2923
+ padding: 16px 0;
2924
+ color: rgba(0, 0, 0, 0.85);
2925
+ font-weight: normal;
2926
+ font-size: 14px;
2927
+ }
2928
+ .condo-card-rtl .condo-card-extra {
2929
+ margin-right: auto;
2930
+ margin-left: 0;
2931
+ }
2932
+ .condo-card-body {
2933
+ padding: 24px;
2934
+ }
2935
+ .condo-card-body::before {
2936
+ display: table;
2937
+ content: '';
2938
+ }
2939
+ .condo-card-body::after {
2940
+ display: table;
2941
+ clear: both;
2942
+ content: '';
2943
+ }
2944
+ .condo-card-contain-grid .condo-card-body {
2945
+ display: flex;
2946
+ flex-wrap: wrap;
2947
+ }
2948
+ .condo-card-contain-grid:not(.condo-card-loading) .condo-card-body {
2949
+ margin: -1px 0 0 -1px;
2950
+ padding: 0;
2951
+ }
2952
+ .condo-card-grid {
2953
+ width: 33.33%;
2954
+ padding: 24px;
2955
+ border: 0;
2956
+ border-radius: 0;
2957
+ box-shadow: 1px 0 0 0 #f0f0f0, 0 1px 0 0 #f0f0f0, 1px 1px 0 0 #f0f0f0, 1px 0 0 0 #f0f0f0 inset, 0 1px 0 0 #f0f0f0 inset;
2958
+ transition: all 0.3s;
2959
+ }
2960
+ .condo-card-grid-hoverable:hover {
2961
+ position: relative;
2962
+ z-index: 1;
2963
+ box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
2964
+ }
2965
+ .condo-card-contain-tabs > .condo-card-head .condo-card-head-title {
2966
+ min-height: 32px;
2967
+ padding-bottom: 0;
2968
+ }
2969
+ .condo-card-contain-tabs > .condo-card-head .condo-card-extra {
2970
+ padding-bottom: 0;
2971
+ }
2972
+ .condo-card-bordered .condo-card-cover {
2973
+ margin-top: -1px;
2974
+ margin-right: -1px;
2975
+ margin-left: -1px;
2976
+ }
2977
+ .condo-card-cover > * {
2978
+ display: block;
2979
+ width: 100%;
2980
+ }
2981
+ .condo-card-cover img {
2982
+ border-radius: 2px 2px 0 0;
2983
+ }
2984
+ .condo-card-actions {
2985
+ display: flex;
2986
+ margin: 0;
2987
+ padding: 0;
2988
+ list-style: none;
2989
+ background: #fff;
2990
+ border-top: 1px solid #f0f0f0;
2991
+ }
2992
+ .condo-card-actions::before {
2993
+ display: table;
2994
+ content: '';
2995
+ }
2996
+ .condo-card-actions::after {
2997
+ display: table;
2998
+ clear: both;
2999
+ content: '';
3000
+ }
3001
+ .condo-card-actions > li {
3002
+ margin: 12px 0;
3003
+ color: rgba(0, 0, 0, 0.45);
3004
+ text-align: center;
3005
+ }
3006
+ .condo-card-actions > li > span {
3007
+ position: relative;
3008
+ display: block;
3009
+ min-width: 32px;
3010
+ font-size: 14px;
3011
+ line-height: 1.5715;
3012
+ cursor: pointer;
3013
+ }
3014
+ .condo-card-actions > li > span:hover {
3015
+ color: #1890ff;
3016
+ transition: color 0.3s;
3017
+ }
3018
+ .condo-card-actions > li > span a:not(.condo-btn),
3019
+ .condo-card-actions > li > span > .anticon {
3020
+ display: inline-block;
3021
+ width: 100%;
3022
+ color: rgba(0, 0, 0, 0.45);
3023
+ line-height: 22px;
3024
+ transition: color 0.3s;
3025
+ }
3026
+ .condo-card-actions > li > span a:not(.condo-btn):hover,
3027
+ .condo-card-actions > li > span > .anticon:hover {
3028
+ color: #1890ff;
3029
+ }
3030
+ .condo-card-actions > li > span > .anticon {
3031
+ font-size: 16px;
3032
+ line-height: 22px;
3033
+ }
3034
+ .condo-card-actions > li:not(:last-child) {
3035
+ border-right: 1px solid #f0f0f0;
3036
+ }
3037
+ .condo-card-rtl .condo-card-actions > li:not(:last-child) {
3038
+ border-right: none;
3039
+ border-left: 1px solid #f0f0f0;
3040
+ }
3041
+ .condo-card-type-inner .condo-card-head {
3042
+ padding: 0 24px;
3043
+ background: #fafafa;
3044
+ }
3045
+ .condo-card-type-inner .condo-card-head-title {
3046
+ padding: 12px 0;
3047
+ font-size: 14px;
3048
+ }
3049
+ .condo-card-type-inner .condo-card-body {
3050
+ padding: 16px 24px;
3051
+ }
3052
+ .condo-card-type-inner .condo-card-extra {
3053
+ padding: 13.5px 0;
3054
+ }
3055
+ .condo-card-meta {
3056
+ display: flex;
3057
+ margin: -4px 0;
3058
+ }
3059
+ .condo-card-meta::before {
3060
+ display: table;
3061
+ content: '';
3062
+ }
3063
+ .condo-card-meta::after {
3064
+ display: table;
3065
+ clear: both;
3066
+ content: '';
3067
+ }
3068
+ .condo-card-meta-avatar {
3069
+ padding-right: 16px;
3070
+ }
3071
+ .condo-card-rtl .condo-card-meta-avatar {
3072
+ padding-right: 0;
3073
+ padding-left: 16px;
3074
+ }
3075
+ .condo-card-meta-detail {
3076
+ overflow: hidden;
3077
+ }
3078
+ .condo-card-meta-detail > div:not(:last-child) {
3079
+ margin-bottom: 8px;
3080
+ }
3081
+ .condo-card-meta-title {
3082
+ overflow: hidden;
3083
+ color: rgba(0, 0, 0, 0.85);
3084
+ font-weight: 500;
3085
+ font-size: 16px;
3086
+ white-space: nowrap;
3087
+ text-overflow: ellipsis;
3088
+ }
3089
+ .condo-card-meta-description {
3090
+ color: rgba(0, 0, 0, 0.45);
3091
+ }
3092
+ .condo-card-loading {
3093
+ overflow: hidden;
3094
+ }
3095
+ .condo-card-loading .condo-card-body {
3096
+ -webkit-user-select: none;
3097
+ -moz-user-select: none;
3098
+ -ms-user-select: none;
3099
+ user-select: none;
3100
+ }
3101
+ .condo-card-small > .condo-card-head {
3102
+ min-height: 36px;
3103
+ padding: 0 12px;
3104
+ font-size: 14px;
3105
+ }
3106
+ .condo-card-small > .condo-card-head > .condo-card-head-wrapper > .condo-card-head-title {
3107
+ padding: 8px 0;
3108
+ }
3109
+ .condo-card-small > .condo-card-head > .condo-card-head-wrapper > .condo-card-extra {
3110
+ padding: 8px 0;
3111
+ font-size: 14px;
2389
3112
  }
2390
- .condo-btn-secondary:disabled > .condo-btn-text,
2391
- .condo-btn-secondary:disabled:hover > .condo-btn-text,
2392
- .condo-btn-secondary:disabled:active > .condo-btn-text,
2393
- .condo-btn-secondary:disabled:focus > .condo-btn-text,
2394
- .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-text,
2395
- .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-text,
2396
- .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-text,
2397
- .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text {
2398
- color: #222;
2399
- transition: color 0.15s ease-out;
3113
+ .condo-card-small > .condo-card-body {
3114
+ padding: 12px;
2400
3115
  }
2401
- .condo-btn-secondary:disabled > .condo-btn-text::before,
2402
- .condo-btn-secondary:disabled:hover > .condo-btn-text::before,
2403
- .condo-btn-secondary:disabled:active > .condo-btn-text::before,
2404
- .condo-btn-secondary:disabled:focus > .condo-btn-text::before,
2405
- .condo-btn-secondary.condo-btn-dangerous:disabled > .condo-btn-text::before,
2406
- .condo-btn-secondary.condo-btn-dangerous:disabled:hover > .condo-btn-text::before,
2407
- .condo-btn-secondary.condo-btn-dangerous:disabled:active > .condo-btn-text::before,
2408
- .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text::before {
2409
- opacity: 0;
3116
+ .condo-card {
3117
+ border: 1px solid #e1e5ed;
3118
+ border-radius: 12px;
2410
3119
  }
2411
- .condo-btn-secondary:disabled::before,
2412
- .condo-btn-secondary:disabled:hover::before,
2413
- .condo-btn-secondary:disabled:active::before,
2414
- .condo-btn-secondary:disabled:focus::before,
2415
- .condo-btn-secondary.condo-btn-dangerous:disabled::before,
2416
- .condo-btn-secondary.condo-btn-dangerous:disabled:hover::before,
2417
- .condo-btn-secondary.condo-btn-dangerous:disabled:active::before,
2418
- .condo-btn-secondary.condo-btn-dangerous:disabled:focus::before {
2419
- opacity: 0;
3120
+ .condo-card-head {
3121
+ min-height: 0;
3122
+ padding: 24px;
3123
+ border-color: #e1e5ed;
3124
+ }
3125
+ .condo-card-head-title {
3126
+ padding: 0;
3127
+ }
3128
+ .condo-card-hoverable {
3129
+ transition-duration: 0.15s, 0.15s;
3130
+ transition-property: box-shadow, border-color;
3131
+ }
3132
+ .condo-card-hoverable:hover {
3133
+ box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
2420
3134
  }
2421
3135
 
2422
3136
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@@ -2775,273 +3489,75 @@ a.condo-btn-sm {
2775
3489
  overflow: hidden;
2776
3490
  }
2777
3491
 
2778
- .condo-typography {
2779
- color: #222;
2780
- word-break: break-word;
2781
- }
2782
- .condo-typography,
2783
- .condo-typography-large {
2784
- margin: 0;
2785
- font-weight: 400;
2786
- font-size: 16px;
2787
- font-family: "Open Sans", sans-serif;
2788
- line-height: 24px;
2789
- letter-spacing: -0.01em;
3492
+ .condo-markdown h1:not(:first-child),
3493
+ .condo-markdown h2:not(:first-child),
3494
+ .condo-markdown h3:not(:first-child),
3495
+ .condo-markdown h4:not(:first-child),
3496
+ .condo-markdown h5:not(:first-child),
3497
+ .condo-markdown h6:not(:first-child) {
3498
+ margin: 1.8em 0 0.6em;
2790
3499
  }
2791
- .condo-typography-medium {
2792
- margin: 0;
2793
- font-weight: 400;
2794
- font-size: 14px;
2795
- font-family: "Open Sans", sans-serif;
2796
- line-height: 22px;
2797
- letter-spacing: -0.01em;
3500
+ .condo-markdown img {
3501
+ max-width: 100%;
2798
3502
  }
2799
- .condo-typography-small {
2800
- margin: 0;
2801
- font-weight: 400;
2802
- font-size: 12px;
2803
- font-family: "Open Sans", sans-serif;
2804
- line-height: 20px;
2805
- letter-spacing: -0.01em;
3503
+ .condo-markdown pre code {
3504
+ display: block;
3505
+ margin: 0 0 16px;
2806
3506
  }
2807
- .condo-typography-secondary {
3507
+ .condo-markdown ul,
3508
+ .condo-markdown ol {
3509
+ margin-bottom: 1.8em;
3510
+ padding-left: 0.75em;
2808
3511
  color: #707695;
3512
+ list-style-position: inside;
2809
3513
  }
2810
- .condo-typography-inverted {
2811
- color: #fff;
2812
- }
2813
- .condo-typography-info {
2814
- color: #2696f3;
2815
- }
2816
- .condo-typography-success {
2817
- color: #39ce66;
2818
- }
2819
- .condo-typography-warning {
2820
- color: #ff9500;
2821
- }
2822
- .condo-typography-danger {
2823
- color: #ff3b30;
2824
- }
2825
- .condo-typography-disabled {
2826
- cursor: not-allowed;
2827
- opacity: 0.5;
2828
- -webkit-user-select: none;
2829
- -moz-user-select: none;
2830
- -ms-user-select: none;
2831
- user-select: none;
2832
- }
2833
- .condo-typography u,
2834
- .condo-typography ins {
2835
- text-decoration: underline;
2836
- -webkit-text-decoration-skip: ink;
2837
- text-decoration-skip-ink: auto;
2838
- text-decoration-thickness: 1px;
2839
- }
2840
- .condo-typography s,
2841
- .condo-typography del {
2842
- text-decoration: line-through;
2843
- text-decoration-thickness: 1px;
2844
- }
2845
- .condo-typography strong {
2846
- font-weight: 600;
2847
- }
2848
- .condo-typography code {
2849
- box-sizing: border-box;
2850
- margin: 0 0.2em;
2851
- padding: 0.25em 0.4em;
2852
- font-size: 95%;
2853
- font-family: "Noto Sans Mono", monospace;
2854
- background: #f2f4f6;
2855
- border: 1px solid #e1e5ed;
2856
- border-radius: 4px;
2857
- }
2858
- div.condo-typography:not(:last-of-type),
2859
- .condo-typography p:not(:last-of-type) {
2860
- margin-bottom: 16px;
2861
- }
2862
- div.condo-typography:not(:last-of-type).condo-typography-medium,
2863
- .condo-typography p:not(:last-of-type).condo-typography-medium {
2864
- margin-bottom: 14px;
2865
- }
2866
- div.condo-typography:not(:last-of-type).condo-typography-small,
2867
- .condo-typography p:not(:last-of-type).condo-typography-small {
2868
- margin-bottom: 12px;
2869
- }
2870
- h1.condo-typography,
2871
- div.condo-typography-h1,
2872
- div.condo-typography-h1 > textarea,
2873
- .condo-typography h1 {
2874
- font-weight: 700;
2875
- font-size: 38px;
2876
- font-family: "Open Sans", sans-serif;
2877
- line-height: 46px;
2878
- letter-spacing: -0.01em;
2879
- margin: 0;
2880
- }
2881
- h2.condo-typography,
2882
- div.condo-typography-h2,
2883
- div.condo-typography-h2 > textarea,
2884
- .condo-typography h2 {
2885
- font-weight: 700;
2886
- font-size: 24px;
2887
- font-family: "Open Sans", sans-serif;
2888
- line-height: 32px;
2889
- letter-spacing: -0.01em;
2890
- margin: 0;
2891
- }
2892
- h3.condo-typography,
2893
- div.condo-typography-h3,
2894
- div.condo-typography-h3 > textarea,
2895
- .condo-typography h3 {
2896
- font-weight: 700;
2897
- font-size: 20px;
2898
- font-family: "Open Sans", sans-serif;
2899
- line-height: 28px;
2900
- letter-spacing: -0.01em;
2901
- margin: 0;
2902
- }
2903
- h4.condo-typography,
2904
- div.condo-typography-h4,
2905
- div.condo-typography-h4 > textarea,
2906
- .condo-typography h4 {
2907
- font-weight: 600;
2908
- font-size: 16px;
2909
- font-family: "Open Sans", sans-serif;
2910
- line-height: 24px;
2911
- letter-spacing: -0.01em;
2912
- margin: 0;
2913
- }
2914
- h5.condo-typography,
2915
- div.condo-typography-h5,
2916
- div.condo-typography-h5 > textarea,
2917
- .condo-typography h5 {
2918
- font-weight: 600;
2919
- font-size: 14px;
2920
- font-family: "Open Sans", sans-serif;
2921
- line-height: 22px;
2922
- letter-spacing: -0.01em;
2923
- margin: 0;
2924
- }
2925
- h6.condo-typography,
2926
- div.condo-typography-h6,
2927
- div.condo-typography-h6 > textarea,
2928
- .condo-typography h6 {
2929
- font-weight: 600;
2930
- font-size: 12px;
2931
- font-family: "Open Sans", sans-serif;
2932
- line-height: 20px;
2933
- letter-spacing: -0.01em;
2934
- margin: 0;
2935
- }
2936
- a.condo-typography-ellipsis,
2937
- span.condo-typography-ellipsis {
2938
- display: inline-block;
2939
- max-width: 100%;
2940
- }
2941
- a.condo-typography,
2942
- .condo-typography a {
2943
- color: #222;
2944
- text-decoration: underline;
2945
- text-underline-offset: 0.2em;
2946
- text-decoration-thickness: 1px;
2947
- -webkit-text-decoration-color: #707695;
2948
- text-decoration-color: #707695;
2949
- outline: none;
2950
- cursor: pointer;
2951
- transition-duration: 0.15s;
2952
- transition-property: color, -webkit-text-decoration-color;
2953
- transition-property: color, text-decoration-color;
2954
- transition-property: color, text-decoration-color, -webkit-text-decoration-color;
3514
+ .condo-markdown ul.contains-task-list,
3515
+ .condo-markdown ol.contains-task-list {
3516
+ padding-left: 0;
2955
3517
  }
2956
- a.condo-typography.focus-visible,
2957
- .condo-typography a.focus-visible,
2958
- a.condo-typography:hover,
2959
- .condo-typography a:hover {
2960
- color: #39ce66;
2961
- -webkit-text-decoration-color: #39ce66;
2962
- text-decoration-color: #39ce66;
3518
+ .condo-markdown ul.contains-task-list > li,
3519
+ .condo-markdown ol.contains-task-list > li {
3520
+ list-style-type: none;
2963
3521
  }
2964
- a.condo-typography:focus-visible,
2965
- .condo-typography a:focus-visible,
2966
- a.condo-typography:hover,
2967
- .condo-typography a:hover {
2968
- color: #39ce66;
2969
- -webkit-text-decoration-color: #39ce66;
2970
- text-decoration-color: #39ce66;
3522
+ .condo-markdown ul ul,
3523
+ .condo-markdown ol ul,
3524
+ .condo-markdown ul ol,
3525
+ .condo-markdown ol ol {
3526
+ padding-left: 20px;
2971
3527
  }
2972
- a.condo-typography:active,
2973
- .condo-typography a:active {
2974
- color: #39ce66;
2975
- opacity: 0.8;
2976
- -webkit-text-decoration-color: #39ce66;
2977
- text-decoration-color: #39ce66;
3528
+ .condo-markdown ul > li:not(:last-child),
3529
+ .condo-markdown ol > li:not(:last-child),
3530
+ .condo-markdown ul > li ul:not(:last-child),
3531
+ .condo-markdown ol > li ul:not(:last-child),
3532
+ .condo-markdown ul > li ol:not(:last-child),
3533
+ .condo-markdown ol > li ol:not(:last-child) {
3534
+ margin-bottom: 0.5em;
2978
3535
  }
2979
- a.condo-typography:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small),
2980
- .condo-typography a:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small) {
2981
- font-size: inherit;
3536
+ .condo-markdown ul > li ul:first-child,
3537
+ .condo-markdown ol > li ul:first-child,
3538
+ .condo-markdown ul > li ol:first-child,
3539
+ .condo-markdown ol > li ol:first-child {
3540
+ margin-top: 0.5em;
2982
3541
  }
2983
- a.condo-typography[disabled],
2984
- .condo-typography a[disabled],
2985
- a.condo-typography.condo-typography-disabled,
2986
- .condo-typography a.condo-typography-disabled,
2987
- a.condo-typography[disabled].focus-visible,
2988
- .condo-typography a[disabled].focus-visible,
2989
- a.condo-typography.condo-typography-disabled.focus-visible,
2990
- .condo-typography a.condo-typography-disabled.focus-visible,
2991
- a.condo-typography[disabled]:hover,
2992
- .condo-typography a[disabled]:hover,
2993
- a.condo-typography.condo-typography-disabled:hover,
2994
- .condo-typography a.condo-typography-disabled:hover,
2995
- a.condo-typography[disabled]:active,
2996
- .condo-typography a[disabled]:active,
2997
- a.condo-typography.condo-typography-disabled:active,
2998
- .condo-typography a.condo-typography-disabled:active {
2999
- color: #222;
3000
- cursor: not-allowed;
3001
- opacity: 0.5;
3002
- pointer-events: none;
3542
+ .condo-markdown ul li::marker,
3543
+ .condo-markdown ol li::marker {
3544
+ margin: 0;
3545
+ font-weight: 400;
3546
+ font-size: 16px;
3547
+ font-family: "Open Sans", sans-serif;
3548
+ line-height: 24px;
3549
+ letter-spacing: -0.01em;
3003
3550
  }
3004
- a.condo-typography[disabled],
3005
- .condo-typography a[disabled],
3006
- a.condo-typography.condo-typography-disabled,
3007
- .condo-typography a.condo-typography-disabled,
3008
- a.condo-typography[disabled].focus-visible,
3009
- .condo-typography a[disabled].focus-visible,
3010
- a.condo-typography.condo-typography-disabled.focus-visible,
3011
- .condo-typography a.condo-typography-disabled.focus-visible,
3012
- a.condo-typography[disabled]:hover,
3013
- .condo-typography a[disabled]:hover,
3014
- a.condo-typography.condo-typography-disabled:hover,
3015
- .condo-typography a.condo-typography-disabled:hover,
3016
- a.condo-typography[disabled]:active,
3017
- .condo-typography a[disabled]:active,
3018
- a.condo-typography.condo-typography-disabled:active,
3019
- .condo-typography a.condo-typography-disabled:active {
3020
- color: #222;
3021
- cursor: not-allowed;
3022
- opacity: 0.5;
3023
- pointer-events: none;
3551
+ .condo-markdown blockquote {
3552
+ margin: 1em 0;
3553
+ padding-left: 1em;
3554
+ border-left: 0.25em solid #d0d3e5;
3024
3555
  }
3025
- a.condo-typography[disabled],
3026
- .condo-typography a[disabled],
3027
- a.condo-typography.condo-typography-disabled,
3028
- .condo-typography a.condo-typography-disabled,
3029
- a.condo-typography[disabled]:focus-visible,
3030
- .condo-typography a[disabled]:focus-visible,
3031
- a.condo-typography.condo-typography-disabled:focus-visible,
3032
- .condo-typography a.condo-typography-disabled:focus-visible,
3033
- a.condo-typography[disabled]:hover,
3034
- .condo-typography a[disabled]:hover,
3035
- a.condo-typography.condo-typography-disabled:hover,
3036
- .condo-typography a.condo-typography-disabled:hover,
3037
- a.condo-typography[disabled]:active,
3038
- .condo-typography a[disabled]:active,
3039
- a.condo-typography.condo-typography-disabled:active,
3040
- .condo-typography a.condo-typography-disabled:active {
3041
- color: #222;
3042
- cursor: not-allowed;
3043
- opacity: 0.5;
3044
- pointer-events: none;
3556
+ .condo-markdown blockquote > .condo-typography {
3557
+ padding: 0.5em 0;
3558
+ }
3559
+ .condo-markdown blockquote > blockquote:not(:first-child) {
3560
+ margin-top: 0.5em;
3045
3561
  }
3046
3562
 
3047
3563
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@@ -3360,74 +3876,262 @@ a.condo-typography.condo-typography-disabled:active,
3360
3876
  margin-left: 0;
3361
3877
  }
3362
3878
 
3363
- .condo-markdown h1:not(:first-child),
3364
- .condo-markdown h2:not(:first-child),
3365
- .condo-markdown h3:not(:first-child),
3366
- .condo-markdown h4:not(:first-child),
3367
- .condo-markdown h5:not(:first-child),
3368
- .condo-markdown h6:not(:first-child) {
3369
- margin: 1.8em 0 0.6em;
3879
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3880
+ /* stylelint-disable no-duplicate-selectors */
3881
+ /* stylelint-disable */
3882
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3883
+ .condo-tag {
3884
+ box-sizing: border-box;
3885
+ margin: 0;
3886
+ padding: 0;
3887
+ color: rgba(0, 0, 0, 0.85);
3888
+ font-size: 14px;
3889
+ font-variant: tabular-nums;
3890
+ line-height: 1.5715;
3891
+ list-style: none;
3892
+ font-feature-settings: 'tnum', "tnum";
3893
+ display: inline-block;
3894
+ height: auto;
3895
+ margin-right: 8px;
3896
+ padding: 0 7px;
3897
+ font-size: 12px;
3898
+ line-height: 20px;
3899
+ white-space: nowrap;
3900
+ background: #fafafa;
3901
+ border: 1px solid #d9d9d9;
3902
+ border-radius: 2px;
3903
+ opacity: 1;
3904
+ transition: all 0.3s;
3370
3905
  }
3371
- .condo-markdown img {
3372
- max-width: 100%;
3906
+ .condo-tag,
3907
+ .condo-tag a,
3908
+ .condo-tag a:hover {
3909
+ color: rgba(0, 0, 0, 0.85);
3373
3910
  }
3374
- .condo-markdown pre code {
3375
- display: block;
3376
- margin: 0 0 16px;
3911
+ .condo-tag > a:first-child:last-child {
3912
+ display: inline-block;
3913
+ margin: 0 -8px;
3914
+ padding: 0 8px;
3377
3915
  }
3378
- .condo-markdown ul,
3379
- .condo-markdown ol {
3380
- margin-bottom: 1.8em;
3381
- padding-left: 0.75em;
3382
- color: #707695;
3383
- list-style-position: inside;
3916
+ .condo-tag-close-icon {
3917
+ margin-left: 3px;
3918
+ color: rgba(0, 0, 0, 0.45);
3919
+ font-size: 10px;
3920
+ cursor: pointer;
3921
+ transition: all 0.3s;
3384
3922
  }
3385
- .condo-markdown ul.contains-task-list,
3386
- .condo-markdown ol.contains-task-list {
3387
- padding-left: 0;
3923
+ .condo-tag-close-icon:hover {
3924
+ color: rgba(0, 0, 0, 0.85);
3388
3925
  }
3389
- .condo-markdown ul.contains-task-list > li,
3390
- .condo-markdown ol.contains-task-list > li {
3391
- list-style-type: none;
3926
+ .condo-tag-has-color {
3927
+ border-color: transparent;
3392
3928
  }
3393
- .condo-markdown ul ul,
3394
- .condo-markdown ol ul,
3395
- .condo-markdown ul ol,
3396
- .condo-markdown ol ol {
3397
- padding-left: 20px;
3929
+ .condo-tag-has-color,
3930
+ .condo-tag-has-color a,
3931
+ .condo-tag-has-color a:hover,
3932
+ .condo-tag-has-color .anticon-close,
3933
+ .condo-tag-has-color .anticon-close:hover {
3934
+ color: #fff;
3398
3935
  }
3399
- .condo-markdown ul > li:not(:last-child),
3400
- .condo-markdown ol > li:not(:last-child),
3401
- .condo-markdown ul > li ul:not(:last-child),
3402
- .condo-markdown ol > li ul:not(:last-child),
3403
- .condo-markdown ul > li ol:not(:last-child),
3404
- .condo-markdown ol > li ol:not(:last-child) {
3405
- margin-bottom: 0.5em;
3936
+ .condo-tag-checkable {
3937
+ background-color: transparent;
3938
+ border-color: transparent;
3939
+ cursor: pointer;
3406
3940
  }
3407
- .condo-markdown ul > li ul:first-child,
3408
- .condo-markdown ol > li ul:first-child,
3409
- .condo-markdown ul > li ol:first-child,
3410
- .condo-markdown ol > li ol:first-child {
3411
- margin-top: 0.5em;
3941
+ .condo-tag-checkable:not(.condo-tag-checkable-checked):hover {
3942
+ color: #1890ff;
3412
3943
  }
3413
- .condo-markdown ul li::marker,
3414
- .condo-markdown ol li::marker {
3415
- margin: 0;
3416
- font-weight: 400;
3417
- font-size: 16px;
3418
- font-family: "Open Sans", sans-serif;
3419
- line-height: 24px;
3420
- letter-spacing: -0.01em;
3944
+ .condo-tag-checkable:active,
3945
+ .condo-tag-checkable-checked {
3946
+ color: #fff;
3421
3947
  }
3422
- .condo-markdown blockquote {
3423
- margin: 1em 0;
3424
- padding-left: 1em;
3425
- border-left: 0.25em solid #d0d3e5;
3948
+ .condo-tag-checkable-checked {
3949
+ background-color: #1890ff;
3426
3950
  }
3427
- .condo-markdown blockquote > .condo-typography {
3428
- padding: 0.5em 0;
3951
+ .condo-tag-checkable:active {
3952
+ background-color: #096dd9;
3429
3953
  }
3430
- .condo-markdown blockquote > blockquote:not(:first-child) {
3431
- margin-top: 0.5em;
3954
+ .condo-tag-hidden {
3955
+ display: none;
3956
+ }
3957
+ .condo-tag-pink {
3958
+ color: #c41d7f;
3959
+ background: #fff0f6;
3960
+ border-color: #ffadd2;
3961
+ }
3962
+ .condo-tag-pink-inverse {
3963
+ color: #fff;
3964
+ background: #eb2f96;
3965
+ border-color: #eb2f96;
3966
+ }
3967
+ .condo-tag-magenta {
3968
+ color: #c41d7f;
3969
+ background: #fff0f6;
3970
+ border-color: #ffadd2;
3971
+ }
3972
+ .condo-tag-magenta-inverse {
3973
+ color: #fff;
3974
+ background: #eb2f96;
3975
+ border-color: #eb2f96;
3976
+ }
3977
+ .condo-tag-red {
3978
+ color: #cf1322;
3979
+ background: #fff1f0;
3980
+ border-color: #ffa39e;
3981
+ }
3982
+ .condo-tag-red-inverse {
3983
+ color: #fff;
3984
+ background: #f5222d;
3985
+ border-color: #f5222d;
3986
+ }
3987
+ .condo-tag-volcano {
3988
+ color: #d4380d;
3989
+ background: #fff2e8;
3990
+ border-color: #ffbb96;
3991
+ }
3992
+ .condo-tag-volcano-inverse {
3993
+ color: #fff;
3994
+ background: #fa541c;
3995
+ border-color: #fa541c;
3996
+ }
3997
+ .condo-tag-orange {
3998
+ color: #d46b08;
3999
+ background: #fff7e6;
4000
+ border-color: #ffd591;
4001
+ }
4002
+ .condo-tag-orange-inverse {
4003
+ color: #fff;
4004
+ background: #fa8c16;
4005
+ border-color: #fa8c16;
4006
+ }
4007
+ .condo-tag-yellow {
4008
+ color: #d4b106;
4009
+ background: #feffe6;
4010
+ border-color: #fffb8f;
4011
+ }
4012
+ .condo-tag-yellow-inverse {
4013
+ color: #fff;
4014
+ background: #fadb14;
4015
+ border-color: #fadb14;
4016
+ }
4017
+ .condo-tag-gold {
4018
+ color: #d48806;
4019
+ background: #fffbe6;
4020
+ border-color: #ffe58f;
4021
+ }
4022
+ .condo-tag-gold-inverse {
4023
+ color: #fff;
4024
+ background: #faad14;
4025
+ border-color: #faad14;
4026
+ }
4027
+ .condo-tag-cyan {
4028
+ color: #08979c;
4029
+ background: #e6fffb;
4030
+ border-color: #87e8de;
4031
+ }
4032
+ .condo-tag-cyan-inverse {
4033
+ color: #fff;
4034
+ background: #13c2c2;
4035
+ border-color: #13c2c2;
4036
+ }
4037
+ .condo-tag-lime {
4038
+ color: #7cb305;
4039
+ background: #fcffe6;
4040
+ border-color: #eaff8f;
4041
+ }
4042
+ .condo-tag-lime-inverse {
4043
+ color: #fff;
4044
+ background: #a0d911;
4045
+ border-color: #a0d911;
4046
+ }
4047
+ .condo-tag-green {
4048
+ color: #389e0d;
4049
+ background: #f6ffed;
4050
+ border-color: #b7eb8f;
4051
+ }
4052
+ .condo-tag-green-inverse {
4053
+ color: #fff;
4054
+ background: #52c41a;
4055
+ border-color: #52c41a;
4056
+ }
4057
+ .condo-tag-blue {
4058
+ color: #096dd9;
4059
+ background: #e6f7ff;
4060
+ border-color: #91d5ff;
4061
+ }
4062
+ .condo-tag-blue-inverse {
4063
+ color: #fff;
4064
+ background: #1890ff;
4065
+ border-color: #1890ff;
4066
+ }
4067
+ .condo-tag-geekblue {
4068
+ color: #1d39c4;
4069
+ background: #f0f5ff;
4070
+ border-color: #adc6ff;
4071
+ }
4072
+ .condo-tag-geekblue-inverse {
4073
+ color: #fff;
4074
+ background: #2f54eb;
4075
+ border-color: #2f54eb;
4076
+ }
4077
+ .condo-tag-purple {
4078
+ color: #531dab;
4079
+ background: #f9f0ff;
4080
+ border-color: #d3adf7;
4081
+ }
4082
+ .condo-tag-purple-inverse {
4083
+ color: #fff;
4084
+ background: #722ed1;
4085
+ border-color: #722ed1;
4086
+ }
4087
+ .condo-tag-success {
4088
+ color: #52c41a;
4089
+ background: #f6ffed;
4090
+ border-color: #b7eb8f;
4091
+ }
4092
+ .condo-tag-processing {
4093
+ color: #1890ff;
4094
+ background: #e6f7ff;
4095
+ border-color: #91d5ff;
4096
+ }
4097
+ .condo-tag-error {
4098
+ color: #ff4d4f;
4099
+ background: #fff2f0;
4100
+ border-color: #ffccc7;
4101
+ }
4102
+ .condo-tag-warning {
4103
+ color: #faad14;
4104
+ background: #fffbe6;
4105
+ border-color: #ffe58f;
4106
+ }
4107
+ .condo-tag > .anticon + span,
4108
+ .condo-tag > span + .anticon {
4109
+ margin-left: 7px;
4110
+ }
4111
+ .condo-tag.condo-tag-rtl {
4112
+ margin-right: 0;
4113
+ margin-left: 8px;
4114
+ direction: rtl;
4115
+ text-align: right;
4116
+ }
4117
+ .condo-tag-rtl .condo-tag-close-icon {
4118
+ margin-right: 3px;
4119
+ margin-left: 0;
4120
+ }
4121
+ .condo-tag-rtl.condo-tag > .anticon + span,
4122
+ .condo-tag-rtl.condo-tag > span + .anticon {
4123
+ margin-right: 7px;
4124
+ margin-left: 0;
4125
+ }
4126
+ .condo-tag {
4127
+ font-weight: 600;
4128
+ font-size: 12px;
4129
+ font-family: "Open Sans", sans-serif;
4130
+ line-height: 20px;
4131
+ letter-spacing: -0.01em;
4132
+ margin: 0;
4133
+ padding: 0.17em 0.83em;
4134
+ border: none;
4135
+ border-radius: 12px;
3432
4136
  }
3433
4137