@open-condo/ui 1.25.0 → 1.26.1
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/Banner/banner.d.ts +1 -1
- package/dist/components/Banner/banner.d.ts.map +1 -1
- package/dist/components/Carousel/carousel.d.ts +2 -0
- package/dist/components/Carousel/carousel.d.ts.map +1 -1
- package/dist/components/Modal/modal.d.ts +1 -1
- package/dist/components/Modal/modal.d.ts.map +1 -1
- package/dist/components/Space/space.d.ts +1 -1
- package/dist/components/Space/space.d.ts.map +1 -1
- package/dist/components/Steps/index.d.ts +6 -0
- package/dist/components/Steps/index.d.ts.map +1 -0
- package/dist/components/Steps/step.d.ts +14 -0
- package/dist/components/Steps/step.d.ts.map +1 -0
- package/dist/components/Steps/steps.d.ts +13 -0
- package/dist/components/Steps/steps.d.ts.map +1 -0
- package/dist/components/Tooltip/index.d.ts +5 -0
- package/dist/components/Tooltip/index.d.ts.map +1 -0
- package/dist/components/Tooltip/tooltip.d.ts +8 -0
- package/dist/components/Tooltip/tooltip.d.ts.map +1 -0
- package/dist/components/_utils/analytics.d.ts +3 -0
- package/dist/components/_utils/analytics.d.ts.map +1 -1
- package/dist/components/_utils/controls/arrows.d.ts +8 -0
- package/dist/components/_utils/controls/arrows.d.ts.map +1 -0
- package/dist/components/_utils/controls/index.d.ts +4 -0
- package/dist/components/_utils/controls/index.d.ts.map +1 -0
- package/dist/components/_utils/hooks/index.d.ts +2 -1
- package/dist/components/_utils/hooks/index.d.ts.map +1 -1
- package/dist/components/_utils/hooks/useContainerSize.d.ts +9 -0
- package/dist/components/_utils/hooks/useContainerSize.d.ts.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +747 -154
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +637 -538
- package/dist/styles.min.css +1 -1
- package/package.json +1 -1
- package/dist/components/Carousel/arrow.d.ts +0 -3
- package/dist/components/Carousel/arrow.d.ts.map +0 -1
- package/dist/components/_utils/hooks/useSize.d.ts +0 -8
- package/dist/components/_utils/hooks/useSize.d.ts.map +0 -1
package/dist/styles.css
CHANGED
|
@@ -3218,19 +3218,6 @@ span.condo-typography-ellipsis-single-line {
|
|
|
3218
3218
|
/*! autoprefixer: ignore next */
|
|
3219
3219
|
-webkit-box-orient: vertical;
|
|
3220
3220
|
}
|
|
3221
|
-
.condo-tooltip > .condo-tooltip-content .condo-tooltip-inner {
|
|
3222
|
-
padding: 12px;
|
|
3223
|
-
color: #222;
|
|
3224
|
-
font-size: 12px;
|
|
3225
|
-
font-family: "Open Sans", var(--condo-font-fallback);
|
|
3226
|
-
line-height: 20px;
|
|
3227
|
-
background-color: #fff;
|
|
3228
|
-
border-radius: 12px;
|
|
3229
|
-
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
3230
|
-
}
|
|
3231
|
-
.condo-tooltip > .condo-tooltip-content .condo-tooltip-arrow {
|
|
3232
|
-
display: none;
|
|
3233
|
-
}
|
|
3234
3221
|
|
|
3235
3222
|
.condo-promo-block {
|
|
3236
3223
|
display: flex;
|
|
@@ -3614,6 +3601,39 @@ span.condo-typography-ellipsis-single-line {
|
|
|
3614
3601
|
border-color: #fff;
|
|
3615
3602
|
}
|
|
3616
3603
|
|
|
3604
|
+
.condo-control {
|
|
3605
|
+
width: 40px !important;
|
|
3606
|
+
height: 40px !important;
|
|
3607
|
+
display: flex !important;
|
|
3608
|
+
color: #707695 !important;
|
|
3609
|
+
background: #fff !important;
|
|
3610
|
+
border: 1px solid #fff !important;
|
|
3611
|
+
}
|
|
3612
|
+
.condo-control {
|
|
3613
|
+
gap: 10px;
|
|
3614
|
+
align-items: center;
|
|
3615
|
+
box-sizing: border-box;
|
|
3616
|
+
border-radius: 50%;
|
|
3617
|
+
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
3618
|
+
transition-timing-function: ease-out;
|
|
3619
|
+
transition-duration: 0.15s;
|
|
3620
|
+
transition-property: color, border;
|
|
3621
|
+
}
|
|
3622
|
+
.condo-control:hover {
|
|
3623
|
+
color: #222 !important;
|
|
3624
|
+
border: 1px solid #e1e5ed !important;
|
|
3625
|
+
}
|
|
3626
|
+
.condo-control-prev {
|
|
3627
|
+
scale: -1 1;
|
|
3628
|
+
}
|
|
3629
|
+
.condo-control-small {
|
|
3630
|
+
width: 28px !important;
|
|
3631
|
+
height: 28px !important;
|
|
3632
|
+
}
|
|
3633
|
+
.condo-control-small {
|
|
3634
|
+
gap: 6px;
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3617
3637
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
3618
3638
|
/* stylelint-disable no-duplicate-selectors */
|
|
3619
3639
|
/* stylelint-disable */
|
|
@@ -3917,51 +3937,49 @@ span.condo-typography-ellipsis-single-line {
|
|
|
3917
3937
|
margin-top: 0;
|
|
3918
3938
|
margin-bottom: 0;
|
|
3919
3939
|
}
|
|
3920
|
-
.condo-carousel .slick-arrow {
|
|
3921
|
-
|
|
3940
|
+
.condo-carousel .slick-arrow.condo-control-large {
|
|
3941
|
+
margin-top: -20px;
|
|
3922
3942
|
}
|
|
3923
|
-
.condo-carousel .slick-arrow {
|
|
3924
|
-
|
|
3925
|
-
align-items: center;
|
|
3926
|
-
box-sizing: border-box;
|
|
3927
|
-
color: #707695;
|
|
3928
|
-
border: 1px solid #fff;
|
|
3929
|
-
transition-timing-function: ease-out;
|
|
3930
|
-
transition-duration: 0.15s;
|
|
3931
|
-
transition-property: color, border;
|
|
3943
|
+
.condo-carousel .slick-arrow.condo-control-small {
|
|
3944
|
+
margin-top: -14px;
|
|
3932
3945
|
}
|
|
3933
3946
|
.condo-carousel .slick-arrow,
|
|
3934
3947
|
.condo-carousel .slick-arrow:hover {
|
|
3935
3948
|
position: absolute;
|
|
3936
3949
|
top: 50%;
|
|
3937
3950
|
z-index: 1;
|
|
3938
|
-
width: 40px;
|
|
3939
|
-
height: 40px;
|
|
3940
|
-
margin-top: -20px;
|
|
3941
|
-
background: #fff;
|
|
3942
|
-
border-radius: 20px;
|
|
3943
|
-
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
3944
|
-
}
|
|
3945
|
-
.condo-carousel .slick-arrow:hover {
|
|
3946
|
-
color: #222;
|
|
3947
|
-
border: 1px solid #e1e5ed;
|
|
3948
3951
|
}
|
|
3949
|
-
.condo-carousel .slick-arrow.slick-next {
|
|
3952
|
+
.condo-carousel .slick-arrow.slick-next.condo-control-large {
|
|
3950
3953
|
right: -20px;
|
|
3951
3954
|
}
|
|
3952
|
-
.condo-carousel .slick-arrow.slick-
|
|
3955
|
+
.condo-carousel .slick-arrow.slick-next.condo-control-small {
|
|
3956
|
+
right: -14px;
|
|
3957
|
+
}
|
|
3958
|
+
.condo-carousel .slick-arrow.slick-prev.condo-control-large {
|
|
3953
3959
|
left: -20px;
|
|
3954
|
-
|
|
3960
|
+
}
|
|
3961
|
+
.condo-carousel .slick-arrow.slick-prev.condo-control-small {
|
|
3962
|
+
left: -14px;
|
|
3955
3963
|
}
|
|
3956
3964
|
.condo-carousel .slick-arrow.slick-disabled {
|
|
3957
3965
|
display: none !important;
|
|
3958
3966
|
}
|
|
3967
|
+
.condo-carousel .slick-slide > div {
|
|
3968
|
+
margin: 0 20px;
|
|
3969
|
+
}
|
|
3959
3970
|
.condo-carousel .slick-list {
|
|
3960
3971
|
margin: 0 -20px;
|
|
3961
3972
|
padding: 20px 0;
|
|
3962
3973
|
}
|
|
3963
|
-
.condo-carousel .slick-
|
|
3964
|
-
|
|
3974
|
+
.condo-carousel .slick-list > .slick-track {
|
|
3975
|
+
display: flex;
|
|
3976
|
+
}
|
|
3977
|
+
.condo-carousel .slick-list > .slick-track > .slick-slide {
|
|
3978
|
+
height: inherit;
|
|
3979
|
+
}
|
|
3980
|
+
.condo-carousel .slick-list > .slick-track > .slick-slide > div,
|
|
3981
|
+
.condo-carousel .slick-list > .slick-track > .slick-slide > div > section {
|
|
3982
|
+
height: 100%;
|
|
3965
3983
|
}
|
|
3966
3984
|
|
|
3967
3985
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
@@ -4671,7 +4689,36 @@ span.condo-typography-ellipsis-single-line {
|
|
|
4671
4689
|
margin: auto auto 16px;
|
|
4672
4690
|
}
|
|
4673
4691
|
}
|
|
4674
|
-
.condo-
|
|
4692
|
+
.condo-list .condo-list-header {
|
|
4693
|
+
padding-top: 0;
|
|
4694
|
+
padding-bottom: 24px;
|
|
4695
|
+
border-bottom: none;
|
|
4696
|
+
}
|
|
4697
|
+
.condo-list .condo-list-item {
|
|
4698
|
+
display: flex;
|
|
4699
|
+
flex-wrap: nowrap;
|
|
4700
|
+
align-items: flex-end;
|
|
4701
|
+
width: 100%;
|
|
4702
|
+
padding: 6px 0;
|
|
4703
|
+
border-bottom: none;
|
|
4704
|
+
}
|
|
4705
|
+
.condo-list .condo-list-item .condo-typography {
|
|
4706
|
+
max-width: 40%;
|
|
4707
|
+
}
|
|
4708
|
+
.condo-list .condo-list-item .condo-typography:last-of-type {
|
|
4709
|
+
text-align: right;
|
|
4710
|
+
}
|
|
4711
|
+
.condo-list .condo-list-item-divider {
|
|
4712
|
+
flex: 1;
|
|
4713
|
+
margin: 0 8px;
|
|
4714
|
+
border-bottom: 1px solid #e1e5ed;
|
|
4715
|
+
}
|
|
4716
|
+
|
|
4717
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
4718
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
4719
|
+
/* stylelint-disable */
|
|
4720
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
4721
|
+
.condo-tag {
|
|
4675
4722
|
box-sizing: border-box;
|
|
4676
4723
|
margin: 0;
|
|
4677
4724
|
padding: 0;
|
|
@@ -4681,543 +4728,243 @@ span.condo-typography-ellipsis-single-line {
|
|
|
4681
4728
|
line-height: 1.5715;
|
|
4682
4729
|
list-style: none;
|
|
4683
4730
|
font-feature-settings: 'tnum', "tnum";
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4731
|
+
display: inline-block;
|
|
4732
|
+
height: auto;
|
|
4733
|
+
margin-right: 8px;
|
|
4734
|
+
padding: 0 7px;
|
|
4735
|
+
font-size: 12px;
|
|
4736
|
+
line-height: 20px;
|
|
4737
|
+
white-space: nowrap;
|
|
4738
|
+
background: #fafafa;
|
|
4739
|
+
border: 1px solid #d9d9d9;
|
|
4740
|
+
border-radius: 2px;
|
|
4741
|
+
opacity: 1;
|
|
4742
|
+
transition: all 0.3s;
|
|
4696
4743
|
}
|
|
4697
|
-
.condo-
|
|
4698
|
-
|
|
4744
|
+
.condo-tag,
|
|
4745
|
+
.condo-tag a,
|
|
4746
|
+
.condo-tag a:hover {
|
|
4747
|
+
color: rgba(0, 0, 0, 0.85);
|
|
4699
4748
|
}
|
|
4700
|
-
.condo-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
padding
|
|
4749
|
+
.condo-tag > a:first-child:last-child {
|
|
4750
|
+
display: inline-block;
|
|
4751
|
+
margin: 0 -8px;
|
|
4752
|
+
padding: 0 8px;
|
|
4704
4753
|
}
|
|
4705
|
-
.condo-
|
|
4706
|
-
|
|
4707
|
-
.
|
|
4708
|
-
|
|
4754
|
+
.condo-tag-close-icon {
|
|
4755
|
+
margin-left: 3px;
|
|
4756
|
+
color: rgba(0, 0, 0, 0.45);
|
|
4757
|
+
font-size: 10px;
|
|
4758
|
+
cursor: pointer;
|
|
4759
|
+
transition: all 0.3s;
|
|
4709
4760
|
}
|
|
4710
|
-
.condo-
|
|
4711
|
-
.
|
|
4712
|
-
.condo-tooltip-placement-bottomRight {
|
|
4713
|
-
padding-top: 14.3137085px;
|
|
4761
|
+
.condo-tag-close-icon:hover {
|
|
4762
|
+
color: rgba(0, 0, 0, 0.85);
|
|
4714
4763
|
}
|
|
4715
|
-
.condo-
|
|
4716
|
-
|
|
4717
|
-
.condo-tooltip-placement-leftBottom {
|
|
4718
|
-
padding-right: 14.3137085px;
|
|
4764
|
+
.condo-tag-has-color {
|
|
4765
|
+
border-color: transparent;
|
|
4719
4766
|
}
|
|
4720
|
-
.condo-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4767
|
+
.condo-tag-has-color,
|
|
4768
|
+
.condo-tag-has-color a,
|
|
4769
|
+
.condo-tag-has-color a:hover,
|
|
4770
|
+
.condo-tag-has-color .anticon-close,
|
|
4771
|
+
.condo-tag-has-color .anticon-close:hover {
|
|
4724
4772
|
color: #fff;
|
|
4725
|
-
text-align: left;
|
|
4726
|
-
text-decoration: none;
|
|
4727
|
-
word-wrap: break-word;
|
|
4728
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
4729
|
-
border-radius: 2px;
|
|
4730
|
-
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);
|
|
4731
4773
|
}
|
|
4732
|
-
.condo-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
width: 22px;
|
|
4737
|
-
height: 22px;
|
|
4738
|
-
overflow: hidden;
|
|
4739
|
-
background: transparent;
|
|
4740
|
-
pointer-events: none;
|
|
4774
|
+
.condo-tag-checkable {
|
|
4775
|
+
background-color: transparent;
|
|
4776
|
+
border-color: transparent;
|
|
4777
|
+
cursor: pointer;
|
|
4741
4778
|
}
|
|
4742
|
-
.condo-
|
|
4743
|
-
|
|
4744
|
-
position: absolute;
|
|
4745
|
-
top: 0;
|
|
4746
|
-
right: 0;
|
|
4747
|
-
bottom: 0;
|
|
4748
|
-
left: 0;
|
|
4749
|
-
display: block;
|
|
4750
|
-
width: 11.3137085px;
|
|
4751
|
-
height: 11.3137085px;
|
|
4752
|
-
margin: auto;
|
|
4753
|
-
content: '';
|
|
4754
|
-
pointer-events: auto;
|
|
4755
|
-
border-radius: 0 0 2px;
|
|
4756
|
-
pointer-events: none;
|
|
4779
|
+
.condo-tag-checkable:not(.condo-tag-checkable-checked):hover {
|
|
4780
|
+
color: #1890ff;
|
|
4757
4781
|
}
|
|
4758
|
-
.condo-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
left: -11.3137085px;
|
|
4762
|
-
width: 33.9411255px;
|
|
4763
|
-
height: 33.9411255px;
|
|
4764
|
-
background: var(--antd-arrow-background-color);
|
|
4765
|
-
background-repeat: no-repeat;
|
|
4766
|
-
background-position: -10px -10px;
|
|
4767
|
-
content: '';
|
|
4768
|
-
-webkit-clip-path: inset(33% 33%);
|
|
4769
|
-
clip-path: inset(33% 33%);
|
|
4770
|
-
-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');
|
|
4771
|
-
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');
|
|
4782
|
+
.condo-tag-checkable:active,
|
|
4783
|
+
.condo-tag-checkable-checked {
|
|
4784
|
+
color: #fff;
|
|
4772
4785
|
}
|
|
4773
|
-
.condo-
|
|
4774
|
-
|
|
4775
|
-
.condo-tooltip-placement-topRight .condo-tooltip-arrow {
|
|
4776
|
-
bottom: 0;
|
|
4777
|
-
transform: translateY(100%);
|
|
4786
|
+
.condo-tag-checkable-checked {
|
|
4787
|
+
background-color: #1890ff;
|
|
4778
4788
|
}
|
|
4779
|
-
.condo-
|
|
4780
|
-
|
|
4781
|
-
.condo-tooltip-placement-topRight .condo-tooltip-arrow-content {
|
|
4782
|
-
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
4783
|
-
transform: translateY(-11px) rotate(45deg);
|
|
4789
|
+
.condo-tag-checkable:active {
|
|
4790
|
+
background-color: #096dd9;
|
|
4784
4791
|
}
|
|
4785
|
-
.condo-
|
|
4786
|
-
|
|
4787
|
-
transform: translateY(100%) translateX(-50%);
|
|
4792
|
+
.condo-tag-hidden {
|
|
4793
|
+
display: none;
|
|
4788
4794
|
}
|
|
4789
|
-
.condo-
|
|
4790
|
-
|
|
4795
|
+
.condo-tag-pink {
|
|
4796
|
+
color: #c41d7f;
|
|
4797
|
+
background: #fff0f6;
|
|
4798
|
+
border-color: #ffadd2;
|
|
4791
4799
|
}
|
|
4792
|
-
.condo-
|
|
4793
|
-
|
|
4800
|
+
.condo-tag-pink-inverse {
|
|
4801
|
+
color: #fff;
|
|
4802
|
+
background: #eb2f96;
|
|
4803
|
+
border-color: #eb2f96;
|
|
4794
4804
|
}
|
|
4795
|
-
.condo-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
transform: translateX(-100%);
|
|
4805
|
+
.condo-tag-magenta {
|
|
4806
|
+
color: #c41d7f;
|
|
4807
|
+
background: #fff0f6;
|
|
4808
|
+
border-color: #ffadd2;
|
|
4800
4809
|
}
|
|
4801
|
-
.condo-
|
|
4802
|
-
|
|
4803
|
-
.condo-tooltip-placement-rightBottom .condo-tooltip-arrow-content {
|
|
4804
|
-
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
4805
|
-
transform: translateX(11px) rotate(135deg);
|
|
4806
|
-
}
|
|
4807
|
-
.condo-tooltip-placement-right .condo-tooltip-arrow {
|
|
4808
|
-
top: 50%;
|
|
4809
|
-
transform: translateX(-100%) translateY(-50%);
|
|
4810
|
-
}
|
|
4811
|
-
.condo-tooltip-placement-rightTop .condo-tooltip-arrow {
|
|
4812
|
-
top: 5px;
|
|
4813
|
-
}
|
|
4814
|
-
.condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
|
|
4815
|
-
bottom: 5px;
|
|
4816
|
-
}
|
|
4817
|
-
.condo-tooltip-placement-left .condo-tooltip-arrow,
|
|
4818
|
-
.condo-tooltip-placement-leftTop .condo-tooltip-arrow,
|
|
4819
|
-
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
|
|
4820
|
-
right: 0;
|
|
4821
|
-
transform: translateX(100%);
|
|
4822
|
-
}
|
|
4823
|
-
.condo-tooltip-placement-left .condo-tooltip-arrow-content,
|
|
4824
|
-
.condo-tooltip-placement-leftTop .condo-tooltip-arrow-content,
|
|
4825
|
-
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow-content {
|
|
4826
|
-
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
4827
|
-
transform: translateX(-11px) rotate(315deg);
|
|
4828
|
-
}
|
|
4829
|
-
.condo-tooltip-placement-left .condo-tooltip-arrow {
|
|
4830
|
-
top: 50%;
|
|
4831
|
-
transform: translateX(100%) translateY(-50%);
|
|
4832
|
-
}
|
|
4833
|
-
.condo-tooltip-placement-leftTop .condo-tooltip-arrow {
|
|
4834
|
-
top: 5px;
|
|
4835
|
-
}
|
|
4836
|
-
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
|
|
4837
|
-
bottom: 5px;
|
|
4838
|
-
}
|
|
4839
|
-
.condo-tooltip-placement-bottom .condo-tooltip-arrow,
|
|
4840
|
-
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow,
|
|
4841
|
-
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
|
|
4842
|
-
top: 0;
|
|
4843
|
-
transform: translateY(-100%);
|
|
4844
|
-
}
|
|
4845
|
-
.condo-tooltip-placement-bottom .condo-tooltip-arrow-content,
|
|
4846
|
-
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow-content,
|
|
4847
|
-
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow-content {
|
|
4848
|
-
box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
4849
|
-
transform: translateY(11px) rotate(225deg);
|
|
4850
|
-
}
|
|
4851
|
-
.condo-tooltip-placement-bottom .condo-tooltip-arrow {
|
|
4852
|
-
left: 50%;
|
|
4853
|
-
transform: translateY(-100%) translateX(-50%);
|
|
4854
|
-
}
|
|
4855
|
-
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow {
|
|
4856
|
-
left: 13px;
|
|
4857
|
-
}
|
|
4858
|
-
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
|
|
4859
|
-
right: 13px;
|
|
4860
|
-
}
|
|
4861
|
-
.condo-tooltip-pink .condo-tooltip-inner {
|
|
4862
|
-
background-color: #eb2f96;
|
|
4863
|
-
}
|
|
4864
|
-
.condo-tooltip-pink .condo-tooltip-arrow-content::before {
|
|
4865
|
-
background: #eb2f96;
|
|
4866
|
-
}
|
|
4867
|
-
.condo-tooltip-magenta .condo-tooltip-inner {
|
|
4868
|
-
background-color: #eb2f96;
|
|
4869
|
-
}
|
|
4870
|
-
.condo-tooltip-magenta .condo-tooltip-arrow-content::before {
|
|
4810
|
+
.condo-tag-magenta-inverse {
|
|
4811
|
+
color: #fff;
|
|
4871
4812
|
background: #eb2f96;
|
|
4813
|
+
border-color: #eb2f96;
|
|
4872
4814
|
}
|
|
4873
|
-
.condo-
|
|
4874
|
-
|
|
4815
|
+
.condo-tag-red {
|
|
4816
|
+
color: #cf1322;
|
|
4817
|
+
background: #fff1f0;
|
|
4818
|
+
border-color: #ffa39e;
|
|
4875
4819
|
}
|
|
4876
|
-
.condo-
|
|
4820
|
+
.condo-tag-red-inverse {
|
|
4821
|
+
color: #fff;
|
|
4877
4822
|
background: #f5222d;
|
|
4823
|
+
border-color: #f5222d;
|
|
4878
4824
|
}
|
|
4879
|
-
.condo-
|
|
4880
|
-
|
|
4825
|
+
.condo-tag-volcano {
|
|
4826
|
+
color: #d4380d;
|
|
4827
|
+
background: #fff2e8;
|
|
4828
|
+
border-color: #ffbb96;
|
|
4881
4829
|
}
|
|
4882
|
-
.condo-
|
|
4830
|
+
.condo-tag-volcano-inverse {
|
|
4831
|
+
color: #fff;
|
|
4883
4832
|
background: #fa541c;
|
|
4833
|
+
border-color: #fa541c;
|
|
4884
4834
|
}
|
|
4885
|
-
.condo-
|
|
4886
|
-
|
|
4835
|
+
.condo-tag-orange {
|
|
4836
|
+
color: #d46b08;
|
|
4837
|
+
background: #fff7e6;
|
|
4838
|
+
border-color: #ffd591;
|
|
4887
4839
|
}
|
|
4888
|
-
.condo-
|
|
4840
|
+
.condo-tag-orange-inverse {
|
|
4841
|
+
color: #fff;
|
|
4889
4842
|
background: #fa8c16;
|
|
4843
|
+
border-color: #fa8c16;
|
|
4890
4844
|
}
|
|
4891
|
-
.condo-
|
|
4892
|
-
|
|
4845
|
+
.condo-tag-yellow {
|
|
4846
|
+
color: #d4b106;
|
|
4847
|
+
background: #feffe6;
|
|
4848
|
+
border-color: #fffb8f;
|
|
4893
4849
|
}
|
|
4894
|
-
.condo-
|
|
4850
|
+
.condo-tag-yellow-inverse {
|
|
4851
|
+
color: #fff;
|
|
4895
4852
|
background: #fadb14;
|
|
4853
|
+
border-color: #fadb14;
|
|
4896
4854
|
}
|
|
4897
|
-
.condo-
|
|
4898
|
-
|
|
4855
|
+
.condo-tag-gold {
|
|
4856
|
+
color: #d48806;
|
|
4857
|
+
background: #fffbe6;
|
|
4858
|
+
border-color: #ffe58f;
|
|
4899
4859
|
}
|
|
4900
|
-
.condo-
|
|
4860
|
+
.condo-tag-gold-inverse {
|
|
4861
|
+
color: #fff;
|
|
4901
4862
|
background: #faad14;
|
|
4863
|
+
border-color: #faad14;
|
|
4902
4864
|
}
|
|
4903
|
-
.condo-
|
|
4904
|
-
|
|
4865
|
+
.condo-tag-cyan {
|
|
4866
|
+
color: #08979c;
|
|
4867
|
+
background: #e6fffb;
|
|
4868
|
+
border-color: #87e8de;
|
|
4905
4869
|
}
|
|
4906
|
-
.condo-
|
|
4870
|
+
.condo-tag-cyan-inverse {
|
|
4871
|
+
color: #fff;
|
|
4907
4872
|
background: #13c2c2;
|
|
4873
|
+
border-color: #13c2c2;
|
|
4908
4874
|
}
|
|
4909
|
-
.condo-
|
|
4910
|
-
|
|
4875
|
+
.condo-tag-lime {
|
|
4876
|
+
color: #7cb305;
|
|
4877
|
+
background: #fcffe6;
|
|
4878
|
+
border-color: #eaff8f;
|
|
4911
4879
|
}
|
|
4912
|
-
.condo-
|
|
4880
|
+
.condo-tag-lime-inverse {
|
|
4881
|
+
color: #fff;
|
|
4913
4882
|
background: #a0d911;
|
|
4883
|
+
border-color: #a0d911;
|
|
4914
4884
|
}
|
|
4915
|
-
.condo-
|
|
4916
|
-
|
|
4885
|
+
.condo-tag-green {
|
|
4886
|
+
color: #389e0d;
|
|
4887
|
+
background: #f6ffed;
|
|
4888
|
+
border-color: #b7eb8f;
|
|
4917
4889
|
}
|
|
4918
|
-
.condo-
|
|
4890
|
+
.condo-tag-green-inverse {
|
|
4891
|
+
color: #fff;
|
|
4919
4892
|
background: #52c41a;
|
|
4893
|
+
border-color: #52c41a;
|
|
4920
4894
|
}
|
|
4921
|
-
.condo-
|
|
4922
|
-
|
|
4895
|
+
.condo-tag-blue {
|
|
4896
|
+
color: #096dd9;
|
|
4897
|
+
background: #e6f7ff;
|
|
4898
|
+
border-color: #91d5ff;
|
|
4923
4899
|
}
|
|
4924
|
-
.condo-
|
|
4900
|
+
.condo-tag-blue-inverse {
|
|
4901
|
+
color: #fff;
|
|
4925
4902
|
background: #1890ff;
|
|
4903
|
+
border-color: #1890ff;
|
|
4926
4904
|
}
|
|
4927
|
-
.condo-
|
|
4928
|
-
|
|
4905
|
+
.condo-tag-geekblue {
|
|
4906
|
+
color: #1d39c4;
|
|
4907
|
+
background: #f0f5ff;
|
|
4908
|
+
border-color: #adc6ff;
|
|
4929
4909
|
}
|
|
4930
|
-
.condo-
|
|
4910
|
+
.condo-tag-geekblue-inverse {
|
|
4911
|
+
color: #fff;
|
|
4931
4912
|
background: #2f54eb;
|
|
4913
|
+
border-color: #2f54eb;
|
|
4932
4914
|
}
|
|
4933
|
-
.condo-
|
|
4934
|
-
|
|
4915
|
+
.condo-tag-purple {
|
|
4916
|
+
color: #531dab;
|
|
4917
|
+
background: #f9f0ff;
|
|
4918
|
+
border-color: #d3adf7;
|
|
4935
4919
|
}
|
|
4936
|
-
.condo-
|
|
4920
|
+
.condo-tag-purple-inverse {
|
|
4921
|
+
color: #fff;
|
|
4937
4922
|
background: #722ed1;
|
|
4923
|
+
border-color: #722ed1;
|
|
4938
4924
|
}
|
|
4939
|
-
.condo-
|
|
4940
|
-
|
|
4925
|
+
.condo-tag-success {
|
|
4926
|
+
color: #52c41a;
|
|
4927
|
+
background: #f6ffed;
|
|
4928
|
+
border-color: #b7eb8f;
|
|
4941
4929
|
}
|
|
4942
|
-
.condo-
|
|
4943
|
-
|
|
4930
|
+
.condo-tag-processing {
|
|
4931
|
+
color: #1890ff;
|
|
4932
|
+
background: #e6f7ff;
|
|
4933
|
+
border-color: #91d5ff;
|
|
4944
4934
|
}
|
|
4945
|
-
.condo-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
border-
|
|
4935
|
+
.condo-tag-error {
|
|
4936
|
+
color: #ff4d4f;
|
|
4937
|
+
background: #fff2f0;
|
|
4938
|
+
border-color: #ffccc7;
|
|
4949
4939
|
}
|
|
4950
|
-
.condo-
|
|
4951
|
-
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
width: 100%;
|
|
4955
|
-
border-bottom: none;
|
|
4956
|
-
padding: 6px 0;
|
|
4940
|
+
.condo-tag-warning {
|
|
4941
|
+
color: #faad14;
|
|
4942
|
+
background: #fffbe6;
|
|
4943
|
+
border-color: #ffe58f;
|
|
4957
4944
|
}
|
|
4958
|
-
.condo-
|
|
4959
|
-
|
|
4945
|
+
.condo-tag > .anticon + span,
|
|
4946
|
+
.condo-tag > span + .anticon {
|
|
4947
|
+
margin-left: 7px;
|
|
4960
4948
|
}
|
|
4961
|
-
.condo-
|
|
4949
|
+
.condo-tag.condo-tag-rtl {
|
|
4950
|
+
margin-right: 0;
|
|
4951
|
+
margin-left: 8px;
|
|
4952
|
+
direction: rtl;
|
|
4962
4953
|
text-align: right;
|
|
4963
4954
|
}
|
|
4964
|
-
.condo-
|
|
4965
|
-
|
|
4966
|
-
margin: 0
|
|
4967
|
-
|
|
4955
|
+
.condo-tag-rtl .condo-tag-close-icon {
|
|
4956
|
+
margin-right: 3px;
|
|
4957
|
+
margin-left: 0;
|
|
4958
|
+
}
|
|
4959
|
+
.condo-tag-rtl.condo-tag > .anticon + span,
|
|
4960
|
+
.condo-tag-rtl.condo-tag > span + .anticon {
|
|
4961
|
+
margin-right: 7px;
|
|
4962
|
+
margin-left: 0;
|
|
4968
4963
|
}
|
|
4969
|
-
|
|
4970
|
-
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
4971
|
-
/* stylelint-disable no-duplicate-selectors */
|
|
4972
|
-
/* stylelint-disable */
|
|
4973
|
-
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
4974
4964
|
.condo-tag {
|
|
4975
|
-
|
|
4976
|
-
margin: 0;
|
|
4977
|
-
padding: 0;
|
|
4978
|
-
color: rgba(0, 0, 0, 0.85);
|
|
4979
|
-
font-size: 14px;
|
|
4980
|
-
font-variant: tabular-nums;
|
|
4981
|
-
line-height: 1.5715;
|
|
4982
|
-
list-style: none;
|
|
4983
|
-
font-feature-settings: 'tnum', "tnum";
|
|
4984
|
-
display: inline-block;
|
|
4985
|
-
height: auto;
|
|
4986
|
-
margin-right: 8px;
|
|
4987
|
-
padding: 0 7px;
|
|
4965
|
+
font-weight: 600;
|
|
4988
4966
|
font-size: 12px;
|
|
4989
|
-
|
|
4990
|
-
white-space: nowrap;
|
|
4991
|
-
background: #fafafa;
|
|
4992
|
-
border: 1px solid #d9d9d9;
|
|
4993
|
-
border-radius: 2px;
|
|
4994
|
-
opacity: 1;
|
|
4995
|
-
transition: all 0.3s;
|
|
4996
|
-
}
|
|
4997
|
-
.condo-tag,
|
|
4998
|
-
.condo-tag a,
|
|
4999
|
-
.condo-tag a:hover {
|
|
5000
|
-
color: rgba(0, 0, 0, 0.85);
|
|
5001
|
-
}
|
|
5002
|
-
.condo-tag > a:first-child:last-child {
|
|
5003
|
-
display: inline-block;
|
|
5004
|
-
margin: 0 -8px;
|
|
5005
|
-
padding: 0 8px;
|
|
5006
|
-
}
|
|
5007
|
-
.condo-tag-close-icon {
|
|
5008
|
-
margin-left: 3px;
|
|
5009
|
-
color: rgba(0, 0, 0, 0.45);
|
|
5010
|
-
font-size: 10px;
|
|
5011
|
-
cursor: pointer;
|
|
5012
|
-
transition: all 0.3s;
|
|
5013
|
-
}
|
|
5014
|
-
.condo-tag-close-icon:hover {
|
|
5015
|
-
color: rgba(0, 0, 0, 0.85);
|
|
5016
|
-
}
|
|
5017
|
-
.condo-tag-has-color {
|
|
5018
|
-
border-color: transparent;
|
|
5019
|
-
}
|
|
5020
|
-
.condo-tag-has-color,
|
|
5021
|
-
.condo-tag-has-color a,
|
|
5022
|
-
.condo-tag-has-color a:hover,
|
|
5023
|
-
.condo-tag-has-color .anticon-close,
|
|
5024
|
-
.condo-tag-has-color .anticon-close:hover {
|
|
5025
|
-
color: #fff;
|
|
5026
|
-
}
|
|
5027
|
-
.condo-tag-checkable {
|
|
5028
|
-
background-color: transparent;
|
|
5029
|
-
border-color: transparent;
|
|
5030
|
-
cursor: pointer;
|
|
5031
|
-
}
|
|
5032
|
-
.condo-tag-checkable:not(.condo-tag-checkable-checked):hover {
|
|
5033
|
-
color: #1890ff;
|
|
5034
|
-
}
|
|
5035
|
-
.condo-tag-checkable:active,
|
|
5036
|
-
.condo-tag-checkable-checked {
|
|
5037
|
-
color: #fff;
|
|
5038
|
-
}
|
|
5039
|
-
.condo-tag-checkable-checked {
|
|
5040
|
-
background-color: #1890ff;
|
|
5041
|
-
}
|
|
5042
|
-
.condo-tag-checkable:active {
|
|
5043
|
-
background-color: #096dd9;
|
|
5044
|
-
}
|
|
5045
|
-
.condo-tag-hidden {
|
|
5046
|
-
display: none;
|
|
5047
|
-
}
|
|
5048
|
-
.condo-tag-pink {
|
|
5049
|
-
color: #c41d7f;
|
|
5050
|
-
background: #fff0f6;
|
|
5051
|
-
border-color: #ffadd2;
|
|
5052
|
-
}
|
|
5053
|
-
.condo-tag-pink-inverse {
|
|
5054
|
-
color: #fff;
|
|
5055
|
-
background: #eb2f96;
|
|
5056
|
-
border-color: #eb2f96;
|
|
5057
|
-
}
|
|
5058
|
-
.condo-tag-magenta {
|
|
5059
|
-
color: #c41d7f;
|
|
5060
|
-
background: #fff0f6;
|
|
5061
|
-
border-color: #ffadd2;
|
|
5062
|
-
}
|
|
5063
|
-
.condo-tag-magenta-inverse {
|
|
5064
|
-
color: #fff;
|
|
5065
|
-
background: #eb2f96;
|
|
5066
|
-
border-color: #eb2f96;
|
|
5067
|
-
}
|
|
5068
|
-
.condo-tag-red {
|
|
5069
|
-
color: #cf1322;
|
|
5070
|
-
background: #fff1f0;
|
|
5071
|
-
border-color: #ffa39e;
|
|
5072
|
-
}
|
|
5073
|
-
.condo-tag-red-inverse {
|
|
5074
|
-
color: #fff;
|
|
5075
|
-
background: #f5222d;
|
|
5076
|
-
border-color: #f5222d;
|
|
5077
|
-
}
|
|
5078
|
-
.condo-tag-volcano {
|
|
5079
|
-
color: #d4380d;
|
|
5080
|
-
background: #fff2e8;
|
|
5081
|
-
border-color: #ffbb96;
|
|
5082
|
-
}
|
|
5083
|
-
.condo-tag-volcano-inverse {
|
|
5084
|
-
color: #fff;
|
|
5085
|
-
background: #fa541c;
|
|
5086
|
-
border-color: #fa541c;
|
|
5087
|
-
}
|
|
5088
|
-
.condo-tag-orange {
|
|
5089
|
-
color: #d46b08;
|
|
5090
|
-
background: #fff7e6;
|
|
5091
|
-
border-color: #ffd591;
|
|
5092
|
-
}
|
|
5093
|
-
.condo-tag-orange-inverse {
|
|
5094
|
-
color: #fff;
|
|
5095
|
-
background: #fa8c16;
|
|
5096
|
-
border-color: #fa8c16;
|
|
5097
|
-
}
|
|
5098
|
-
.condo-tag-yellow {
|
|
5099
|
-
color: #d4b106;
|
|
5100
|
-
background: #feffe6;
|
|
5101
|
-
border-color: #fffb8f;
|
|
5102
|
-
}
|
|
5103
|
-
.condo-tag-yellow-inverse {
|
|
5104
|
-
color: #fff;
|
|
5105
|
-
background: #fadb14;
|
|
5106
|
-
border-color: #fadb14;
|
|
5107
|
-
}
|
|
5108
|
-
.condo-tag-gold {
|
|
5109
|
-
color: #d48806;
|
|
5110
|
-
background: #fffbe6;
|
|
5111
|
-
border-color: #ffe58f;
|
|
5112
|
-
}
|
|
5113
|
-
.condo-tag-gold-inverse {
|
|
5114
|
-
color: #fff;
|
|
5115
|
-
background: #faad14;
|
|
5116
|
-
border-color: #faad14;
|
|
5117
|
-
}
|
|
5118
|
-
.condo-tag-cyan {
|
|
5119
|
-
color: #08979c;
|
|
5120
|
-
background: #e6fffb;
|
|
5121
|
-
border-color: #87e8de;
|
|
5122
|
-
}
|
|
5123
|
-
.condo-tag-cyan-inverse {
|
|
5124
|
-
color: #fff;
|
|
5125
|
-
background: #13c2c2;
|
|
5126
|
-
border-color: #13c2c2;
|
|
5127
|
-
}
|
|
5128
|
-
.condo-tag-lime {
|
|
5129
|
-
color: #7cb305;
|
|
5130
|
-
background: #fcffe6;
|
|
5131
|
-
border-color: #eaff8f;
|
|
5132
|
-
}
|
|
5133
|
-
.condo-tag-lime-inverse {
|
|
5134
|
-
color: #fff;
|
|
5135
|
-
background: #a0d911;
|
|
5136
|
-
border-color: #a0d911;
|
|
5137
|
-
}
|
|
5138
|
-
.condo-tag-green {
|
|
5139
|
-
color: #389e0d;
|
|
5140
|
-
background: #f6ffed;
|
|
5141
|
-
border-color: #b7eb8f;
|
|
5142
|
-
}
|
|
5143
|
-
.condo-tag-green-inverse {
|
|
5144
|
-
color: #fff;
|
|
5145
|
-
background: #52c41a;
|
|
5146
|
-
border-color: #52c41a;
|
|
5147
|
-
}
|
|
5148
|
-
.condo-tag-blue {
|
|
5149
|
-
color: #096dd9;
|
|
5150
|
-
background: #e6f7ff;
|
|
5151
|
-
border-color: #91d5ff;
|
|
5152
|
-
}
|
|
5153
|
-
.condo-tag-blue-inverse {
|
|
5154
|
-
color: #fff;
|
|
5155
|
-
background: #1890ff;
|
|
5156
|
-
border-color: #1890ff;
|
|
5157
|
-
}
|
|
5158
|
-
.condo-tag-geekblue {
|
|
5159
|
-
color: #1d39c4;
|
|
5160
|
-
background: #f0f5ff;
|
|
5161
|
-
border-color: #adc6ff;
|
|
5162
|
-
}
|
|
5163
|
-
.condo-tag-geekblue-inverse {
|
|
5164
|
-
color: #fff;
|
|
5165
|
-
background: #2f54eb;
|
|
5166
|
-
border-color: #2f54eb;
|
|
5167
|
-
}
|
|
5168
|
-
.condo-tag-purple {
|
|
5169
|
-
color: #531dab;
|
|
5170
|
-
background: #f9f0ff;
|
|
5171
|
-
border-color: #d3adf7;
|
|
5172
|
-
}
|
|
5173
|
-
.condo-tag-purple-inverse {
|
|
5174
|
-
color: #fff;
|
|
5175
|
-
background: #722ed1;
|
|
5176
|
-
border-color: #722ed1;
|
|
5177
|
-
}
|
|
5178
|
-
.condo-tag-success {
|
|
5179
|
-
color: #52c41a;
|
|
5180
|
-
background: #f6ffed;
|
|
5181
|
-
border-color: #b7eb8f;
|
|
5182
|
-
}
|
|
5183
|
-
.condo-tag-processing {
|
|
5184
|
-
color: #1890ff;
|
|
5185
|
-
background: #e6f7ff;
|
|
5186
|
-
border-color: #91d5ff;
|
|
5187
|
-
}
|
|
5188
|
-
.condo-tag-error {
|
|
5189
|
-
color: #ff4d4f;
|
|
5190
|
-
background: #fff2f0;
|
|
5191
|
-
border-color: #ffccc7;
|
|
5192
|
-
}
|
|
5193
|
-
.condo-tag-warning {
|
|
5194
|
-
color: #faad14;
|
|
5195
|
-
background: #fffbe6;
|
|
5196
|
-
border-color: #ffe58f;
|
|
5197
|
-
}
|
|
5198
|
-
.condo-tag > .anticon + span,
|
|
5199
|
-
.condo-tag > span + .anticon {
|
|
5200
|
-
margin-left: 7px;
|
|
5201
|
-
}
|
|
5202
|
-
.condo-tag.condo-tag-rtl {
|
|
5203
|
-
margin-right: 0;
|
|
5204
|
-
margin-left: 8px;
|
|
5205
|
-
direction: rtl;
|
|
5206
|
-
text-align: right;
|
|
5207
|
-
}
|
|
5208
|
-
.condo-tag-rtl .condo-tag-close-icon {
|
|
5209
|
-
margin-right: 3px;
|
|
5210
|
-
margin-left: 0;
|
|
5211
|
-
}
|
|
5212
|
-
.condo-tag-rtl.condo-tag > .anticon + span,
|
|
5213
|
-
.condo-tag-rtl.condo-tag > span + .anticon {
|
|
5214
|
-
margin-right: 7px;
|
|
5215
|
-
margin-left: 0;
|
|
5216
|
-
}
|
|
5217
|
-
.condo-tag {
|
|
5218
|
-
font-weight: 600;
|
|
5219
|
-
font-size: 12px;
|
|
5220
|
-
font-family: "Open Sans", var(--condo-font-fallback);
|
|
4967
|
+
font-family: "Open Sans", var(--condo-font-fallback);
|
|
5221
4968
|
line-height: 20px;
|
|
5222
4969
|
letter-spacing: -0.01em;
|
|
5223
4970
|
margin: 0;
|
|
@@ -6874,36 +6621,98 @@ span.condo-typography-ellipsis-single-line {
|
|
|
6874
6621
|
letter-spacing: -0.01em;
|
|
6875
6622
|
}
|
|
6876
6623
|
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
6881
|
-
.condo-tabs-small > .condo-tabs-nav .condo-tabs-tab {
|
|
6882
|
-
padding: 8px 0;
|
|
6883
|
-
font-size: 14px;
|
|
6624
|
+
.condo-steps {
|
|
6625
|
+
background: #f2f4f6;
|
|
6626
|
+
border-radius: 12px;
|
|
6884
6627
|
}
|
|
6885
|
-
.condo-
|
|
6886
|
-
padding:
|
|
6887
|
-
font-size: 16px;
|
|
6628
|
+
.condo-steps-large {
|
|
6629
|
+
padding: 24px;
|
|
6888
6630
|
}
|
|
6889
|
-
.condo-
|
|
6890
|
-
|
|
6631
|
+
.condo-steps-large .condo-carousel .slick-arrow.slick-next {
|
|
6632
|
+
right: -44px;
|
|
6891
6633
|
}
|
|
6892
|
-
.condo-
|
|
6893
|
-
|
|
6634
|
+
.condo-steps-large .condo-carousel .slick-arrow.slick-prev {
|
|
6635
|
+
left: -44px;
|
|
6894
6636
|
}
|
|
6895
|
-
.condo-
|
|
6896
|
-
|
|
6637
|
+
.condo-steps-small {
|
|
6638
|
+
padding: 16px 20px;
|
|
6897
6639
|
}
|
|
6898
|
-
.condo-
|
|
6899
|
-
|
|
6640
|
+
.condo-steps-small .condo-carousel .slick-arrow.slick-next {
|
|
6641
|
+
right: -34px;
|
|
6900
6642
|
}
|
|
6901
|
-
.condo-
|
|
6902
|
-
|
|
6643
|
+
.condo-steps-small .condo-carousel .slick-arrow.slick-prev {
|
|
6644
|
+
left: -34px;
|
|
6903
6645
|
}
|
|
6904
|
-
.condo-
|
|
6905
|
-
margin
|
|
6906
|
-
|
|
6646
|
+
.condo-steps .condo-carousel .slick-list {
|
|
6647
|
+
margin: 0 -12px;
|
|
6648
|
+
padding: 0;
|
|
6649
|
+
}
|
|
6650
|
+
.condo-steps .condo-carousel .slick-slide > div {
|
|
6651
|
+
margin: 0 12px;
|
|
6652
|
+
}
|
|
6653
|
+
.condo-steps-step {
|
|
6654
|
+
display: flex;
|
|
6655
|
+
flex-direction: row;
|
|
6656
|
+
align-items: center;
|
|
6657
|
+
height: 100%;
|
|
6658
|
+
cursor: not-allowed;
|
|
6659
|
+
}
|
|
6660
|
+
.condo-steps-step .condo-steps-step-index {
|
|
6661
|
+
display: flex;
|
|
6662
|
+
align-items: center;
|
|
6663
|
+
justify-content: center;
|
|
6664
|
+
width: 40px;
|
|
6665
|
+
height: 40px;
|
|
6666
|
+
color: #707695;
|
|
6667
|
+
background: #d0d3e5;
|
|
6668
|
+
border-radius: 50%;
|
|
6669
|
+
}
|
|
6670
|
+
.condo-steps-step-small .condo-steps-step-index {
|
|
6671
|
+
width: 32px;
|
|
6672
|
+
height: 32px;
|
|
6673
|
+
}
|
|
6674
|
+
.condo-steps-step-active {
|
|
6675
|
+
cursor: pointer;
|
|
6676
|
+
}
|
|
6677
|
+
.condo-steps-step-active .condo-steps-step-index {
|
|
6678
|
+
color: #fff;
|
|
6679
|
+
background: #222;
|
|
6680
|
+
}
|
|
6681
|
+
.condo-steps-step-done .condo-steps-step-index {
|
|
6682
|
+
color: #fff;
|
|
6683
|
+
background: linear-gradient(90deg, #4cd174 0%, #6db8f2 100%);
|
|
6684
|
+
}
|
|
6685
|
+
|
|
6686
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
6687
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
6688
|
+
/* stylelint-disable */
|
|
6689
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
6690
|
+
.condo-tabs-small > .condo-tabs-nav .condo-tabs-tab {
|
|
6691
|
+
padding: 8px 0;
|
|
6692
|
+
font-size: 14px;
|
|
6693
|
+
}
|
|
6694
|
+
.condo-tabs-large > .condo-tabs-nav .condo-tabs-tab {
|
|
6695
|
+
padding: 16px 0;
|
|
6696
|
+
font-size: 16px;
|
|
6697
|
+
}
|
|
6698
|
+
.condo-tabs-card.condo-tabs-small > .condo-tabs-nav .condo-tabs-tab {
|
|
6699
|
+
padding: 6px 16px;
|
|
6700
|
+
}
|
|
6701
|
+
.condo-tabs-card.condo-tabs-large > .condo-tabs-nav .condo-tabs-tab {
|
|
6702
|
+
padding: 7px 16px 6px;
|
|
6703
|
+
}
|
|
6704
|
+
.condo-tabs-rtl {
|
|
6705
|
+
direction: rtl;
|
|
6706
|
+
}
|
|
6707
|
+
.condo-tabs-rtl .condo-tabs-nav .condo-tabs-tab {
|
|
6708
|
+
margin: 0 0 0 32px;
|
|
6709
|
+
}
|
|
6710
|
+
.condo-tabs-rtl .condo-tabs-nav .condo-tabs-tab:last-of-type {
|
|
6711
|
+
margin-left: 0;
|
|
6712
|
+
}
|
|
6713
|
+
.condo-tabs-rtl .condo-tabs-nav .condo-tabs-tab .anticon {
|
|
6714
|
+
margin-right: 0;
|
|
6715
|
+
margin-left: 12px;
|
|
6907
6716
|
}
|
|
6908
6717
|
.condo-tabs-rtl .condo-tabs-nav .condo-tabs-tab .condo-tabs-tab-remove {
|
|
6909
6718
|
margin-right: 8px;
|
|
@@ -7546,6 +7355,296 @@ span.condo-typography-ellipsis-single-line {
|
|
|
7546
7355
|
display: none !important;
|
|
7547
7356
|
}
|
|
7548
7357
|
|
|
7358
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
7359
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
7360
|
+
/* stylelint-disable */
|
|
7361
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
7362
|
+
.condo-tooltip {
|
|
7363
|
+
box-sizing: border-box;
|
|
7364
|
+
margin: 0;
|
|
7365
|
+
padding: 0;
|
|
7366
|
+
color: rgba(0, 0, 0, 0.85);
|
|
7367
|
+
font-size: 14px;
|
|
7368
|
+
font-variant: tabular-nums;
|
|
7369
|
+
line-height: 1.5715;
|
|
7370
|
+
list-style: none;
|
|
7371
|
+
font-feature-settings: 'tnum', "tnum";
|
|
7372
|
+
position: absolute;
|
|
7373
|
+
z-index: 1070;
|
|
7374
|
+
display: block;
|
|
7375
|
+
width: -webkit-max-content;
|
|
7376
|
+
width: -moz-max-content;
|
|
7377
|
+
width: max-content;
|
|
7378
|
+
width: intrinsic;
|
|
7379
|
+
max-width: 250px;
|
|
7380
|
+
visibility: visible;
|
|
7381
|
+
}
|
|
7382
|
+
.condo-tooltip-content {
|
|
7383
|
+
position: relative;
|
|
7384
|
+
}
|
|
7385
|
+
.condo-tooltip-hidden {
|
|
7386
|
+
display: none;
|
|
7387
|
+
}
|
|
7388
|
+
.condo-tooltip-placement-top,
|
|
7389
|
+
.condo-tooltip-placement-topLeft,
|
|
7390
|
+
.condo-tooltip-placement-topRight {
|
|
7391
|
+
padding-bottom: 14.3137085px;
|
|
7392
|
+
}
|
|
7393
|
+
.condo-tooltip-placement-right,
|
|
7394
|
+
.condo-tooltip-placement-rightTop,
|
|
7395
|
+
.condo-tooltip-placement-rightBottom {
|
|
7396
|
+
padding-left: 14.3137085px;
|
|
7397
|
+
}
|
|
7398
|
+
.condo-tooltip-placement-bottom,
|
|
7399
|
+
.condo-tooltip-placement-bottomLeft,
|
|
7400
|
+
.condo-tooltip-placement-bottomRight {
|
|
7401
|
+
padding-top: 14.3137085px;
|
|
7402
|
+
}
|
|
7403
|
+
.condo-tooltip-placement-left,
|
|
7404
|
+
.condo-tooltip-placement-leftTop,
|
|
7405
|
+
.condo-tooltip-placement-leftBottom {
|
|
7406
|
+
padding-right: 14.3137085px;
|
|
7407
|
+
}
|
|
7408
|
+
.condo-tooltip-inner {
|
|
7409
|
+
min-width: 30px;
|
|
7410
|
+
min-height: 32px;
|
|
7411
|
+
padding: 6px 8px;
|
|
7412
|
+
color: #fff;
|
|
7413
|
+
text-align: left;
|
|
7414
|
+
text-decoration: none;
|
|
7415
|
+
word-wrap: break-word;
|
|
7416
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
7417
|
+
border-radius: 2px;
|
|
7418
|
+
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);
|
|
7419
|
+
}
|
|
7420
|
+
.condo-tooltip-arrow {
|
|
7421
|
+
position: absolute;
|
|
7422
|
+
z-index: 2;
|
|
7423
|
+
display: block;
|
|
7424
|
+
width: 22px;
|
|
7425
|
+
height: 22px;
|
|
7426
|
+
overflow: hidden;
|
|
7427
|
+
background: transparent;
|
|
7428
|
+
pointer-events: none;
|
|
7429
|
+
}
|
|
7430
|
+
.condo-tooltip-arrow-content {
|
|
7431
|
+
--antd-arrow-background-color: linear-gradient(to right bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
|
|
7432
|
+
position: absolute;
|
|
7433
|
+
top: 0;
|
|
7434
|
+
right: 0;
|
|
7435
|
+
bottom: 0;
|
|
7436
|
+
left: 0;
|
|
7437
|
+
display: block;
|
|
7438
|
+
width: 11.3137085px;
|
|
7439
|
+
height: 11.3137085px;
|
|
7440
|
+
margin: auto;
|
|
7441
|
+
content: '';
|
|
7442
|
+
pointer-events: auto;
|
|
7443
|
+
border-radius: 0 0 2px;
|
|
7444
|
+
pointer-events: none;
|
|
7445
|
+
}
|
|
7446
|
+
.condo-tooltip-arrow-content::before {
|
|
7447
|
+
position: absolute;
|
|
7448
|
+
top: -11.3137085px;
|
|
7449
|
+
left: -11.3137085px;
|
|
7450
|
+
width: 33.9411255px;
|
|
7451
|
+
height: 33.9411255px;
|
|
7452
|
+
background: var(--antd-arrow-background-color);
|
|
7453
|
+
background-repeat: no-repeat;
|
|
7454
|
+
background-position: -10px -10px;
|
|
7455
|
+
content: '';
|
|
7456
|
+
-webkit-clip-path: inset(33% 33%);
|
|
7457
|
+
clip-path: inset(33% 33%);
|
|
7458
|
+
-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');
|
|
7459
|
+
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');
|
|
7460
|
+
}
|
|
7461
|
+
.condo-tooltip-placement-top .condo-tooltip-arrow,
|
|
7462
|
+
.condo-tooltip-placement-topLeft .condo-tooltip-arrow,
|
|
7463
|
+
.condo-tooltip-placement-topRight .condo-tooltip-arrow {
|
|
7464
|
+
bottom: 0;
|
|
7465
|
+
transform: translateY(100%);
|
|
7466
|
+
}
|
|
7467
|
+
.condo-tooltip-placement-top .condo-tooltip-arrow-content,
|
|
7468
|
+
.condo-tooltip-placement-topLeft .condo-tooltip-arrow-content,
|
|
7469
|
+
.condo-tooltip-placement-topRight .condo-tooltip-arrow-content {
|
|
7470
|
+
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
7471
|
+
transform: translateY(-11px) rotate(45deg);
|
|
7472
|
+
}
|
|
7473
|
+
.condo-tooltip-placement-top .condo-tooltip-arrow {
|
|
7474
|
+
left: 50%;
|
|
7475
|
+
transform: translateY(100%) translateX(-50%);
|
|
7476
|
+
}
|
|
7477
|
+
.condo-tooltip-placement-topLeft .condo-tooltip-arrow {
|
|
7478
|
+
left: 13px;
|
|
7479
|
+
}
|
|
7480
|
+
.condo-tooltip-placement-topRight .condo-tooltip-arrow {
|
|
7481
|
+
right: 13px;
|
|
7482
|
+
}
|
|
7483
|
+
.condo-tooltip-placement-right .condo-tooltip-arrow,
|
|
7484
|
+
.condo-tooltip-placement-rightTop .condo-tooltip-arrow,
|
|
7485
|
+
.condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
|
|
7486
|
+
left: 0;
|
|
7487
|
+
transform: translateX(-100%);
|
|
7488
|
+
}
|
|
7489
|
+
.condo-tooltip-placement-right .condo-tooltip-arrow-content,
|
|
7490
|
+
.condo-tooltip-placement-rightTop .condo-tooltip-arrow-content,
|
|
7491
|
+
.condo-tooltip-placement-rightBottom .condo-tooltip-arrow-content {
|
|
7492
|
+
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
7493
|
+
transform: translateX(11px) rotate(135deg);
|
|
7494
|
+
}
|
|
7495
|
+
.condo-tooltip-placement-right .condo-tooltip-arrow {
|
|
7496
|
+
top: 50%;
|
|
7497
|
+
transform: translateX(-100%) translateY(-50%);
|
|
7498
|
+
}
|
|
7499
|
+
.condo-tooltip-placement-rightTop .condo-tooltip-arrow {
|
|
7500
|
+
top: 5px;
|
|
7501
|
+
}
|
|
7502
|
+
.condo-tooltip-placement-rightBottom .condo-tooltip-arrow {
|
|
7503
|
+
bottom: 5px;
|
|
7504
|
+
}
|
|
7505
|
+
.condo-tooltip-placement-left .condo-tooltip-arrow,
|
|
7506
|
+
.condo-tooltip-placement-leftTop .condo-tooltip-arrow,
|
|
7507
|
+
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
|
|
7508
|
+
right: 0;
|
|
7509
|
+
transform: translateX(100%);
|
|
7510
|
+
}
|
|
7511
|
+
.condo-tooltip-placement-left .condo-tooltip-arrow-content,
|
|
7512
|
+
.condo-tooltip-placement-leftTop .condo-tooltip-arrow-content,
|
|
7513
|
+
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow-content {
|
|
7514
|
+
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
7515
|
+
transform: translateX(-11px) rotate(315deg);
|
|
7516
|
+
}
|
|
7517
|
+
.condo-tooltip-placement-left .condo-tooltip-arrow {
|
|
7518
|
+
top: 50%;
|
|
7519
|
+
transform: translateX(100%) translateY(-50%);
|
|
7520
|
+
}
|
|
7521
|
+
.condo-tooltip-placement-leftTop .condo-tooltip-arrow {
|
|
7522
|
+
top: 5px;
|
|
7523
|
+
}
|
|
7524
|
+
.condo-tooltip-placement-leftBottom .condo-tooltip-arrow {
|
|
7525
|
+
bottom: 5px;
|
|
7526
|
+
}
|
|
7527
|
+
.condo-tooltip-placement-bottom .condo-tooltip-arrow,
|
|
7528
|
+
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow,
|
|
7529
|
+
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
|
|
7530
|
+
top: 0;
|
|
7531
|
+
transform: translateY(-100%);
|
|
7532
|
+
}
|
|
7533
|
+
.condo-tooltip-placement-bottom .condo-tooltip-arrow-content,
|
|
7534
|
+
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow-content,
|
|
7535
|
+
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow-content {
|
|
7536
|
+
box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
7537
|
+
transform: translateY(11px) rotate(225deg);
|
|
7538
|
+
}
|
|
7539
|
+
.condo-tooltip-placement-bottom .condo-tooltip-arrow {
|
|
7540
|
+
left: 50%;
|
|
7541
|
+
transform: translateY(-100%) translateX(-50%);
|
|
7542
|
+
}
|
|
7543
|
+
.condo-tooltip-placement-bottomLeft .condo-tooltip-arrow {
|
|
7544
|
+
left: 13px;
|
|
7545
|
+
}
|
|
7546
|
+
.condo-tooltip-placement-bottomRight .condo-tooltip-arrow {
|
|
7547
|
+
right: 13px;
|
|
7548
|
+
}
|
|
7549
|
+
.condo-tooltip-pink .condo-tooltip-inner {
|
|
7550
|
+
background-color: #eb2f96;
|
|
7551
|
+
}
|
|
7552
|
+
.condo-tooltip-pink .condo-tooltip-arrow-content::before {
|
|
7553
|
+
background: #eb2f96;
|
|
7554
|
+
}
|
|
7555
|
+
.condo-tooltip-magenta .condo-tooltip-inner {
|
|
7556
|
+
background-color: #eb2f96;
|
|
7557
|
+
}
|
|
7558
|
+
.condo-tooltip-magenta .condo-tooltip-arrow-content::before {
|
|
7559
|
+
background: #eb2f96;
|
|
7560
|
+
}
|
|
7561
|
+
.condo-tooltip-red .condo-tooltip-inner {
|
|
7562
|
+
background-color: #f5222d;
|
|
7563
|
+
}
|
|
7564
|
+
.condo-tooltip-red .condo-tooltip-arrow-content::before {
|
|
7565
|
+
background: #f5222d;
|
|
7566
|
+
}
|
|
7567
|
+
.condo-tooltip-volcano .condo-tooltip-inner {
|
|
7568
|
+
background-color: #fa541c;
|
|
7569
|
+
}
|
|
7570
|
+
.condo-tooltip-volcano .condo-tooltip-arrow-content::before {
|
|
7571
|
+
background: #fa541c;
|
|
7572
|
+
}
|
|
7573
|
+
.condo-tooltip-orange .condo-tooltip-inner {
|
|
7574
|
+
background-color: #fa8c16;
|
|
7575
|
+
}
|
|
7576
|
+
.condo-tooltip-orange .condo-tooltip-arrow-content::before {
|
|
7577
|
+
background: #fa8c16;
|
|
7578
|
+
}
|
|
7579
|
+
.condo-tooltip-yellow .condo-tooltip-inner {
|
|
7580
|
+
background-color: #fadb14;
|
|
7581
|
+
}
|
|
7582
|
+
.condo-tooltip-yellow .condo-tooltip-arrow-content::before {
|
|
7583
|
+
background: #fadb14;
|
|
7584
|
+
}
|
|
7585
|
+
.condo-tooltip-gold .condo-tooltip-inner {
|
|
7586
|
+
background-color: #faad14;
|
|
7587
|
+
}
|
|
7588
|
+
.condo-tooltip-gold .condo-tooltip-arrow-content::before {
|
|
7589
|
+
background: #faad14;
|
|
7590
|
+
}
|
|
7591
|
+
.condo-tooltip-cyan .condo-tooltip-inner {
|
|
7592
|
+
background-color: #13c2c2;
|
|
7593
|
+
}
|
|
7594
|
+
.condo-tooltip-cyan .condo-tooltip-arrow-content::before {
|
|
7595
|
+
background: #13c2c2;
|
|
7596
|
+
}
|
|
7597
|
+
.condo-tooltip-lime .condo-tooltip-inner {
|
|
7598
|
+
background-color: #a0d911;
|
|
7599
|
+
}
|
|
7600
|
+
.condo-tooltip-lime .condo-tooltip-arrow-content::before {
|
|
7601
|
+
background: #a0d911;
|
|
7602
|
+
}
|
|
7603
|
+
.condo-tooltip-green .condo-tooltip-inner {
|
|
7604
|
+
background-color: #52c41a;
|
|
7605
|
+
}
|
|
7606
|
+
.condo-tooltip-green .condo-tooltip-arrow-content::before {
|
|
7607
|
+
background: #52c41a;
|
|
7608
|
+
}
|
|
7609
|
+
.condo-tooltip-blue .condo-tooltip-inner {
|
|
7610
|
+
background-color: #1890ff;
|
|
7611
|
+
}
|
|
7612
|
+
.condo-tooltip-blue .condo-tooltip-arrow-content::before {
|
|
7613
|
+
background: #1890ff;
|
|
7614
|
+
}
|
|
7615
|
+
.condo-tooltip-geekblue .condo-tooltip-inner {
|
|
7616
|
+
background-color: #2f54eb;
|
|
7617
|
+
}
|
|
7618
|
+
.condo-tooltip-geekblue .condo-tooltip-arrow-content::before {
|
|
7619
|
+
background: #2f54eb;
|
|
7620
|
+
}
|
|
7621
|
+
.condo-tooltip-purple .condo-tooltip-inner {
|
|
7622
|
+
background-color: #722ed1;
|
|
7623
|
+
}
|
|
7624
|
+
.condo-tooltip-purple .condo-tooltip-arrow-content::before {
|
|
7625
|
+
background: #722ed1;
|
|
7626
|
+
}
|
|
7627
|
+
.condo-tooltip-rtl {
|
|
7628
|
+
direction: rtl;
|
|
7629
|
+
}
|
|
7630
|
+
.condo-tooltip-rtl .condo-tooltip-inner {
|
|
7631
|
+
text-align: right;
|
|
7632
|
+
}
|
|
7633
|
+
.condo-tooltip > .condo-tooltip-content .condo-tooltip-inner {
|
|
7634
|
+
min-height: 0;
|
|
7635
|
+
padding: 12px;
|
|
7636
|
+
color: #222;
|
|
7637
|
+
font-size: 12px;
|
|
7638
|
+
font-family: "Open Sans", var(--condo-font-fallback);
|
|
7639
|
+
line-height: 20px;
|
|
7640
|
+
background-color: #fff;
|
|
7641
|
+
border-radius: 12px;
|
|
7642
|
+
box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
|
|
7643
|
+
}
|
|
7644
|
+
.condo-tooltip > .condo-tooltip-content .condo-tooltip-arrow {
|
|
7645
|
+
display: none;
|
|
7646
|
+
}
|
|
7647
|
+
|
|
7549
7648
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
7550
7649
|
/* stylelint-disable no-duplicate-selectors */
|
|
7551
7650
|
/* stylelint-disable */
|