@open-condo/ui 1.4.0 → 1.6.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,7 +2453,6 @@ 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
2456
  .condo-btn-secondary:disabled:hover > .condo-btn-icon svg,
2382
2457
  .condo-btn-secondary:disabled:active > .condo-btn-icon svg,
2383
2458
  .condo-btn-secondary:disabled:focus > .condo-btn-icon svg,
@@ -2387,7 +2462,6 @@ a.condo-btn-sm {
2387
2462
  .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-icon svg {
2388
2463
  fill: currentcolor;
2389
2464
  }
2390
- .condo-btn-secondary:disabled > .condo-btn-text,
2391
2465
  .condo-btn-secondary:disabled:hover > .condo-btn-text,
2392
2466
  .condo-btn-secondary:disabled:active > .condo-btn-text,
2393
2467
  .condo-btn-secondary:disabled:focus > .condo-btn-text,
@@ -2398,7 +2472,6 @@ a.condo-btn-sm {
2398
2472
  color: #222;
2399
2473
  transition: color 0.15s ease-out;
2400
2474
  }
2401
- .condo-btn-secondary:disabled > .condo-btn-text::before,
2402
2475
  .condo-btn-secondary:disabled:hover > .condo-btn-text::before,
2403
2476
  .condo-btn-secondary:disabled:active > .condo-btn-text::before,
2404
2477
  .condo-btn-secondary:disabled:focus > .condo-btn-text::before,
@@ -2408,7 +2481,6 @@ a.condo-btn-sm {
2408
2481
  .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text::before {
2409
2482
  opacity: 0;
2410
2483
  }
2411
- .condo-btn-secondary:disabled::before,
2412
2484
  .condo-btn-secondary:disabled:hover::before,
2413
2485
  .condo-btn-secondary:disabled:active::before,
2414
2486
  .condo-btn-secondary:disabled:focus::before,
@@ -2419,111 +2491,458 @@ a.condo-btn-sm {
2419
2491
  opacity: 0;
2420
2492
  }
2421
2493
 
2422
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2423
- /* stylelint-disable no-duplicate-selectors */
2424
- /* stylelint-disable */
2425
- /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
2426
- .condo-carousel {
2427
- box-sizing: border-box;
2494
+ .condo-typography {
2495
+ color: #222;
2496
+ word-break: break-word;
2497
+ }
2498
+ .condo-typography,
2499
+ .condo-typography-large {
2428
2500
  margin: 0;
2429
- padding: 0;
2430
- color: rgba(0, 0, 0, 0.85);
2431
- font-size: 14px;
2432
- font-variant: tabular-nums;
2433
- line-height: 1.5715;
2434
- list-style: none;
2435
- font-feature-settings: 'tnum', "tnum";
2501
+ font-weight: 400;
2502
+ font-size: 16px;
2503
+ font-family: "Open Sans", sans-serif;
2504
+ line-height: 24px;
2505
+ letter-spacing: -0.01em;
2436
2506
  }
2437
- .condo-carousel .slick-slider {
2438
- position: relative;
2439
- display: block;
2440
- box-sizing: border-box;
2441
- touch-action: pan-y;
2442
- -webkit-touch-callout: none;
2443
- -webkit-tap-highlight-color: transparent;
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;
2444
2514
  }
2445
- .condo-carousel .slick-list {
2446
- position: relative;
2447
- display: block;
2515
+ .condo-typography-small {
2448
2516
  margin: 0;
2449
- padding: 0;
2450
- overflow: hidden;
2517
+ font-weight: 400;
2518
+ font-size: 12px;
2519
+ font-family: "Open Sans", sans-serif;
2520
+ line-height: 20px;
2521
+ letter-spacing: -0.01em;
2451
2522
  }
2452
- .condo-carousel .slick-list:focus {
2453
- outline: none;
2523
+ .condo-typography-secondary {
2524
+ color: #707695;
2454
2525
  }
2455
- .condo-carousel .slick-list.dragging {
2456
- cursor: pointer;
2526
+ .condo-typography-inverted {
2527
+ color: #fff;
2457
2528
  }
2458
- .condo-carousel .slick-list .slick-slide {
2459
- pointer-events: none;
2529
+ .condo-typography-info {
2530
+ color: #2696f3;
2460
2531
  }
2461
- .condo-carousel .slick-list .slick-slide input.condo-radio-input,
2462
- .condo-carousel .slick-list .slick-slide input.condo-checkbox-input {
2463
- visibility: hidden;
2532
+ .condo-typography-success {
2533
+ color: #39ce66;
2464
2534
  }
2465
- .condo-carousel .slick-list .slick-slide.slick-active {
2466
- pointer-events: auto;
2535
+ .condo-typography-warning {
2536
+ color: #ff9500;
2467
2537
  }
2468
- .condo-carousel .slick-list .slick-slide.slick-active input.condo-radio-input,
2469
- .condo-carousel .slick-list .slick-slide.slick-active input.condo-checkbox-input {
2470
- visibility: visible;
2538
+ .condo-typography-danger {
2539
+ color: #ff3b30;
2471
2540
  }
2472
- .condo-carousel .slick-list .slick-slide > div > div {
2473
- vertical-align: bottom;
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;
2474
2548
  }
2475
- .condo-carousel .slick-slider .slick-track,
2476
- .condo-carousel .slick-slider .slick-list {
2477
- transform: translate3d(0, 0, 0);
2478
- touch-action: pan-y;
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;
2479
2555
  }
2480
- .condo-carousel .slick-track {
2481
- position: relative;
2482
- top: 0;
2483
- left: 0;
2484
- display: block;
2556
+ .condo-typography s,
2557
+ .condo-typography del {
2558
+ text-decoration: line-through;
2559
+ text-decoration-thickness: 1px;
2485
2560
  }
2486
- .condo-carousel .slick-track::before,
2487
- .condo-carousel .slick-track::after {
2488
- display: table;
2489
- content: '';
2561
+ .condo-typography strong {
2562
+ font-weight: 600;
2490
2563
  }
2491
- .condo-carousel .slick-track::after {
2492
- clear: both;
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;
2493
2573
  }
2494
- .slick-loading .condo-carousel .slick-track {
2495
- visibility: hidden;
2574
+ div.condo-typography:not(:last-of-type),
2575
+ .condo-typography p:not(:last-of-type) {
2576
+ margin-bottom: 16px;
2496
2577
  }
2497
- .condo-carousel .slick-slide {
2498
- display: none;
2499
- float: left;
2500
- height: 100%;
2501
- min-height: 1px;
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;
2502
2581
  }
2503
- .condo-carousel .slick-slide img {
2504
- display: block;
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;
2505
2585
  }
2506
- .condo-carousel .slick-slide.slick-loading img {
2507
- display: none;
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;
2508
2596
  }
2509
- .condo-carousel .slick-slide.dragging img {
2510
- pointer-events: none;
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;
2511
2607
  }
2512
- .condo-carousel .slick-initialized .slick-slide {
2513
- display: block;
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;
2514
2618
  }
2515
- .condo-carousel .slick-loading .slick-slide {
2516
- visibility: hidden;
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;
2517
2629
  }
2518
- .condo-carousel .slick-vertical .slick-slide {
2519
- display: block;
2520
- height: auto;
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;
2521
2640
  }
2522
- .condo-carousel .slick-arrow.slick-hidden {
2523
- display: none;
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;
2524
2651
  }
2525
- .condo-carousel .slick-prev,
2526
- .condo-carousel .slick-next {
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-carousel {
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
+ }
2856
+ .condo-carousel .slick-slider {
2857
+ position: relative;
2858
+ display: block;
2859
+ box-sizing: border-box;
2860
+ touch-action: pan-y;
2861
+ -webkit-touch-callout: none;
2862
+ -webkit-tap-highlight-color: transparent;
2863
+ }
2864
+ .condo-carousel .slick-list {
2865
+ position: relative;
2866
+ display: block;
2867
+ margin: 0;
2868
+ padding: 0;
2869
+ overflow: hidden;
2870
+ }
2871
+ .condo-carousel .slick-list:focus {
2872
+ outline: none;
2873
+ }
2874
+ .condo-carousel .slick-list.dragging {
2875
+ cursor: pointer;
2876
+ }
2877
+ .condo-carousel .slick-list .slick-slide {
2878
+ pointer-events: none;
2879
+ }
2880
+ .condo-carousel .slick-list .slick-slide input.condo-radio-input,
2881
+ .condo-carousel .slick-list .slick-slide input.condo-checkbox-input {
2882
+ visibility: hidden;
2883
+ }
2884
+ .condo-carousel .slick-list .slick-slide.slick-active {
2885
+ pointer-events: auto;
2886
+ }
2887
+ .condo-carousel .slick-list .slick-slide.slick-active input.condo-radio-input,
2888
+ .condo-carousel .slick-list .slick-slide.slick-active input.condo-checkbox-input {
2889
+ visibility: visible;
2890
+ }
2891
+ .condo-carousel .slick-list .slick-slide > div > div {
2892
+ vertical-align: bottom;
2893
+ }
2894
+ .condo-carousel .slick-slider .slick-track,
2895
+ .condo-carousel .slick-slider .slick-list {
2896
+ transform: translate3d(0, 0, 0);
2897
+ touch-action: pan-y;
2898
+ }
2899
+ .condo-carousel .slick-track {
2900
+ position: relative;
2901
+ top: 0;
2902
+ left: 0;
2903
+ display: block;
2904
+ }
2905
+ .condo-carousel .slick-track::before,
2906
+ .condo-carousel .slick-track::after {
2907
+ display: table;
2908
+ content: '';
2909
+ }
2910
+ .condo-carousel .slick-track::after {
2911
+ clear: both;
2912
+ }
2913
+ .slick-loading .condo-carousel .slick-track {
2914
+ visibility: hidden;
2915
+ }
2916
+ .condo-carousel .slick-slide {
2917
+ display: none;
2918
+ float: left;
2919
+ height: 100%;
2920
+ min-height: 1px;
2921
+ }
2922
+ .condo-carousel .slick-slide img {
2923
+ display: block;
2924
+ }
2925
+ .condo-carousel .slick-slide.slick-loading img {
2926
+ display: none;
2927
+ }
2928
+ .condo-carousel .slick-slide.dragging img {
2929
+ pointer-events: none;
2930
+ }
2931
+ .condo-carousel .slick-initialized .slick-slide {
2932
+ display: block;
2933
+ }
2934
+ .condo-carousel .slick-loading .slick-slide {
2935
+ visibility: hidden;
2936
+ }
2937
+ .condo-carousel .slick-vertical .slick-slide {
2938
+ display: block;
2939
+ height: auto;
2940
+ }
2941
+ .condo-carousel .slick-arrow.slick-hidden {
2942
+ display: none;
2943
+ }
2944
+ .condo-carousel .slick-prev,
2945
+ .condo-carousel .slick-next {
2527
2946
  position: absolute;
2528
2947
  top: 50%;
2529
2948
  display: block;
@@ -2775,275 +3194,6 @@ a.condo-btn-sm {
2775
3194
  overflow: hidden;
2776
3195
  }
2777
3196
 
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;
2790
- }
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;
2798
- }
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;
2806
- }
2807
- .condo-typography-secondary {
2808
- color: #707695;
2809
- }
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;
2955
- }
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;
2963
- }
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;
2971
- }
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;
2978
- }
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;
2982
- }
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;
3003
- }
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;
3024
- }
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;
3045
- }
3046
-
3047
3197
  .condo-markdown h1:not(:first-child),
3048
3198
  .condo-markdown h2:not(:first-child),
3049
3199
  .condo-markdown h3:not(:first-child),
@@ -3115,3 +3265,319 @@ a.condo-typography.condo-typography-disabled:active,
3115
3265
  margin-top: 0.5em;
3116
3266
  }
3117
3267
 
3268
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3269
+ /* stylelint-disable no-duplicate-selectors */
3270
+ /* stylelint-disable */
3271
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3272
+ .condo-modal {
3273
+ box-sizing: border-box;
3274
+ margin: 0;
3275
+ padding: 0;
3276
+ color: rgba(0, 0, 0, 0.85);
3277
+ font-size: 14px;
3278
+ font-variant: tabular-nums;
3279
+ line-height: 1.5715;
3280
+ list-style: none;
3281
+ font-feature-settings: 'tnum', "tnum";
3282
+ pointer-events: none;
3283
+ position: relative;
3284
+ top: 100px;
3285
+ width: auto;
3286
+ max-width: calc(100vw - 32px);
3287
+ margin: 0 auto;
3288
+ padding-bottom: 24px;
3289
+ }
3290
+ .condo-modal.condo-zoom-enter,
3291
+ .condo-modal.condo-zoom-appear {
3292
+ transform: none;
3293
+ opacity: 0;
3294
+ -webkit-animation-duration: 0.3s;
3295
+ animation-duration: 0.3s;
3296
+ -webkit-user-select: none;
3297
+ -moz-user-select: none;
3298
+ -ms-user-select: none;
3299
+ user-select: none;
3300
+ }
3301
+ .condo-modal-mask {
3302
+ position: fixed;
3303
+ top: 0;
3304
+ right: 0;
3305
+ bottom: 0;
3306
+ left: 0;
3307
+ z-index: 1000;
3308
+ height: 100%;
3309
+ background-color: rgba(0, 0, 0, 0.45);
3310
+ }
3311
+ .condo-modal-mask-hidden {
3312
+ display: none;
3313
+ }
3314
+ .condo-modal-wrap {
3315
+ position: fixed;
3316
+ top: 0;
3317
+ right: 0;
3318
+ bottom: 0;
3319
+ left: 0;
3320
+ overflow: auto;
3321
+ outline: 0;
3322
+ }
3323
+ .condo-modal-wrap {
3324
+ z-index: 1000;
3325
+ }
3326
+ .condo-modal-title {
3327
+ margin: 0;
3328
+ color: rgba(0, 0, 0, 0.85);
3329
+ font-weight: 500;
3330
+ font-size: 16px;
3331
+ line-height: 22px;
3332
+ word-wrap: break-word;
3333
+ }
3334
+ .condo-modal-content {
3335
+ position: relative;
3336
+ background-color: #fff;
3337
+ background-clip: padding-box;
3338
+ border: 0;
3339
+ border-radius: 2px;
3340
+ 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);
3341
+ pointer-events: auto;
3342
+ }
3343
+ .condo-modal-close {
3344
+ position: absolute;
3345
+ top: 0;
3346
+ right: 0;
3347
+ z-index: 10;
3348
+ padding: 0;
3349
+ color: rgba(0, 0, 0, 0.45);
3350
+ font-weight: 700;
3351
+ line-height: 1;
3352
+ text-decoration: none;
3353
+ background: transparent;
3354
+ border: 0;
3355
+ outline: 0;
3356
+ cursor: pointer;
3357
+ transition: color 0.3s;
3358
+ }
3359
+ .condo-modal-close-x {
3360
+ display: block;
3361
+ width: 54px;
3362
+ height: 54px;
3363
+ font-size: 16px;
3364
+ font-style: normal;
3365
+ line-height: 54px;
3366
+ text-align: center;
3367
+ text-transform: none;
3368
+ text-rendering: auto;
3369
+ }
3370
+ .condo-modal-close:focus,
3371
+ .condo-modal-close:hover {
3372
+ color: rgba(0, 0, 0, 0.75);
3373
+ text-decoration: none;
3374
+ }
3375
+ .condo-modal-header {
3376
+ padding: 16px 24px;
3377
+ color: rgba(0, 0, 0, 0.85);
3378
+ background: #fff;
3379
+ border-bottom: 1px solid #f0f0f0;
3380
+ border-radius: 2px 2px 0 0;
3381
+ }
3382
+ .condo-modal-body {
3383
+ padding: 24px;
3384
+ font-size: 14px;
3385
+ line-height: 1.5715;
3386
+ word-wrap: break-word;
3387
+ }
3388
+ .condo-modal-footer {
3389
+ padding: 10px 16px;
3390
+ text-align: right;
3391
+ background: transparent;
3392
+ border-top: 1px solid #f0f0f0;
3393
+ border-radius: 0 0 2px 2px;
3394
+ }
3395
+ .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger) {
3396
+ margin-bottom: 0;
3397
+ margin-left: 8px;
3398
+ }
3399
+ .condo-modal-open {
3400
+ overflow: hidden;
3401
+ }
3402
+ .condo-modal-centered {
3403
+ text-align: center;
3404
+ }
3405
+ .condo-modal-centered::before {
3406
+ display: inline-block;
3407
+ width: 0;
3408
+ height: 100%;
3409
+ vertical-align: middle;
3410
+ content: '';
3411
+ }
3412
+ .condo-modal-centered .condo-modal {
3413
+ top: 0;
3414
+ display: inline-block;
3415
+ padding-bottom: 0;
3416
+ text-align: left;
3417
+ vertical-align: middle;
3418
+ }
3419
+ @media (max-width: 767px) {
3420
+ .condo-modal {
3421
+ max-width: calc(100vw - 16px);
3422
+ margin: 8px auto;
3423
+ }
3424
+ .condo-modal-centered .condo-modal {
3425
+ flex: 1;
3426
+ }
3427
+ }
3428
+ .condo-modal-confirm .condo-modal-header {
3429
+ display: none;
3430
+ }
3431
+ .condo-modal-confirm .condo-modal-body {
3432
+ padding: 32px 32px 24px;
3433
+ }
3434
+ .condo-modal-confirm-body-wrapper::before {
3435
+ display: table;
3436
+ content: '';
3437
+ }
3438
+ .condo-modal-confirm-body-wrapper::after {
3439
+ display: table;
3440
+ clear: both;
3441
+ content: '';
3442
+ }
3443
+ .condo-modal-confirm-body .condo-modal-confirm-title {
3444
+ display: block;
3445
+ overflow: hidden;
3446
+ color: rgba(0, 0, 0, 0.85);
3447
+ font-weight: 500;
3448
+ font-size: 16px;
3449
+ line-height: 1.4;
3450
+ }
3451
+ .condo-modal-confirm-body .condo-modal-confirm-content {
3452
+ margin-top: 8px;
3453
+ color: rgba(0, 0, 0, 0.85);
3454
+ font-size: 14px;
3455
+ }
3456
+ .condo-modal-confirm-body > .anticon {
3457
+ float: left;
3458
+ margin-right: 16px;
3459
+ font-size: 22px;
3460
+ }
3461
+ .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
3462
+ margin-left: 38px;
3463
+ }
3464
+ .condo-modal-confirm .condo-modal-confirm-btns {
3465
+ margin-top: 24px;
3466
+ text-align: right;
3467
+ }
3468
+ .condo-modal-confirm .condo-modal-confirm-btns .condo-btn + .condo-btn {
3469
+ margin-bottom: 0;
3470
+ margin-left: 8px;
3471
+ }
3472
+ .condo-modal-confirm-error .condo-modal-confirm-body > .anticon {
3473
+ color: #ff4d4f;
3474
+ }
3475
+ .condo-modal-confirm-warning .condo-modal-confirm-body > .anticon,
3476
+ .condo-modal-confirm-confirm .condo-modal-confirm-body > .anticon {
3477
+ color: #faad14;
3478
+ }
3479
+ .condo-modal-confirm-info .condo-modal-confirm-body > .anticon {
3480
+ color: #1890ff;
3481
+ }
3482
+ .condo-modal-confirm-success .condo-modal-confirm-body > .anticon {
3483
+ color: #52c41a;
3484
+ }
3485
+ .condo-modal-confirm .condo-zoom-leave .condo-modal-confirm-btns {
3486
+ pointer-events: none;
3487
+ }
3488
+ .condo-modal-wrap-rtl {
3489
+ direction: rtl;
3490
+ }
3491
+ .condo-modal-wrap-rtl .condo-modal-close {
3492
+ right: auto;
3493
+ right: initial;
3494
+ left: 0;
3495
+ }
3496
+ .condo-modal-wrap-rtl .condo-modal-footer {
3497
+ text-align: left;
3498
+ }
3499
+ .condo-modal-wrap-rtl .condo-modal-footer .condo-btn + .condo-btn {
3500
+ margin-right: 8px;
3501
+ margin-left: 0;
3502
+ }
3503
+ .condo-modal-wrap-rtl .condo-modal-confirm-body {
3504
+ direction: rtl;
3505
+ }
3506
+ .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon {
3507
+ float: right;
3508
+ margin-right: 0;
3509
+ margin-left: 16px;
3510
+ }
3511
+ .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
3512
+ margin-right: 38px;
3513
+ margin-left: 0;
3514
+ }
3515
+ .condo-modal-wrap-rtl .condo-modal-confirm-btns {
3516
+ text-align: left;
3517
+ }
3518
+ .condo-modal-wrap-rtl .condo-modal-confirm-btns .condo-btn + .condo-btn {
3519
+ margin-right: 8px;
3520
+ margin-left: 0;
3521
+ }
3522
+ .condo-modal-wrap-rtl.condo-modal-centered .condo-modal {
3523
+ text-align: right;
3524
+ }
3525
+ .condo-modal-root .condo-modal-mask {
3526
+ background-color: #707695;
3527
+ opacity: 0.5;
3528
+ }
3529
+ .condo-modal-root .condo-modal {
3530
+ max-width: calc(100vw - 40px * 2);
3531
+ margin: 40px 0;
3532
+ }
3533
+ .condo-modal-root .condo-modal .condo-modal-header {
3534
+ flex-shrink: 0;
3535
+ padding: 40px 104px 19px 40px;
3536
+ border-bottom: 1px solid transparent;
3537
+ transition: border-bottom-color 0.15s;
3538
+ }
3539
+ .condo-modal-root .condo-modal.condo-modal-scrolling .condo-modal-header {
3540
+ border-bottom-color: #e1e5ed;
3541
+ }
3542
+ .condo-modal-root .condo-modal .condo-modal-close {
3543
+ top: 42px;
3544
+ right: 40px;
3545
+ }
3546
+ .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x {
3547
+ display: flex;
3548
+ align-items: center;
3549
+ justify-content: center;
3550
+ width: 24px;
3551
+ height: 24px;
3552
+ line-height: 24px;
3553
+ }
3554
+ .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x div {
3555
+ width: 24px;
3556
+ height: 24px;
3557
+ }
3558
+ .condo-modal-root .condo-modal .condo-modal-content {
3559
+ display: flex;
3560
+ flex-direction: column;
3561
+ max-height: calc(100vh - (40px * 2));
3562
+ padding: 0;
3563
+ overflow: hidden;
3564
+ border-radius: 12px;
3565
+ }
3566
+ .condo-modal-root .condo-modal .condo-modal-body {
3567
+ margin: 0 40px;
3568
+ padding: 20px 0 40px;
3569
+ overflow: auto;
3570
+ }
3571
+ .condo-modal-root .condo-modal .condo-modal-body .condo-modal-wrapper {
3572
+ width: -webkit-fit-content;
3573
+ width: -moz-fit-content;
3574
+ width: fit-content;
3575
+ }
3576
+ .condo-modal-root .condo-modal .condo-modal-footer {
3577
+ padding: 19px 40px 20px;
3578
+ border-top: 1px solid #e1e5ed;
3579
+ }
3580
+ .condo-modal-root .condo-modal .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger):not(:first-child) {
3581
+ margin-left: 0;
3582
+ }
3583
+