@open-condo/ui 2.10.1 → 2.12.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/components/Modal/useModal.d.ts.map +1 -1
- package/dist/components/Select/select.d.ts +1 -1
- package/dist/components/Select/select.d.ts.map +1 -1
- package/dist/components/Tour/index.d.ts +12 -0
- package/dist/components/Tour/index.d.ts.map +1 -0
- package/dist/components/Tour/tourContext.d.ts +12 -0
- package/dist/components/Tour/tourContext.d.ts.map +1 -0
- package/dist/components/Tour/tourStep.d.ts +12 -0
- package/dist/components/Tour/tourStep.d.ts.map +1 -0
- package/dist/components/_utils/analytics.d.ts +10 -0
- package/dist/components/_utils/analytics.d.ts.map +1 -1
- package/dist/hooks.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +238 -6
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +391 -0
- package/dist/styles.min.css +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -11314,3 +11314,394 @@ span.condo-radio + * {
|
|
|
11314
11314
|
display: none;
|
|
11315
11315
|
}
|
|
11316
11316
|
|
|
11317
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
11318
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
11319
|
+
/* stylelint-disable */
|
|
11320
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
11321
|
+
.condo-popover {
|
|
11322
|
+
box-sizing: border-box;
|
|
11323
|
+
margin: 0;
|
|
11324
|
+
padding: 0;
|
|
11325
|
+
color: #222222;
|
|
11326
|
+
font-size: 14px;
|
|
11327
|
+
font-variant: tabular-nums;
|
|
11328
|
+
line-height: 1.5715;
|
|
11329
|
+
list-style: none;
|
|
11330
|
+
font-feature-settings: 'tnum', "tnum";
|
|
11331
|
+
position: absolute;
|
|
11332
|
+
top: 0;
|
|
11333
|
+
left: 0;
|
|
11334
|
+
z-index: 1030;
|
|
11335
|
+
max-width: 100vw;
|
|
11336
|
+
font-weight: normal;
|
|
11337
|
+
white-space: normal;
|
|
11338
|
+
text-align: left;
|
|
11339
|
+
cursor: auto;
|
|
11340
|
+
-webkit-user-select: text;
|
|
11341
|
+
-moz-user-select: text;
|
|
11342
|
+
-ms-user-select: text;
|
|
11343
|
+
user-select: text;
|
|
11344
|
+
}
|
|
11345
|
+
.condo-popover-content {
|
|
11346
|
+
position: relative;
|
|
11347
|
+
}
|
|
11348
|
+
.condo-popover::after {
|
|
11349
|
+
position: absolute;
|
|
11350
|
+
background: rgba(255, 255, 255, 0.01);
|
|
11351
|
+
content: '';
|
|
11352
|
+
}
|
|
11353
|
+
.condo-popover-hidden {
|
|
11354
|
+
display: none;
|
|
11355
|
+
}
|
|
11356
|
+
.condo-popover-placement-top,
|
|
11357
|
+
.condo-popover-placement-topLeft,
|
|
11358
|
+
.condo-popover-placement-topRight {
|
|
11359
|
+
padding-bottom: 15.3137085px;
|
|
11360
|
+
}
|
|
11361
|
+
.condo-popover-placement-right,
|
|
11362
|
+
.condo-popover-placement-rightTop,
|
|
11363
|
+
.condo-popover-placement-rightBottom {
|
|
11364
|
+
padding-left: 15.3137085px;
|
|
11365
|
+
}
|
|
11366
|
+
.condo-popover-placement-bottom,
|
|
11367
|
+
.condo-popover-placement-bottomLeft,
|
|
11368
|
+
.condo-popover-placement-bottomRight {
|
|
11369
|
+
padding-top: 15.3137085px;
|
|
11370
|
+
}
|
|
11371
|
+
.condo-popover-placement-left,
|
|
11372
|
+
.condo-popover-placement-leftTop,
|
|
11373
|
+
.condo-popover-placement-leftBottom {
|
|
11374
|
+
padding-right: 15.3137085px;
|
|
11375
|
+
}
|
|
11376
|
+
.condo-popover-inner {
|
|
11377
|
+
background-color: #fff;
|
|
11378
|
+
background-clip: padding-box;
|
|
11379
|
+
border-radius: 2px;
|
|
11380
|
+
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);
|
|
11381
|
+
}
|
|
11382
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
11383
|
+
.condo-popover {
|
|
11384
|
+
/* IE10+ */
|
|
11385
|
+
}
|
|
11386
|
+
.condo-popover-inner {
|
|
11387
|
+
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);
|
|
11388
|
+
}
|
|
11389
|
+
}
|
|
11390
|
+
.condo-popover-title {
|
|
11391
|
+
min-width: 177px;
|
|
11392
|
+
min-height: 32px;
|
|
11393
|
+
margin: 0;
|
|
11394
|
+
padding: 5px 16px 4px;
|
|
11395
|
+
color: #222222;
|
|
11396
|
+
font-weight: 500;
|
|
11397
|
+
border-bottom: 1px solid #f0f0f0;
|
|
11398
|
+
}
|
|
11399
|
+
.condo-popover-inner-content {
|
|
11400
|
+
width: -webkit-max-content;
|
|
11401
|
+
width: -moz-max-content;
|
|
11402
|
+
width: max-content;
|
|
11403
|
+
max-width: 100%;
|
|
11404
|
+
padding: 12px 16px;
|
|
11405
|
+
color: #222222;
|
|
11406
|
+
}
|
|
11407
|
+
.condo-popover-message {
|
|
11408
|
+
display: flex;
|
|
11409
|
+
padding: 4px 0 12px;
|
|
11410
|
+
color: #222222;
|
|
11411
|
+
font-size: 14px;
|
|
11412
|
+
}
|
|
11413
|
+
.condo-popover-message-icon {
|
|
11414
|
+
display: inline-block;
|
|
11415
|
+
margin-right: 8px;
|
|
11416
|
+
color: #faad14;
|
|
11417
|
+
font-size: 14px;
|
|
11418
|
+
}
|
|
11419
|
+
.condo-popover-buttons {
|
|
11420
|
+
margin-bottom: 4px;
|
|
11421
|
+
text-align: right;
|
|
11422
|
+
}
|
|
11423
|
+
.condo-popover-buttons button:not(:first-child) {
|
|
11424
|
+
margin-left: 8px;
|
|
11425
|
+
}
|
|
11426
|
+
.condo-popover-arrow {
|
|
11427
|
+
position: absolute;
|
|
11428
|
+
display: block;
|
|
11429
|
+
width: 22px;
|
|
11430
|
+
height: 22px;
|
|
11431
|
+
overflow: hidden;
|
|
11432
|
+
background: transparent;
|
|
11433
|
+
pointer-events: none;
|
|
11434
|
+
}
|
|
11435
|
+
.condo-popover-arrow-content {
|
|
11436
|
+
--antd-arrow-background-color: #fff;
|
|
11437
|
+
position: absolute;
|
|
11438
|
+
top: 0;
|
|
11439
|
+
right: 0;
|
|
11440
|
+
bottom: 0;
|
|
11441
|
+
left: 0;
|
|
11442
|
+
display: block;
|
|
11443
|
+
width: 11.3137085px;
|
|
11444
|
+
height: 11.3137085px;
|
|
11445
|
+
margin: auto;
|
|
11446
|
+
content: '';
|
|
11447
|
+
pointer-events: auto;
|
|
11448
|
+
border-radius: 0 0 2px;
|
|
11449
|
+
pointer-events: none;
|
|
11450
|
+
}
|
|
11451
|
+
.condo-popover-arrow-content::before {
|
|
11452
|
+
position: absolute;
|
|
11453
|
+
top: -11.3137085px;
|
|
11454
|
+
left: -11.3137085px;
|
|
11455
|
+
width: 33.9411255px;
|
|
11456
|
+
height: 33.9411255px;
|
|
11457
|
+
background: var(--antd-arrow-background-color);
|
|
11458
|
+
background-repeat: no-repeat;
|
|
11459
|
+
background-position: -10px -10px;
|
|
11460
|
+
content: '';
|
|
11461
|
+
-webkit-clip-path: inset(33% 33%);
|
|
11462
|
+
clip-path: inset(33% 33%);
|
|
11463
|
+
-webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
|
|
11464
|
+
clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
|
|
11465
|
+
}
|
|
11466
|
+
.condo-popover-placement-top .condo-popover-arrow,
|
|
11467
|
+
.condo-popover-placement-topLeft .condo-popover-arrow,
|
|
11468
|
+
.condo-popover-placement-topRight .condo-popover-arrow {
|
|
11469
|
+
bottom: 0;
|
|
11470
|
+
transform: translateY(100%);
|
|
11471
|
+
}
|
|
11472
|
+
.condo-popover-placement-top .condo-popover-arrow-content,
|
|
11473
|
+
.condo-popover-placement-topLeft .condo-popover-arrow-content,
|
|
11474
|
+
.condo-popover-placement-topRight .condo-popover-arrow-content {
|
|
11475
|
+
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
11476
|
+
transform: translateY(-11px) rotate(45deg);
|
|
11477
|
+
}
|
|
11478
|
+
.condo-popover-placement-top .condo-popover-arrow {
|
|
11479
|
+
left: 50%;
|
|
11480
|
+
transform: translateY(100%) translateX(-50%);
|
|
11481
|
+
}
|
|
11482
|
+
.condo-popover-placement-topLeft .condo-popover-arrow {
|
|
11483
|
+
left: 16px;
|
|
11484
|
+
}
|
|
11485
|
+
.condo-popover-placement-topRight .condo-popover-arrow {
|
|
11486
|
+
right: 16px;
|
|
11487
|
+
}
|
|
11488
|
+
.condo-popover-placement-right .condo-popover-arrow,
|
|
11489
|
+
.condo-popover-placement-rightTop .condo-popover-arrow,
|
|
11490
|
+
.condo-popover-placement-rightBottom .condo-popover-arrow {
|
|
11491
|
+
left: 0;
|
|
11492
|
+
transform: translateX(-100%);
|
|
11493
|
+
}
|
|
11494
|
+
.condo-popover-placement-right .condo-popover-arrow-content,
|
|
11495
|
+
.condo-popover-placement-rightTop .condo-popover-arrow-content,
|
|
11496
|
+
.condo-popover-placement-rightBottom .condo-popover-arrow-content {
|
|
11497
|
+
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
11498
|
+
transform: translateX(11px) rotate(135deg);
|
|
11499
|
+
}
|
|
11500
|
+
.condo-popover-placement-right .condo-popover-arrow {
|
|
11501
|
+
top: 50%;
|
|
11502
|
+
transform: translateX(-100%) translateY(-50%);
|
|
11503
|
+
}
|
|
11504
|
+
.condo-popover-placement-rightTop .condo-popover-arrow {
|
|
11505
|
+
top: 12px;
|
|
11506
|
+
}
|
|
11507
|
+
.condo-popover-placement-rightBottom .condo-popover-arrow {
|
|
11508
|
+
bottom: 12px;
|
|
11509
|
+
}
|
|
11510
|
+
.condo-popover-placement-bottom .condo-popover-arrow,
|
|
11511
|
+
.condo-popover-placement-bottomLeft .condo-popover-arrow,
|
|
11512
|
+
.condo-popover-placement-bottomRight .condo-popover-arrow {
|
|
11513
|
+
top: 0;
|
|
11514
|
+
transform: translateY(-100%);
|
|
11515
|
+
}
|
|
11516
|
+
.condo-popover-placement-bottom .condo-popover-arrow-content,
|
|
11517
|
+
.condo-popover-placement-bottomLeft .condo-popover-arrow-content,
|
|
11518
|
+
.condo-popover-placement-bottomRight .condo-popover-arrow-content {
|
|
11519
|
+
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);
|
|
11520
|
+
transform: translateY(11px) rotate(-135deg);
|
|
11521
|
+
}
|
|
11522
|
+
.condo-popover-placement-bottom .condo-popover-arrow {
|
|
11523
|
+
left: 50%;
|
|
11524
|
+
transform: translateY(-100%) translateX(-50%);
|
|
11525
|
+
}
|
|
11526
|
+
.condo-popover-placement-bottomLeft .condo-popover-arrow {
|
|
11527
|
+
left: 16px;
|
|
11528
|
+
}
|
|
11529
|
+
.condo-popover-placement-bottomRight .condo-popover-arrow {
|
|
11530
|
+
right: 16px;
|
|
11531
|
+
}
|
|
11532
|
+
.condo-popover-placement-left .condo-popover-arrow,
|
|
11533
|
+
.condo-popover-placement-leftTop .condo-popover-arrow,
|
|
11534
|
+
.condo-popover-placement-leftBottom .condo-popover-arrow {
|
|
11535
|
+
right: 0;
|
|
11536
|
+
transform: translateX(100%);
|
|
11537
|
+
}
|
|
11538
|
+
.condo-popover-placement-left .condo-popover-arrow-content,
|
|
11539
|
+
.condo-popover-placement-leftTop .condo-popover-arrow-content,
|
|
11540
|
+
.condo-popover-placement-leftBottom .condo-popover-arrow-content {
|
|
11541
|
+
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
11542
|
+
transform: translateX(-11px) rotate(-45deg);
|
|
11543
|
+
}
|
|
11544
|
+
.condo-popover-placement-left .condo-popover-arrow {
|
|
11545
|
+
top: 50%;
|
|
11546
|
+
transform: translateX(100%) translateY(-50%);
|
|
11547
|
+
}
|
|
11548
|
+
.condo-popover-placement-leftTop .condo-popover-arrow {
|
|
11549
|
+
top: 12px;
|
|
11550
|
+
}
|
|
11551
|
+
.condo-popover-placement-leftBottom .condo-popover-arrow {
|
|
11552
|
+
bottom: 12px;
|
|
11553
|
+
}
|
|
11554
|
+
.condo-popover-pink .condo-popover-inner {
|
|
11555
|
+
background-color: #eb2f96;
|
|
11556
|
+
}
|
|
11557
|
+
.condo-popover-pink .condo-popover-arrow-content {
|
|
11558
|
+
background-color: #eb2f96;
|
|
11559
|
+
}
|
|
11560
|
+
.condo-popover-magenta .condo-popover-inner {
|
|
11561
|
+
background-color: #eb2f96;
|
|
11562
|
+
}
|
|
11563
|
+
.condo-popover-magenta .condo-popover-arrow-content {
|
|
11564
|
+
background-color: #eb2f96;
|
|
11565
|
+
}
|
|
11566
|
+
.condo-popover-red .condo-popover-inner {
|
|
11567
|
+
background-color: #f5222d;
|
|
11568
|
+
}
|
|
11569
|
+
.condo-popover-red .condo-popover-arrow-content {
|
|
11570
|
+
background-color: #f5222d;
|
|
11571
|
+
}
|
|
11572
|
+
.condo-popover-volcano .condo-popover-inner {
|
|
11573
|
+
background-color: #fa541c;
|
|
11574
|
+
}
|
|
11575
|
+
.condo-popover-volcano .condo-popover-arrow-content {
|
|
11576
|
+
background-color: #fa541c;
|
|
11577
|
+
}
|
|
11578
|
+
.condo-popover-orange .condo-popover-inner {
|
|
11579
|
+
background-color: #fa8c16;
|
|
11580
|
+
}
|
|
11581
|
+
.condo-popover-orange .condo-popover-arrow-content {
|
|
11582
|
+
background-color: #fa8c16;
|
|
11583
|
+
}
|
|
11584
|
+
.condo-popover-yellow .condo-popover-inner {
|
|
11585
|
+
background-color: #fadb14;
|
|
11586
|
+
}
|
|
11587
|
+
.condo-popover-yellow .condo-popover-arrow-content {
|
|
11588
|
+
background-color: #fadb14;
|
|
11589
|
+
}
|
|
11590
|
+
.condo-popover-gold .condo-popover-inner {
|
|
11591
|
+
background-color: #faad14;
|
|
11592
|
+
}
|
|
11593
|
+
.condo-popover-gold .condo-popover-arrow-content {
|
|
11594
|
+
background-color: #faad14;
|
|
11595
|
+
}
|
|
11596
|
+
.condo-popover-cyan .condo-popover-inner {
|
|
11597
|
+
background-color: #13c2c2;
|
|
11598
|
+
}
|
|
11599
|
+
.condo-popover-cyan .condo-popover-arrow-content {
|
|
11600
|
+
background-color: #13c2c2;
|
|
11601
|
+
}
|
|
11602
|
+
.condo-popover-lime .condo-popover-inner {
|
|
11603
|
+
background-color: #a0d911;
|
|
11604
|
+
}
|
|
11605
|
+
.condo-popover-lime .condo-popover-arrow-content {
|
|
11606
|
+
background-color: #a0d911;
|
|
11607
|
+
}
|
|
11608
|
+
.condo-popover-green .condo-popover-inner {
|
|
11609
|
+
background-color: #52c41a;
|
|
11610
|
+
}
|
|
11611
|
+
.condo-popover-green .condo-popover-arrow-content {
|
|
11612
|
+
background-color: #52c41a;
|
|
11613
|
+
}
|
|
11614
|
+
.condo-popover-blue .condo-popover-inner {
|
|
11615
|
+
background-color: #1890ff;
|
|
11616
|
+
}
|
|
11617
|
+
.condo-popover-blue .condo-popover-arrow-content {
|
|
11618
|
+
background-color: #1890ff;
|
|
11619
|
+
}
|
|
11620
|
+
.condo-popover-geekblue .condo-popover-inner {
|
|
11621
|
+
background-color: #2f54eb;
|
|
11622
|
+
}
|
|
11623
|
+
.condo-popover-geekblue .condo-popover-arrow-content {
|
|
11624
|
+
background-color: #2f54eb;
|
|
11625
|
+
}
|
|
11626
|
+
.condo-popover-purple .condo-popover-inner {
|
|
11627
|
+
background-color: #722ed1;
|
|
11628
|
+
}
|
|
11629
|
+
.condo-popover-purple .condo-popover-arrow-content {
|
|
11630
|
+
background-color: #722ed1;
|
|
11631
|
+
}
|
|
11632
|
+
.condo-popover-rtl {
|
|
11633
|
+
direction: rtl;
|
|
11634
|
+
text-align: right;
|
|
11635
|
+
}
|
|
11636
|
+
.condo-popover-rtl .condo-popover-message-icon {
|
|
11637
|
+
margin-right: 0;
|
|
11638
|
+
margin-left: 8px;
|
|
11639
|
+
}
|
|
11640
|
+
.condo-popover-rtl .condo-popover-message-title {
|
|
11641
|
+
padding-left: 16px;
|
|
11642
|
+
}
|
|
11643
|
+
.condo-popover-rtl .condo-popover-buttons {
|
|
11644
|
+
text-align: left;
|
|
11645
|
+
}
|
|
11646
|
+
.condo-popover-rtl .condo-popover-buttons button {
|
|
11647
|
+
margin-right: 8px;
|
|
11648
|
+
margin-left: 0;
|
|
11649
|
+
}
|
|
11650
|
+
.condo-popover {
|
|
11651
|
+
max-width: 350px;
|
|
11652
|
+
padding: 4px;
|
|
11653
|
+
}
|
|
11654
|
+
.condo-popover > .condo-popover-content .condo-popover-inner {
|
|
11655
|
+
min-height: 0;
|
|
11656
|
+
padding: 20px;
|
|
11657
|
+
color: #fff;
|
|
11658
|
+
font-size: 12px;
|
|
11659
|
+
font-family: "Wix Madefor Display", var(--condo-font-fallback);
|
|
11660
|
+
line-height: 20px;
|
|
11661
|
+
background-color: #222;
|
|
11662
|
+
border-radius: 12px;
|
|
11663
|
+
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
11664
|
+
}
|
|
11665
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-icon-wrapper {
|
|
11666
|
+
position: absolute;
|
|
11667
|
+
top: 8px;
|
|
11668
|
+
right: 8px;
|
|
11669
|
+
color: #707695;
|
|
11670
|
+
}
|
|
11671
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-icon-wrapper span:hover {
|
|
11672
|
+
cursor: pointer;
|
|
11673
|
+
}
|
|
11674
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-title {
|
|
11675
|
+
padding: 0;
|
|
11676
|
+
border-bottom: 0;
|
|
11677
|
+
}
|
|
11678
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-title .condo-typography {
|
|
11679
|
+
color: white;
|
|
11680
|
+
}
|
|
11681
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-inner-content {
|
|
11682
|
+
padding: 0;
|
|
11683
|
+
}
|
|
11684
|
+
.condo-popover > .condo-popover-content .condo-popover-inner .condo-popover-inner-content .condo-typography {
|
|
11685
|
+
color: #e1e5ed;
|
|
11686
|
+
}
|
|
11687
|
+
.condo-popover > .condo-popover-content .condo-popover-arrow {
|
|
11688
|
+
display: inline;
|
|
11689
|
+
display: initial;
|
|
11690
|
+
}
|
|
11691
|
+
.condo-popover > .condo-popover-content .condo-popover-arrow > .condo-popover-arrow-content {
|
|
11692
|
+
--antd-arrow-background-color: #222;
|
|
11693
|
+
}
|
|
11694
|
+
.condo-popover.condo-popover-placement-bottom > .condo-popover-content .condo-popover-arrow-content::before,
|
|
11695
|
+
.condo-popover.condo-popover-placement-top > .condo-popover-content .condo-popover-arrow-content::before {
|
|
11696
|
+
-webkit-clip-path: inset(34% 34%);
|
|
11697
|
+
clip-path: inset(34% 34%);
|
|
11698
|
+
}
|
|
11699
|
+
.condo-popover.condo-popover-placement-left > .condo-popover-content .condo-popover-arrow-content::before {
|
|
11700
|
+
-webkit-clip-path: inset(32% 32%);
|
|
11701
|
+
clip-path: inset(32% 32%);
|
|
11702
|
+
}
|
|
11703
|
+
.condo-popover.condo-popover-placement-right > .condo-popover-content .condo-popover-arrow-content::before {
|
|
11704
|
+
-webkit-clip-path: inset(36% 36%);
|
|
11705
|
+
clip-path: inset(36% 36%);
|
|
11706
|
+
}
|
|
11707
|
+
|