@open-condo/ui 1.16.0 → 1.18.2

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.
Files changed (33) hide show
  1. package/dist/components/Banner/banner.d.ts +1 -0
  2. package/dist/components/Banner/banner.d.ts.map +1 -1
  3. package/dist/components/Button/button.d.ts +1 -8
  4. package/dist/components/Button/button.d.ts.map +1 -1
  5. package/dist/components/Carousel/carousel.d.ts +1 -1
  6. package/dist/components/Checkbox/checkbox.d.ts +1 -1
  7. package/dist/components/Checkbox/checkbox.d.ts.map +1 -1
  8. package/dist/components/Markdown/codeWrapper.d.ts +3 -0
  9. package/dist/components/Markdown/codeWrapper.d.ts.map +1 -0
  10. package/dist/components/Markdown/index.d.ts +2 -1
  11. package/dist/components/Markdown/index.d.ts.map +1 -1
  12. package/dist/components/Markdown/markdown.d.ts.map +1 -1
  13. package/dist/components/Radio/radio.d.ts +2 -2
  14. package/dist/components/Radio/radio.d.ts.map +1 -1
  15. package/dist/components/Select/constants.d.ts +2 -0
  16. package/dist/components/Select/constants.d.ts.map +1 -0
  17. package/dist/components/Select/index.d.ts +5 -0
  18. package/dist/components/Select/index.d.ts.map +1 -0
  19. package/dist/components/Select/select.d.ts +25 -0
  20. package/dist/components/Select/select.d.ts.map +1 -0
  21. package/dist/components/Space/space.d.ts +4 -2
  22. package/dist/components/Space/space.d.ts.map +1 -1
  23. package/dist/components/Typography/title.d.ts +1 -1
  24. package/dist/components/_utils/analytics.d.ts +19 -5
  25. package/dist/components/_utils/analytics.d.ts.map +1 -1
  26. package/dist/index.d.ts +3 -1
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.js +3040 -3027
  29. package/dist/style-vars/variables.css +161 -0
  30. package/dist/style-vars/variables.less +158 -0
  31. package/dist/styles.css +1628 -570
  32. package/dist/styles.min.css +2 -2
  33. package/package.json +9 -5
package/dist/styles.css CHANGED
@@ -54,6 +54,10 @@
54
54
  font-display: swap;
55
55
  src: url(https://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49o.ttf) format('truetype');
56
56
  }
57
+ :root {
58
+ --condo-font-fallback: sans-serif;
59
+ --condo-font-fallback-mono: consolas, monaco, "Andale Mono", "Ubuntu Mono", monospace;
60
+ }
57
61
 
58
62
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
59
63
  /* stylelint-disable no-duplicate-selectors */
@@ -217,7 +221,7 @@
217
221
  margin: 0;
218
222
  font-weight: 400;
219
223
  font-size: 14px;
220
- font-family: "Open Sans", sans-serif;
224
+ font-family: "Open Sans", var(--condo-font-fallback);
221
225
  line-height: 22px;
222
226
  letter-spacing: -0.01em;
223
227
  }
@@ -255,7 +259,7 @@
255
259
  .condo-alert-message {
256
260
  font-weight: 600;
257
261
  font-size: 16px;
258
- font-family: "Open Sans", sans-serif;
262
+ font-family: "Open Sans", var(--condo-font-fallback);
259
263
  line-height: 24px;
260
264
  letter-spacing: -0.01em;
261
265
  margin: 0;
@@ -263,7 +267,7 @@
263
267
  .condo-alert-with-description .condo-alert-message {
264
268
  font-weight: 600;
265
269
  font-size: 16px;
266
- font-family: "Open Sans", sans-serif;
270
+ font-family: "Open Sans", var(--condo-font-fallback);
267
271
  line-height: 24px;
268
272
  letter-spacing: -0.01em;
269
273
  margin: 0;
@@ -2263,11 +2267,14 @@ a.condo-btn-sm {
2263
2267
  .condo-btn {
2264
2268
  font-weight: 600;
2265
2269
  font-size: 16px;
2266
- font-family: "Open Sans", sans-serif;
2270
+ font-family: "Open Sans", var(--condo-font-fallback);
2267
2271
  line-height: 24px;
2268
2272
  letter-spacing: -0.01em;
2269
2273
  margin: 0;
2270
2274
  position: relative;
2275
+ display: inline-flex;
2276
+ align-items: center;
2277
+ justify-content: center;
2271
2278
  text-shadow: none;
2272
2279
  border-radius: 8px;
2273
2280
  box-shadow: none;
@@ -2662,6 +2669,9 @@ a.condo-btn-sm {
2662
2669
  .condo-btn-secondary.condo-btn-dangerous:disabled:focus::before {
2663
2670
  opacity: 0;
2664
2671
  }
2672
+ .condo-btn > .condo-btn-icon {
2673
+ display: inline-flex;
2674
+ }
2665
2675
 
2666
2676
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2667
2677
  /* stylelint-disable no-duplicate-selectors */
@@ -2947,7 +2957,7 @@ a.condo-btn-sm {
2947
2957
  margin: 0;
2948
2958
  font-weight: 400;
2949
2959
  font-size: 16px;
2950
- font-family: "Open Sans", sans-serif;
2960
+ font-family: "Open Sans", var(--condo-font-fallback);
2951
2961
  line-height: 24px;
2952
2962
  letter-spacing: -0.01em;
2953
2963
  }
@@ -2955,7 +2965,7 @@ a.condo-btn-sm {
2955
2965
  margin: 0;
2956
2966
  font-weight: 400;
2957
2967
  font-size: 14px;
2958
- font-family: "Open Sans", sans-serif;
2968
+ font-family: "Open Sans", var(--condo-font-fallback);
2959
2969
  line-height: 22px;
2960
2970
  letter-spacing: -0.01em;
2961
2971
  }
@@ -2963,7 +2973,7 @@ a.condo-btn-sm {
2963
2973
  margin: 0;
2964
2974
  font-weight: 400;
2965
2975
  font-size: 12px;
2966
- font-family: "Open Sans", sans-serif;
2976
+ font-family: "Open Sans", var(--condo-font-fallback);
2967
2977
  line-height: 20px;
2968
2978
  letter-spacing: -0.01em;
2969
2979
  }
@@ -3039,7 +3049,7 @@ div.condo-typography-h1 > textarea,
3039
3049
  .condo-typography h1 {
3040
3050
  font-weight: 700;
3041
3051
  font-size: 38px;
3042
- font-family: "Open Sans", sans-serif;
3052
+ font-family: "Open Sans", var(--condo-font-fallback);
3043
3053
  line-height: 46px;
3044
3054
  letter-spacing: -0.03em;
3045
3055
  margin: 0;
@@ -3050,7 +3060,7 @@ div.condo-typography-h2 > textarea,
3050
3060
  .condo-typography h2 {
3051
3061
  font-weight: 700;
3052
3062
  font-size: 24px;
3053
- font-family: "Open Sans", sans-serif;
3063
+ font-family: "Open Sans", var(--condo-font-fallback);
3054
3064
  line-height: 32px;
3055
3065
  letter-spacing: -0.03em;
3056
3066
  margin: 0;
@@ -3061,7 +3071,7 @@ div.condo-typography-h3 > textarea,
3061
3071
  .condo-typography h3 {
3062
3072
  font-weight: 700;
3063
3073
  font-size: 20px;
3064
- font-family: "Open Sans", sans-serif;
3074
+ font-family: "Open Sans", var(--condo-font-fallback);
3065
3075
  line-height: 28px;
3066
3076
  letter-spacing: -0.03em;
3067
3077
  margin: 0;
@@ -3072,7 +3082,7 @@ div.condo-typography-h4 > textarea,
3072
3082
  .condo-typography h4 {
3073
3083
  font-weight: 600;
3074
3084
  font-size: 16px;
3075
- font-family: "Open Sans", sans-serif;
3085
+ font-family: "Open Sans", var(--condo-font-fallback);
3076
3086
  line-height: 24px;
3077
3087
  letter-spacing: -0.01em;
3078
3088
  margin: 0;
@@ -3083,7 +3093,7 @@ div.condo-typography-h5 > textarea,
3083
3093
  .condo-typography h5 {
3084
3094
  font-weight: 600;
3085
3095
  font-size: 14px;
3086
- font-family: "Open Sans", sans-serif;
3096
+ font-family: "Open Sans", var(--condo-font-fallback);
3087
3097
  line-height: 22px;
3088
3098
  letter-spacing: -0.01em;
3089
3099
  margin: 0;
@@ -3094,7 +3104,7 @@ div.condo-typography-h6 > textarea,
3094
3104
  .condo-typography h6 {
3095
3105
  font-weight: 600;
3096
3106
  font-size: 12px;
3097
- font-family: "Open Sans", sans-serif;
3107
+ font-family: "Open Sans", var(--condo-font-fallback);
3098
3108
  line-height: 20px;
3099
3109
  letter-spacing: -0.01em;
3100
3110
  margin: 0;
@@ -3232,7 +3242,7 @@ span.condo-typography-ellipsis-single-line {
3232
3242
  padding: 12px;
3233
3243
  color: #222;
3234
3244
  font-size: 12px;
3235
- font-family: "Open Sans", sans-serif;
3245
+ font-family: "Open Sans", var(--condo-font-fallback);
3236
3246
  line-height: 20px;
3237
3247
  background-color: #fff;
3238
3248
  border-radius: 12px;
@@ -4960,7 +4970,7 @@ span.condo-typography-ellipsis-single-line {
4960
4970
  .condo-list .condo-list-item {
4961
4971
  display: flex;
4962
4972
  flex-wrap: nowrap;
4963
- align-items: end;
4973
+ align-items: flex-end;
4964
4974
  width: 100%;
4965
4975
  border-bottom: none;
4966
4976
  padding: 6px 0;
@@ -4977,124 +4987,11 @@ span.condo-typography-ellipsis-single-line {
4977
4987
  border-bottom: 1px solid #e1e5ed;
4978
4988
  }
4979
4989
 
4980
- .condo-markdown h1,
4981
- .condo-markdown h2,
4982
- .condo-markdown h3,
4983
- .condo-markdown h4,
4984
- .condo-markdown h5,
4985
- .condo-markdown h6 {
4986
- margin: 1.8em 0 0.6em;
4987
- }
4988
- .condo-markdown h1:first-child,
4989
- .condo-markdown h2:first-child,
4990
- .condo-markdown h3:first-child,
4991
- .condo-markdown h4:first-child,
4992
- .condo-markdown h5:first-child,
4993
- .condo-markdown h6:first-child {
4994
- margin: 0 0 0.6em;
4995
- }
4996
- .condo-markdown img {
4997
- max-width: 100%;
4998
- }
4999
- .condo-markdown pre code {
5000
- display: block;
5001
- margin: 0 0 16px;
5002
- }
5003
- .condo-markdown ul,
5004
- .condo-markdown ol {
5005
- margin-bottom: 1.8em;
5006
- padding-left: 0.75em;
5007
- color: #707695;
5008
- list-style-position: inside;
5009
- }
5010
- .condo-markdown ul.contains-task-list,
5011
- .condo-markdown ol.contains-task-list {
5012
- padding-left: 0;
5013
- }
5014
- .condo-markdown ul.contains-task-list > li,
5015
- .condo-markdown ol.contains-task-list > li {
5016
- list-style-type: none;
5017
- }
5018
- .condo-markdown ul ul,
5019
- .condo-markdown ol ul,
5020
- .condo-markdown ul ol,
5021
- .condo-markdown ol ol {
5022
- padding-left: 20px;
5023
- }
5024
- .condo-markdown ul > li:not(:last-child),
5025
- .condo-markdown ol > li:not(:last-child),
5026
- .condo-markdown ul > li ul:not(:last-child),
5027
- .condo-markdown ol > li ul:not(:last-child),
5028
- .condo-markdown ul > li ol:not(:last-child),
5029
- .condo-markdown ol > li ol:not(:last-child) {
5030
- margin-bottom: 0.5em;
5031
- }
5032
- .condo-markdown ul > li ul:first-child,
5033
- .condo-markdown ol > li ul:first-child,
5034
- .condo-markdown ul > li ol:first-child,
5035
- .condo-markdown ol > li ol:first-child {
5036
- margin-top: 0.5em;
5037
- }
5038
- .condo-markdown ul li::marker,
5039
- .condo-markdown ol li::marker {
5040
- margin: 0;
5041
- font-weight: 400;
5042
- font-size: 16px;
5043
- font-family: "Open Sans", sans-serif;
5044
- line-height: 24px;
5045
- letter-spacing: -0.01em;
5046
- }
5047
- .condo-markdown blockquote {
5048
- margin: 1em 0;
5049
- padding-left: 1em;
5050
- border-left: 0.25em solid #d0d3e5;
5051
- }
5052
- .condo-markdown blockquote > .condo-typography {
5053
- padding: 0.5em 0;
5054
- }
5055
- .condo-markdown blockquote > blockquote:not(:first-child) {
5056
- margin-top: 0.5em;
5057
- }
5058
- .condo-markdown table {
5059
- text-align: left;
5060
- border: 1px solid #e1e5ed;
5061
- border-radius: 8px;
5062
- border-collapse: separate;
5063
- border-spacing: 0;
5064
- }
5065
- .condo-markdown table th {
5066
- padding: 20px 16px;
5067
- color: #707695;
5068
- border-bottom: 1px solid #e1e5ed;
5069
- font-weight: 600;
5070
- font-size: 12px;
5071
- font-family: "Open Sans", sans-serif;
5072
- line-height: 20px;
5073
- letter-spacing: -0.01em;
5074
- margin: 0;
5075
- }
5076
- .condo-markdown table td {
5077
- padding: 16px;
5078
- border-bottom: 1px solid #e1e5ed;
5079
- margin: 0;
5080
- font-weight: 400;
5081
- font-size: 14px;
5082
- font-family: "Open Sans", sans-serif;
5083
- line-height: 22px;
5084
- letter-spacing: -0.01em;
5085
- }
5086
- .condo-markdown table > tbody > tr:last-child > td {
5087
- border-bottom: none;
5088
- }
5089
- .condo-markdown table:not(:last-child) {
5090
- margin-bottom: 24px;
5091
- }
5092
-
5093
4990
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5094
4991
  /* stylelint-disable no-duplicate-selectors */
5095
4992
  /* stylelint-disable */
5096
4993
  /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5097
- .condo-modal {
4994
+ .condo-tag {
5098
4995
  box-sizing: border-box;
5099
4996
  margin: 0;
5100
4997
  padding: 0;
@@ -5104,567 +5001,1725 @@ span.condo-typography-ellipsis-single-line {
5104
5001
  line-height: 1.5715;
5105
5002
  list-style: none;
5106
5003
  font-feature-settings: 'tnum', "tnum";
5107
- pointer-events: none;
5108
- position: relative;
5109
- top: 100px;
5110
- width: auto;
5111
- max-width: calc(100vw - 32px);
5112
- margin: 0 auto;
5113
- padding-bottom: 24px;
5114
- }
5115
- .condo-modal.condo-zoom-enter,
5116
- .condo-modal.condo-zoom-appear {
5117
- transform: none;
5118
- opacity: 0;
5119
- -webkit-animation-duration: 0.3s;
5120
- animation-duration: 0.3s;
5121
- -webkit-user-select: none;
5122
- -moz-user-select: none;
5123
- -ms-user-select: none;
5124
- user-select: none;
5125
- }
5126
- .condo-modal-mask {
5127
- position: fixed;
5128
- top: 0;
5129
- right: 0;
5130
- bottom: 0;
5131
- left: 0;
5132
- z-index: 1000;
5133
- height: 100%;
5134
- background-color: rgba(0, 0, 0, 0.45);
5135
- }
5136
- .condo-modal-mask-hidden {
5137
- display: none;
5138
- }
5139
- .condo-modal-wrap {
5140
- position: fixed;
5141
- top: 0;
5142
- right: 0;
5143
- bottom: 0;
5144
- left: 0;
5145
- overflow: auto;
5146
- outline: 0;
5147
- }
5148
- .condo-modal-wrap {
5149
- z-index: 1000;
5004
+ display: inline-block;
5005
+ height: auto;
5006
+ margin-right: 8px;
5007
+ padding: 0 7px;
5008
+ font-size: 12px;
5009
+ line-height: 20px;
5010
+ white-space: nowrap;
5011
+ background: #fafafa;
5012
+ border: 1px solid #d9d9d9;
5013
+ border-radius: 2px;
5014
+ opacity: 1;
5015
+ transition: all 0.3s;
5150
5016
  }
5151
- .condo-modal-title {
5152
- margin: 0;
5017
+ .condo-tag,
5018
+ .condo-tag a,
5019
+ .condo-tag a:hover {
5153
5020
  color: rgba(0, 0, 0, 0.85);
5154
- font-weight: 500;
5155
- font-size: 16px;
5156
- line-height: 22px;
5157
- word-wrap: break-word;
5158
5021
  }
5159
- .condo-modal-content {
5160
- position: relative;
5161
- background-color: #fff;
5162
- background-clip: padding-box;
5163
- border: 0;
5164
- border-radius: 2px;
5165
- 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);
5166
- pointer-events: auto;
5022
+ .condo-tag > a:first-child:last-child {
5023
+ display: inline-block;
5024
+ margin: 0 -8px;
5025
+ padding: 0 8px;
5167
5026
  }
5168
- .condo-modal-close {
5169
- position: absolute;
5170
- top: 0;
5171
- right: 0;
5172
- z-index: 10;
5173
- padding: 0;
5027
+ .condo-tag-close-icon {
5028
+ margin-left: 3px;
5174
5029
  color: rgba(0, 0, 0, 0.45);
5175
- font-weight: 700;
5176
- line-height: 1;
5177
- text-decoration: none;
5178
- background: transparent;
5179
- border: 0;
5180
- outline: 0;
5030
+ font-size: 10px;
5181
5031
  cursor: pointer;
5182
- transition: color 0.3s;
5032
+ transition: all 0.3s;
5183
5033
  }
5184
- .condo-modal-close-x {
5185
- display: block;
5186
- width: 54px;
5187
- height: 54px;
5188
- font-size: 16px;
5189
- font-style: normal;
5190
- line-height: 54px;
5191
- text-align: center;
5192
- text-transform: none;
5193
- text-rendering: auto;
5034
+ .condo-tag-close-icon:hover {
5035
+ color: rgba(0, 0, 0, 0.85);
5194
5036
  }
5195
- .condo-modal-close:focus,
5196
- .condo-modal-close:hover {
5197
- color: rgba(0, 0, 0, 0.75);
5198
- text-decoration: none;
5037
+ .condo-tag-has-color {
5038
+ border-color: transparent;
5199
5039
  }
5200
- .condo-modal-header {
5201
- padding: 16px 24px;
5202
- color: rgba(0, 0, 0, 0.85);
5203
- background: #fff;
5204
- border-bottom: 1px solid #f0f0f0;
5205
- border-radius: 2px 2px 0 0;
5040
+ .condo-tag-has-color,
5041
+ .condo-tag-has-color a,
5042
+ .condo-tag-has-color a:hover,
5043
+ .condo-tag-has-color .anticon-close,
5044
+ .condo-tag-has-color .anticon-close:hover {
5045
+ color: #fff;
5206
5046
  }
5207
- .condo-modal-body {
5208
- padding: 24px;
5209
- font-size: 14px;
5210
- line-height: 1.5715;
5211
- word-wrap: break-word;
5047
+ .condo-tag-checkable {
5048
+ background-color: transparent;
5049
+ border-color: transparent;
5050
+ cursor: pointer;
5212
5051
  }
5213
- .condo-modal-footer {
5214
- padding: 10px 16px;
5215
- text-align: right;
5216
- background: transparent;
5217
- border-top: 1px solid #f0f0f0;
5218
- border-radius: 0 0 2px 2px;
5052
+ .condo-tag-checkable:not(.condo-tag-checkable-checked):hover {
5053
+ color: #1890ff;
5054
+ }
5055
+ .condo-tag-checkable:active,
5056
+ .condo-tag-checkable-checked {
5057
+ color: #fff;
5058
+ }
5059
+ .condo-tag-checkable-checked {
5060
+ background-color: #1890ff;
5061
+ }
5062
+ .condo-tag-checkable:active {
5063
+ background-color: #096dd9;
5064
+ }
5065
+ .condo-tag-hidden {
5066
+ display: none;
5067
+ }
5068
+ .condo-tag-pink {
5069
+ color: #c41d7f;
5070
+ background: #fff0f6;
5071
+ border-color: #ffadd2;
5072
+ }
5073
+ .condo-tag-pink-inverse {
5074
+ color: #fff;
5075
+ background: #eb2f96;
5076
+ border-color: #eb2f96;
5077
+ }
5078
+ .condo-tag-magenta {
5079
+ color: #c41d7f;
5080
+ background: #fff0f6;
5081
+ border-color: #ffadd2;
5082
+ }
5083
+ .condo-tag-magenta-inverse {
5084
+ color: #fff;
5085
+ background: #eb2f96;
5086
+ border-color: #eb2f96;
5087
+ }
5088
+ .condo-tag-red {
5089
+ color: #cf1322;
5090
+ background: #fff1f0;
5091
+ border-color: #ffa39e;
5092
+ }
5093
+ .condo-tag-red-inverse {
5094
+ color: #fff;
5095
+ background: #f5222d;
5096
+ border-color: #f5222d;
5097
+ }
5098
+ .condo-tag-volcano {
5099
+ color: #d4380d;
5100
+ background: #fff2e8;
5101
+ border-color: #ffbb96;
5102
+ }
5103
+ .condo-tag-volcano-inverse {
5104
+ color: #fff;
5105
+ background: #fa541c;
5106
+ border-color: #fa541c;
5107
+ }
5108
+ .condo-tag-orange {
5109
+ color: #d46b08;
5110
+ background: #fff7e6;
5111
+ border-color: #ffd591;
5112
+ }
5113
+ .condo-tag-orange-inverse {
5114
+ color: #fff;
5115
+ background: #fa8c16;
5116
+ border-color: #fa8c16;
5117
+ }
5118
+ .condo-tag-yellow {
5119
+ color: #d4b106;
5120
+ background: #feffe6;
5121
+ border-color: #fffb8f;
5122
+ }
5123
+ .condo-tag-yellow-inverse {
5124
+ color: #fff;
5125
+ background: #fadb14;
5126
+ border-color: #fadb14;
5127
+ }
5128
+ .condo-tag-gold {
5129
+ color: #d48806;
5130
+ background: #fffbe6;
5131
+ border-color: #ffe58f;
5132
+ }
5133
+ .condo-tag-gold-inverse {
5134
+ color: #fff;
5135
+ background: #faad14;
5136
+ border-color: #faad14;
5137
+ }
5138
+ .condo-tag-cyan {
5139
+ color: #08979c;
5140
+ background: #e6fffb;
5141
+ border-color: #87e8de;
5142
+ }
5143
+ .condo-tag-cyan-inverse {
5144
+ color: #fff;
5145
+ background: #13c2c2;
5146
+ border-color: #13c2c2;
5147
+ }
5148
+ .condo-tag-lime {
5149
+ color: #7cb305;
5150
+ background: #fcffe6;
5151
+ border-color: #eaff8f;
5152
+ }
5153
+ .condo-tag-lime-inverse {
5154
+ color: #fff;
5155
+ background: #a0d911;
5156
+ border-color: #a0d911;
5157
+ }
5158
+ .condo-tag-green {
5159
+ color: #389e0d;
5160
+ background: #f6ffed;
5161
+ border-color: #b7eb8f;
5162
+ }
5163
+ .condo-tag-green-inverse {
5164
+ color: #fff;
5165
+ background: #52c41a;
5166
+ border-color: #52c41a;
5167
+ }
5168
+ .condo-tag-blue {
5169
+ color: #096dd9;
5170
+ background: #e6f7ff;
5171
+ border-color: #91d5ff;
5172
+ }
5173
+ .condo-tag-blue-inverse {
5174
+ color: #fff;
5175
+ background: #1890ff;
5176
+ border-color: #1890ff;
5177
+ }
5178
+ .condo-tag-geekblue {
5179
+ color: #1d39c4;
5180
+ background: #f0f5ff;
5181
+ border-color: #adc6ff;
5182
+ }
5183
+ .condo-tag-geekblue-inverse {
5184
+ color: #fff;
5185
+ background: #2f54eb;
5186
+ border-color: #2f54eb;
5187
+ }
5188
+ .condo-tag-purple {
5189
+ color: #531dab;
5190
+ background: #f9f0ff;
5191
+ border-color: #d3adf7;
5192
+ }
5193
+ .condo-tag-purple-inverse {
5194
+ color: #fff;
5195
+ background: #722ed1;
5196
+ border-color: #722ed1;
5197
+ }
5198
+ .condo-tag-success {
5199
+ color: #52c41a;
5200
+ background: #f6ffed;
5201
+ border-color: #b7eb8f;
5202
+ }
5203
+ .condo-tag-processing {
5204
+ color: #1890ff;
5205
+ background: #e6f7ff;
5206
+ border-color: #91d5ff;
5207
+ }
5208
+ .condo-tag-error {
5209
+ color: #ff4d4f;
5210
+ background: #fff2f0;
5211
+ border-color: #ffccc7;
5212
+ }
5213
+ .condo-tag-warning {
5214
+ color: #faad14;
5215
+ background: #fffbe6;
5216
+ border-color: #ffe58f;
5217
+ }
5218
+ .condo-tag > .anticon + span,
5219
+ .condo-tag > span + .anticon {
5220
+ margin-left: 7px;
5221
+ }
5222
+ .condo-tag.condo-tag-rtl {
5223
+ margin-right: 0;
5224
+ margin-left: 8px;
5225
+ direction: rtl;
5226
+ text-align: right;
5227
+ }
5228
+ .condo-tag-rtl .condo-tag-close-icon {
5229
+ margin-right: 3px;
5230
+ margin-left: 0;
5231
+ }
5232
+ .condo-tag-rtl.condo-tag > .anticon + span,
5233
+ .condo-tag-rtl.condo-tag > span + .anticon {
5234
+ margin-right: 7px;
5235
+ margin-left: 0;
5236
+ }
5237
+ .condo-tag {
5238
+ font-weight: 600;
5239
+ font-size: 12px;
5240
+ font-family: "Open Sans", var(--condo-font-fallback);
5241
+ line-height: 20px;
5242
+ letter-spacing: -0.01em;
5243
+ margin: 0;
5244
+ padding: 0.17em 0.83em 0.33em;
5245
+ border: none;
5246
+ border-radius: 12px;
5247
+ }
5248
+
5249
+ .condo-markdown > * {
5250
+ margin-bottom: 20px;
5251
+ }
5252
+ .condo-markdown h1,
5253
+ .condo-markdown h2,
5254
+ .condo-markdown h3,
5255
+ .condo-markdown h4,
5256
+ .condo-markdown h5,
5257
+ .condo-markdown h6 {
5258
+ margin: 1.8em 0 0.8em;
5259
+ }
5260
+ .condo-markdown h1:first-child,
5261
+ .condo-markdown h2:first-child,
5262
+ .condo-markdown h3:first-child,
5263
+ .condo-markdown h4:first-child,
5264
+ .condo-markdown h5:first-child,
5265
+ .condo-markdown h6:first-child {
5266
+ margin: 0 0 0.6em;
5267
+ }
5268
+ .condo-markdown img {
5269
+ max-width: 100%;
5270
+ }
5271
+ .condo-markdown ul,
5272
+ .condo-markdown ol {
5273
+ margin-bottom: 1.8em;
5274
+ padding-left: 0.75em;
5275
+ color: #707695;
5276
+ list-style-position: inside;
5277
+ }
5278
+ .condo-markdown ul.contains-task-list,
5279
+ .condo-markdown ol.contains-task-list {
5280
+ padding-left: 0;
5281
+ }
5282
+ .condo-markdown ul.contains-task-list > li,
5283
+ .condo-markdown ol.contains-task-list > li {
5284
+ list-style-type: none;
5285
+ }
5286
+ .condo-markdown ul ul,
5287
+ .condo-markdown ol ul,
5288
+ .condo-markdown ul ol,
5289
+ .condo-markdown ol ol {
5290
+ padding-left: 20px;
5291
+ }
5292
+ .condo-markdown ul > li:not(:last-child),
5293
+ .condo-markdown ol > li:not(:last-child),
5294
+ .condo-markdown ul > li ul:not(:last-child),
5295
+ .condo-markdown ol > li ul:not(:last-child),
5296
+ .condo-markdown ul > li ol:not(:last-child),
5297
+ .condo-markdown ol > li ol:not(:last-child) {
5298
+ margin-bottom: 0.5em;
5299
+ }
5300
+ .condo-markdown ul > li ul:first-child,
5301
+ .condo-markdown ol > li ul:first-child,
5302
+ .condo-markdown ul > li ol:first-child,
5303
+ .condo-markdown ol > li ol:first-child {
5304
+ margin-top: 0.5em;
5305
+ }
5306
+ .condo-markdown ul li::marker,
5307
+ .condo-markdown ol li::marker {
5308
+ margin: 0;
5309
+ font-weight: 400;
5310
+ font-size: 16px;
5311
+ font-family: "Open Sans", var(--condo-font-fallback);
5312
+ line-height: 24px;
5313
+ letter-spacing: -0.01em;
5314
+ }
5315
+ .condo-markdown blockquote {
5316
+ margin: 1em 0;
5317
+ padding-left: 1em;
5318
+ border-left: 0.25em solid #d0d3e5;
5319
+ }
5320
+ .condo-markdown blockquote > .condo-typography {
5321
+ padding: 0.5em 0;
5322
+ }
5323
+ .condo-markdown blockquote > blockquote:not(:first-child) {
5324
+ margin-top: 0.5em;
5325
+ }
5326
+ .condo-markdown table {
5327
+ text-align: left;
5328
+ border: 1px solid #e1e5ed;
5329
+ border-radius: 8px;
5330
+ border-collapse: separate;
5331
+ border-spacing: 0;
5332
+ }
5333
+ .condo-markdown table th {
5334
+ padding: 20px 16px;
5335
+ color: #707695;
5336
+ border-bottom: 1px solid #e1e5ed;
5337
+ font-weight: 600;
5338
+ font-size: 12px;
5339
+ font-family: "Open Sans", var(--condo-font-fallback);
5340
+ line-height: 20px;
5341
+ letter-spacing: -0.01em;
5342
+ margin: 0;
5343
+ }
5344
+ .condo-markdown table td {
5345
+ padding: 16px;
5346
+ border-bottom: 1px solid #e1e5ed;
5347
+ margin: 0;
5348
+ font-weight: 400;
5349
+ font-size: 14px;
5350
+ font-family: "Open Sans", var(--condo-font-fallback);
5351
+ line-height: 22px;
5352
+ letter-spacing: -0.01em;
5353
+ }
5354
+ .condo-markdown table > tbody > tr:last-child > td {
5355
+ border-bottom: none;
5356
+ }
5357
+ .condo-markdown table:not(:last-child) {
5358
+ margin-bottom: 24px;
5359
+ }
5360
+ .condo-markdown .condo-alert:not(:last-child) {
5361
+ margin-bottom: 20px;
5362
+ }
5363
+ .condo-markdown pre,
5364
+ .condo-markdown code {
5365
+ color: #222;
5366
+ font-size: 14px;
5367
+ font-family: "Noto Sans Mono", var(--condo-font-fallback-mono);
5368
+ line-height: 1.5;
5369
+ direction: ltr;
5370
+ text-align: left;
5371
+ text-shadow: none;
5372
+ word-break: normal;
5373
+ word-spacing: normal;
5374
+ -moz-tab-size: 4;
5375
+ -o-tab-size: 4;
5376
+ tab-size: 4;
5377
+ -webkit-hyphens: none;
5378
+ -ms-hyphens: none;
5379
+ hyphens: none;
5380
+ }
5381
+ .condo-markdown pre::-moz-selection, .condo-markdown code::-moz-selection {
5382
+ text-shadow: none;
5383
+ }
5384
+ .condo-markdown pre::selection,
5385
+ .condo-markdown code::selection {
5386
+ text-shadow: none;
5387
+ }
5388
+ .condo-markdown pre {
5389
+ position: relative;
5390
+ display: grid;
5391
+ grid-column-gap: 12px;
5392
+ grid-template-columns: 1fr 20px;
5393
+ margin: 24px 0 20px;
5394
+ padding: 16px;
5395
+ overflow: visible;
5396
+ white-space: pre;
5397
+ background: #f2f4f6;
5398
+ border-radius: 12px;
5399
+ }
5400
+ .condo-markdown pre[class*="language-"] {
5401
+ padding: 20px 16px;
5402
+ }
5403
+ .condo-markdown pre > .condo-tag {
5404
+ position: absolute;
5405
+ top: 0;
5406
+ left: 16px;
5407
+ transform: translateY(-50%);
5408
+ }
5409
+ .condo-markdown .code-container {
5410
+ width: 100%;
5411
+ overflow: auto;
5412
+ }
5413
+ .condo-markdown .copy-text-icon {
5414
+ cursor: pointer;
5415
+ }
5416
+ .condo-markdown .namespace {
5417
+ opacity: 0.7;
5418
+ }
5419
+ .condo-markdown .token.comment,
5420
+ .condo-markdown .token.prolog,
5421
+ .condo-markdown .token.doctype,
5422
+ .condo-markdown .token.cdata,
5423
+ .condo-markdown .token.punctuation {
5424
+ color: #707695;
5425
+ }
5426
+ .condo-markdown .token.property,
5427
+ .condo-markdown .token.tag,
5428
+ .condo-markdown .token.boolean,
5429
+ .condo-markdown .token.number,
5430
+ .condo-markdown .token.constant,
5431
+ .condo-markdown .token.symbol,
5432
+ .condo-markdown .token.deleted {
5433
+ color: #eb3468;
5434
+ }
5435
+ .condo-markdown .token.selector,
5436
+ .condo-markdown .token.attr-name,
5437
+ .condo-markdown .token.string,
5438
+ .condo-markdown .token.char,
5439
+ .condo-markdown .token.builtin,
5440
+ .condo-markdown .token.inserted {
5441
+ color: #249677;
5442
+ }
5443
+ .condo-markdown .token.operator,
5444
+ .condo-markdown .token.entity,
5445
+ .condo-markdown .token.url,
5446
+ .condo-markdown .language-css .token.string,
5447
+ .condo-markdown .style .token.string {
5448
+ color: #b4710d;
5449
+ }
5450
+ .condo-markdown .token.atrule,
5451
+ .condo-markdown .token.attr-value,
5452
+ .condo-markdown .token.keyword {
5453
+ color: #2696f3;
5454
+ }
5455
+ .condo-markdown .token.function {
5456
+ color: #ff3b30;
5457
+ }
5458
+ .condo-markdown .token.regex,
5459
+ .condo-markdown .token.important,
5460
+ .condo-markdown .token.variable {
5461
+ color: #ff9500;
5462
+ }
5463
+ .condo-markdown .token.important,
5464
+ .condo-markdown .token.bold {
5465
+ font-weight: bold;
5466
+ }
5467
+ .condo-markdown .token.italic {
5468
+ font-style: italic;
5469
+ }
5470
+ .condo-markdown .token.entity {
5471
+ cursor: help;
5472
+ }
5473
+ .condo-markdown .line-highlight {
5474
+ position: absolute;
5475
+ right: 0;
5476
+ left: 0;
5477
+ z-index: 0;
5478
+ margin-top: 1em;
5479
+ /* stylelint-disable */
5480
+ padding-top: inherit;
5481
+ padding-right: 0;
5482
+ padding-bottom: inherit;
5483
+ padding-left: 0;
5484
+ /* stylelint-enable */
5485
+ line-height: inherit;
5486
+ white-space: pre;
5487
+ background: #e1e5ed;
5488
+ box-shadow: inset 5px 0 0 #d0d3e5;
5489
+ pointer-events: none;
5490
+ }
5491
+
5492
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5493
+ /* stylelint-disable no-duplicate-selectors */
5494
+ /* stylelint-disable */
5495
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5496
+ .condo-modal {
5497
+ box-sizing: border-box;
5498
+ margin: 0;
5499
+ padding: 0;
5500
+ color: rgba(0, 0, 0, 0.85);
5501
+ font-size: 14px;
5502
+ font-variant: tabular-nums;
5503
+ line-height: 1.5715;
5504
+ list-style: none;
5505
+ font-feature-settings: 'tnum', "tnum";
5506
+ pointer-events: none;
5507
+ position: relative;
5508
+ top: 100px;
5509
+ width: auto;
5510
+ max-width: calc(100vw - 32px);
5511
+ margin: 0 auto;
5512
+ padding-bottom: 24px;
5513
+ }
5514
+ .condo-modal.condo-zoom-enter,
5515
+ .condo-modal.condo-zoom-appear {
5516
+ transform: none;
5517
+ opacity: 0;
5518
+ -webkit-animation-duration: 0.3s;
5519
+ animation-duration: 0.3s;
5520
+ -webkit-user-select: none;
5521
+ -moz-user-select: none;
5522
+ -ms-user-select: none;
5523
+ user-select: none;
5524
+ }
5525
+ .condo-modal-mask {
5526
+ position: fixed;
5527
+ top: 0;
5528
+ right: 0;
5529
+ bottom: 0;
5530
+ left: 0;
5531
+ z-index: 1000;
5532
+ height: 100%;
5533
+ background-color: rgba(0, 0, 0, 0.45);
5534
+ }
5535
+ .condo-modal-mask-hidden {
5536
+ display: none;
5537
+ }
5538
+ .condo-modal-wrap {
5539
+ position: fixed;
5540
+ top: 0;
5541
+ right: 0;
5542
+ bottom: 0;
5543
+ left: 0;
5544
+ overflow: auto;
5545
+ outline: 0;
5546
+ }
5547
+ .condo-modal-wrap {
5548
+ z-index: 1000;
5549
+ }
5550
+ .condo-modal-title {
5551
+ margin: 0;
5552
+ color: rgba(0, 0, 0, 0.85);
5553
+ font-weight: 500;
5554
+ font-size: 16px;
5555
+ line-height: 22px;
5556
+ word-wrap: break-word;
5557
+ }
5558
+ .condo-modal-content {
5559
+ position: relative;
5560
+ background-color: #fff;
5561
+ background-clip: padding-box;
5562
+ border: 0;
5563
+ border-radius: 2px;
5564
+ 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);
5565
+ pointer-events: auto;
5566
+ }
5567
+ .condo-modal-close {
5568
+ position: absolute;
5569
+ top: 0;
5570
+ right: 0;
5571
+ z-index: 10;
5572
+ padding: 0;
5573
+ color: rgba(0, 0, 0, 0.45);
5574
+ font-weight: 700;
5575
+ line-height: 1;
5576
+ text-decoration: none;
5577
+ background: transparent;
5578
+ border: 0;
5579
+ outline: 0;
5580
+ cursor: pointer;
5581
+ transition: color 0.3s;
5582
+ }
5583
+ .condo-modal-close-x {
5584
+ display: block;
5585
+ width: 54px;
5586
+ height: 54px;
5587
+ font-size: 16px;
5588
+ font-style: normal;
5589
+ line-height: 54px;
5590
+ text-align: center;
5591
+ text-transform: none;
5592
+ text-rendering: auto;
5593
+ }
5594
+ .condo-modal-close:focus,
5595
+ .condo-modal-close:hover {
5596
+ color: rgba(0, 0, 0, 0.75);
5597
+ text-decoration: none;
5598
+ }
5599
+ .condo-modal-header {
5600
+ padding: 16px 24px;
5601
+ color: rgba(0, 0, 0, 0.85);
5602
+ background: #fff;
5603
+ border-bottom: 1px solid #f0f0f0;
5604
+ border-radius: 2px 2px 0 0;
5605
+ }
5606
+ .condo-modal-body {
5607
+ padding: 24px;
5608
+ font-size: 14px;
5609
+ line-height: 1.5715;
5610
+ word-wrap: break-word;
5611
+ }
5612
+ .condo-modal-footer {
5613
+ padding: 10px 16px;
5614
+ text-align: right;
5615
+ background: transparent;
5616
+ border-top: 1px solid #f0f0f0;
5617
+ border-radius: 0 0 2px 2px;
5219
5618
  }
5220
5619
  .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger) {
5221
5620
  margin-bottom: 0;
5222
5621
  margin-left: 8px;
5223
5622
  }
5224
- .condo-modal-open {
5623
+ .condo-modal-open {
5624
+ overflow: hidden;
5625
+ }
5626
+ .condo-modal-centered {
5627
+ text-align: center;
5628
+ }
5629
+ .condo-modal-centered::before {
5630
+ display: inline-block;
5631
+ width: 0;
5632
+ height: 100%;
5633
+ vertical-align: middle;
5634
+ content: '';
5635
+ }
5636
+ .condo-modal-centered .condo-modal {
5637
+ top: 0;
5638
+ display: inline-block;
5639
+ padding-bottom: 0;
5640
+ text-align: left;
5641
+ vertical-align: middle;
5642
+ }
5643
+ @media (max-width: 767px) {
5644
+ .condo-modal {
5645
+ max-width: calc(100vw - 16px);
5646
+ margin: 8px auto;
5647
+ }
5648
+ .condo-modal-centered .condo-modal {
5649
+ flex: 1;
5650
+ }
5651
+ }
5652
+ .condo-modal-confirm .condo-modal-header {
5653
+ display: none;
5654
+ }
5655
+ .condo-modal-confirm .condo-modal-body {
5656
+ padding: 32px 32px 24px;
5657
+ }
5658
+ .condo-modal-confirm-body-wrapper::before {
5659
+ display: table;
5660
+ content: '';
5661
+ }
5662
+ .condo-modal-confirm-body-wrapper::after {
5663
+ display: table;
5664
+ clear: both;
5665
+ content: '';
5666
+ }
5667
+ .condo-modal-confirm-body .condo-modal-confirm-title {
5668
+ display: block;
5669
+ overflow: hidden;
5670
+ color: rgba(0, 0, 0, 0.85);
5671
+ font-weight: 500;
5672
+ font-size: 16px;
5673
+ line-height: 1.4;
5674
+ }
5675
+ .condo-modal-confirm-body .condo-modal-confirm-content {
5676
+ margin-top: 8px;
5677
+ color: rgba(0, 0, 0, 0.85);
5678
+ font-size: 14px;
5679
+ }
5680
+ .condo-modal-confirm-body > .anticon {
5681
+ float: left;
5682
+ margin-right: 16px;
5683
+ font-size: 22px;
5684
+ }
5685
+ .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
5686
+ margin-left: 38px;
5687
+ }
5688
+ .condo-modal-confirm .condo-modal-confirm-btns {
5689
+ margin-top: 24px;
5690
+ text-align: right;
5691
+ }
5692
+ .condo-modal-confirm .condo-modal-confirm-btns .condo-btn + .condo-btn {
5693
+ margin-bottom: 0;
5694
+ margin-left: 8px;
5695
+ }
5696
+ .condo-modal-confirm-error .condo-modal-confirm-body > .anticon {
5697
+ color: #ff4d4f;
5698
+ }
5699
+ .condo-modal-confirm-warning .condo-modal-confirm-body > .anticon,
5700
+ .condo-modal-confirm-confirm .condo-modal-confirm-body > .anticon {
5701
+ color: #faad14;
5702
+ }
5703
+ .condo-modal-confirm-info .condo-modal-confirm-body > .anticon {
5704
+ color: #1890ff;
5705
+ }
5706
+ .condo-modal-confirm-success .condo-modal-confirm-body > .anticon {
5707
+ color: #52c41a;
5708
+ }
5709
+ .condo-modal-confirm .condo-zoom-leave .condo-modal-confirm-btns {
5710
+ pointer-events: none;
5711
+ }
5712
+ .condo-modal-wrap-rtl {
5713
+ direction: rtl;
5714
+ }
5715
+ .condo-modal-wrap-rtl .condo-modal-close {
5716
+ right: auto;
5717
+ right: initial;
5718
+ left: 0;
5719
+ }
5720
+ .condo-modal-wrap-rtl .condo-modal-footer {
5721
+ text-align: left;
5722
+ }
5723
+ .condo-modal-wrap-rtl .condo-modal-footer .condo-btn + .condo-btn {
5724
+ margin-right: 8px;
5725
+ margin-left: 0;
5726
+ }
5727
+ .condo-modal-wrap-rtl .condo-modal-confirm-body {
5728
+ direction: rtl;
5729
+ }
5730
+ .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon {
5731
+ float: right;
5732
+ margin-right: 0;
5733
+ margin-left: 16px;
5734
+ }
5735
+ .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
5736
+ margin-right: 38px;
5737
+ margin-left: 0;
5738
+ }
5739
+ .condo-modal-wrap-rtl .condo-modal-confirm-btns {
5740
+ text-align: left;
5741
+ }
5742
+ .condo-modal-wrap-rtl .condo-modal-confirm-btns .condo-btn + .condo-btn {
5743
+ margin-right: 8px;
5744
+ margin-left: 0;
5745
+ }
5746
+ .condo-modal-wrap-rtl.condo-modal-centered .condo-modal {
5747
+ text-align: right;
5748
+ }
5749
+ .condo-modal-root .condo-modal-mask {
5750
+ background-color: rgba(112, 118, 149, 0.5);
5751
+ }
5752
+ .condo-modal-root .condo-modal {
5753
+ max-width: calc(100vw - 40px * 2);
5754
+ margin: 40px 0;
5755
+ -webkit-animation-duration: 0s;
5756
+ animation-duration: 0s;
5757
+ }
5758
+ .condo-modal-root .condo-modal .condo-modal-header {
5759
+ flex-shrink: 0;
5760
+ padding: 40px 104px 19px 40px;
5761
+ border-bottom: 1px solid transparent;
5762
+ transition: border-bottom-color 0.15s;
5763
+ }
5764
+ .condo-modal-root .condo-modal.condo-modal-scrolling .condo-modal-header {
5765
+ border-bottom-color: #e1e5ed;
5766
+ }
5767
+ .condo-modal-root .condo-modal .condo-modal-close {
5768
+ top: 42px;
5769
+ right: 40px;
5770
+ }
5771
+ .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x {
5772
+ display: flex;
5773
+ align-items: center;
5774
+ justify-content: center;
5775
+ width: 24px;
5776
+ height: 24px;
5777
+ line-height: 24px;
5778
+ }
5779
+ .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x div {
5780
+ width: 24px;
5781
+ height: 24px;
5782
+ }
5783
+ .condo-modal-root .condo-modal .condo-modal-content {
5784
+ display: flex;
5785
+ flex-direction: column;
5786
+ max-height: calc(100vh - (40px * 2));
5787
+ padding: 0;
5788
+ overflow: hidden;
5789
+ border-radius: 12px;
5790
+ }
5791
+ .condo-modal-root .condo-modal .condo-modal-body {
5792
+ margin: 0 40px;
5793
+ padding: 20px 0 40px;
5794
+ overflow: auto;
5795
+ }
5796
+ .condo-modal-root .condo-modal .condo-modal-body .condo-modal-wrapper {
5797
+ width: -webkit-fit-content;
5798
+ width: -moz-fit-content;
5799
+ width: fit-content;
5800
+ overflow: hidden;
5801
+ }
5802
+ .condo-modal-root .condo-modal .condo-modal-footer {
5803
+ padding: 19px 40px 20px;
5804
+ border-top: 1px solid #e1e5ed;
5805
+ }
5806
+ .condo-modal-root .condo-modal .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger):not(:first-child) {
5807
+ margin-left: 0;
5808
+ }
5809
+
5810
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5811
+ /* stylelint-disable no-duplicate-selectors */
5812
+ /* stylelint-disable */
5813
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5814
+ .condo-select-single .condo-select-selector {
5815
+ display: flex;
5816
+ }
5817
+ .condo-select-single .condo-select-selector .condo-select-selection-search {
5818
+ position: absolute;
5819
+ top: 0;
5820
+ right: 11px;
5821
+ bottom: 0;
5822
+ left: 11px;
5823
+ }
5824
+ .condo-select-single .condo-select-selector .condo-select-selection-search-input {
5825
+ width: 100%;
5826
+ }
5827
+ .condo-select-single .condo-select-selector .condo-select-selection-item,
5828
+ .condo-select-single .condo-select-selector .condo-select-selection-placeholder {
5829
+ padding: 0;
5830
+ line-height: 30px;
5831
+ transition: all 0.3s;
5832
+ }
5833
+ .condo-select-single .condo-select-selector .condo-select-selection-item {
5834
+ position: relative;
5835
+ -webkit-user-select: none;
5836
+ -moz-user-select: none;
5837
+ -ms-user-select: none;
5838
+ user-select: none;
5839
+ }
5840
+ .condo-select-single .condo-select-selector .condo-select-selection-placeholder {
5841
+ transition: none;
5842
+ pointer-events: none;
5843
+ }
5844
+ .condo-select-single .condo-select-selector::after,
5845
+ .condo-select-single .condo-select-selector .condo-select-selection-item::after,
5846
+ .condo-select-single .condo-select-selector .condo-select-selection-placeholder::after {
5847
+ display: inline-block;
5848
+ width: 0;
5849
+ visibility: hidden;
5850
+ content: '\a0';
5851
+ }
5852
+ .condo-select-single.condo-select-show-arrow .condo-select-selection-search {
5853
+ right: 25px;
5854
+ }
5855
+ .condo-select-single.condo-select-show-arrow .condo-select-selection-item,
5856
+ .condo-select-single.condo-select-show-arrow .condo-select-selection-placeholder {
5857
+ padding-right: 18px;
5858
+ }
5859
+ .condo-select-single.condo-select-open .condo-select-selection-item {
5860
+ color: #bfbfbf;
5861
+ }
5862
+ .condo-select-single:not(.condo-select-customize-input) .condo-select-selector {
5863
+ width: 100%;
5864
+ height: 32px;
5865
+ padding: 0 11px;
5866
+ }
5867
+ .condo-select-single:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-search-input {
5868
+ height: 30px;
5869
+ }
5870
+ .condo-select-single:not(.condo-select-customize-input) .condo-select-selector::after {
5871
+ line-height: 30px;
5872
+ }
5873
+ .condo-select-single.condo-select-customize-input .condo-select-selector::after {
5874
+ display: none;
5875
+ }
5876
+ .condo-select-single.condo-select-customize-input .condo-select-selector .condo-select-selection-search {
5877
+ position: static;
5878
+ width: 100%;
5879
+ }
5880
+ .condo-select-single.condo-select-customize-input .condo-select-selector .condo-select-selection-placeholder {
5881
+ position: absolute;
5882
+ right: 0;
5883
+ left: 0;
5884
+ padding: 0 11px;
5885
+ }
5886
+ .condo-select-single.condo-select-customize-input .condo-select-selector .condo-select-selection-placeholder::after {
5887
+ display: none;
5888
+ }
5889
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input) .condo-select-selector {
5890
+ height: 40px;
5891
+ }
5892
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input) .condo-select-selector::after,
5893
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-item,
5894
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-placeholder {
5895
+ line-height: 38px;
5896
+ }
5897
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input):not(.condo-select-customize-input) .condo-select-selection-search-input {
5898
+ height: 38px;
5899
+ }
5900
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selector {
5901
+ height: 24px;
5902
+ }
5903
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selector::after,
5904
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-item,
5905
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-placeholder {
5906
+ line-height: 22px;
5907
+ }
5908
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input):not(.condo-select-customize-input) .condo-select-selection-search-input {
5909
+ height: 22px;
5910
+ }
5911
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selection-search {
5912
+ right: 7px;
5913
+ left: 7px;
5914
+ }
5915
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input) .condo-select-selector {
5916
+ padding: 0 7px;
5917
+ }
5918
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-search {
5919
+ right: 28px;
5920
+ }
5921
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-item,
5922
+ .condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-placeholder {
5923
+ padding-right: 21px;
5924
+ }
5925
+ .condo-select-single.condo-select-lg:not(.condo-select-customize-input) .condo-select-selector {
5926
+ padding: 0 11px;
5927
+ }
5928
+ /**
5929
+ * Do not merge `height` & `line-height` under style with `selection` & `search`,
5930
+ * since chrome may update to redesign with its align logic.
5931
+ */
5932
+ .condo-select-selection-overflow {
5933
+ position: relative;
5934
+ display: flex;
5935
+ flex: auto;
5936
+ flex-wrap: wrap;
5937
+ max-width: 100%;
5938
+ }
5939
+ .condo-select-selection-overflow-item {
5940
+ flex: none;
5941
+ align-self: center;
5942
+ max-width: 100%;
5943
+ }
5944
+ .condo-select-multiple .condo-select-selector {
5945
+ display: flex;
5946
+ flex-wrap: wrap;
5947
+ align-items: center;
5948
+ padding: 1px 4px;
5949
+ }
5950
+ .condo-select-show-search.condo-select-multiple .condo-select-selector {
5951
+ cursor: text;
5952
+ }
5953
+ .condo-select-disabled.condo-select-multiple .condo-select-selector {
5954
+ background: #f5f5f5;
5955
+ cursor: not-allowed;
5956
+ }
5957
+ .condo-select-multiple .condo-select-selector::after {
5958
+ display: inline-block;
5959
+ width: 0;
5960
+ margin: 2px 0;
5961
+ line-height: 24px;
5962
+ content: '\a0';
5963
+ }
5964
+ .condo-select-multiple.condo-select-show-arrow .condo-select-selector,
5965
+ .condo-select-multiple.condo-select-allow-clear .condo-select-selector {
5966
+ padding-right: 24px;
5967
+ }
5968
+ [dir="ltr"] .condo-select-multiple .condo-select-selection-item {
5969
+ margin-right: 4px;
5970
+ }
5971
+ [dir="rtl"] .condo-select-multiple .condo-select-selection-item {
5972
+ margin-left: 4px;
5973
+ }
5974
+ [dir="ltr"] .condo-select-multiple .condo-select-selection-item {
5975
+ padding-left: 8px;
5976
+ }
5977
+ [dir="rtl"] .condo-select-multiple .condo-select-selection-item {
5978
+ padding-right: 8px;
5979
+ }
5980
+ [dir="ltr"] .condo-select-multiple .condo-select-selection-item {
5981
+ padding-right: 4px;
5982
+ }
5983
+ [dir="rtl"] .condo-select-multiple .condo-select-selection-item {
5984
+ padding-left: 4px;
5985
+ }
5986
+ .condo-select-multiple .condo-select-selection-item {
5987
+ position: relative;
5988
+ display: flex;
5989
+ flex: none;
5990
+ box-sizing: border-box;
5991
+ max-width: 100%;
5992
+ height: 24px;
5993
+ margin-top: 2px;
5994
+ margin-bottom: 2px;
5995
+ line-height: 22px;
5996
+ background: #f5f5f5;
5997
+ border: 1px solid #f0f0f0;
5998
+ border-radius: 2px;
5999
+ cursor: default;
6000
+ transition: font-size 0.3s, line-height 0.3s, height 0.3s;
6001
+ -webkit-user-select: none;
6002
+ -moz-user-select: none;
6003
+ -ms-user-select: none;
6004
+ user-select: none;
6005
+ }
6006
+ .condo-select-disabled.condo-select-multiple .condo-select-selection-item {
6007
+ color: #bfbfbf;
6008
+ border-color: #d0d3e5;
6009
+ cursor: not-allowed;
6010
+ }
6011
+ .condo-select-multiple .condo-select-selection-item-content {
6012
+ display: inline-block;
6013
+ margin-right: 4px;
5225
6014
  overflow: hidden;
6015
+ white-space: pre;
6016
+ text-overflow: ellipsis;
5226
6017
  }
5227
- .condo-modal-centered {
6018
+ .condo-select-multiple .condo-select-selection-item-remove {
6019
+ color: inherit;
6020
+ font-style: normal;
6021
+ line-height: 0;
5228
6022
  text-align: center;
6023
+ text-transform: none;
6024
+ vertical-align: -0.125em;
6025
+ text-rendering: optimizelegibility;
6026
+ -webkit-font-smoothing: antialiased;
6027
+ -moz-osx-font-smoothing: grayscale;
6028
+ display: inline-block;
6029
+ color: rgba(0, 0, 0, 0.45);
6030
+ font-weight: bold;
6031
+ font-size: 10px;
6032
+ line-height: inherit;
6033
+ cursor: pointer;
5229
6034
  }
5230
- .condo-modal-centered::before {
6035
+ .condo-select-multiple .condo-select-selection-item-remove > * {
6036
+ line-height: 1;
6037
+ }
6038
+ .condo-select-multiple .condo-select-selection-item-remove svg {
5231
6039
  display: inline-block;
5232
- width: 0;
5233
- height: 100%;
6040
+ }
6041
+ .condo-select-multiple .condo-select-selection-item-remove::before {
6042
+ display: none;
6043
+ }
6044
+ .condo-select-multiple .condo-select-selection-item-remove .condo-select-multiple .condo-select-selection-item-remove-icon {
6045
+ display: block;
6046
+ }
6047
+ .condo-select-multiple .condo-select-selection-item-remove > .anticon {
5234
6048
  vertical-align: middle;
5235
- content: '';
5236
6049
  }
5237
- .condo-modal-centered .condo-modal {
6050
+ .condo-select-multiple .condo-select-selection-item-remove:hover {
6051
+ color: rgba(0, 0, 0, 0.75);
6052
+ }
6053
+ [dir="ltr"] .condo-select-multiple .condo-select-selection-overflow-item + .condo-select-selection-overflow-item .condo-select-selection-search {
6054
+ margin-left: 0;
6055
+ }
6056
+ [dir="rtl"] .condo-select-multiple .condo-select-selection-overflow-item + .condo-select-selection-overflow-item .condo-select-selection-search {
6057
+ margin-right: 0;
6058
+ }
6059
+ [dir="ltr"] .condo-select-multiple .condo-select-selection-search {
6060
+ margin-left: 7px;
6061
+ }
6062
+ [dir="rtl"] .condo-select-multiple .condo-select-selection-search {
6063
+ margin-right: 7px;
6064
+ }
6065
+ .condo-select-multiple .condo-select-selection-search {
6066
+ position: relative;
6067
+ max-width: 100%;
6068
+ }
6069
+ .condo-select-multiple .condo-select-selection-search-input,
6070
+ .condo-select-multiple .condo-select-selection-search-mirror {
6071
+ height: 24px;
6072
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
6073
+ line-height: 24px;
6074
+ transition: all 0.3s;
6075
+ }
6076
+ .condo-select-multiple .condo-select-selection-search-input {
6077
+ width: 100%;
6078
+ min-width: 4.1px;
6079
+ }
6080
+ .condo-select-multiple .condo-select-selection-search-mirror {
6081
+ position: absolute;
5238
6082
  top: 0;
6083
+ left: 0;
6084
+ z-index: 999;
6085
+ white-space: pre;
6086
+ visibility: hidden;
6087
+ }
6088
+ .condo-select-multiple .condo-select-selection-placeholder {
6089
+ position: absolute;
6090
+ top: 50%;
6091
+ right: 11px;
6092
+ left: 11px;
6093
+ transform: translateY(-50%);
6094
+ transition: all 0.3s;
6095
+ }
6096
+ .condo-select-multiple.condo-select-lg .condo-select-selector::after {
6097
+ line-height: 32px;
6098
+ }
6099
+ .condo-select-multiple.condo-select-lg .condo-select-selection-item {
6100
+ height: 32px;
6101
+ line-height: 30px;
6102
+ }
6103
+ .condo-select-multiple.condo-select-lg .condo-select-selection-search {
6104
+ height: 32px;
6105
+ line-height: 32px;
6106
+ }
6107
+ .condo-select-multiple.condo-select-lg .condo-select-selection-search-input,
6108
+ .condo-select-multiple.condo-select-lg .condo-select-selection-search-mirror {
6109
+ height: 32px;
6110
+ line-height: 30px;
6111
+ }
6112
+ .condo-select-multiple.condo-select-sm .condo-select-selector::after {
6113
+ line-height: 16px;
6114
+ }
6115
+ .condo-select-multiple.condo-select-sm .condo-select-selection-item {
6116
+ height: 16px;
6117
+ line-height: 14px;
6118
+ }
6119
+ .condo-select-multiple.condo-select-sm .condo-select-selection-search {
6120
+ height: 16px;
6121
+ line-height: 16px;
6122
+ }
6123
+ .condo-select-multiple.condo-select-sm .condo-select-selection-search-input,
6124
+ .condo-select-multiple.condo-select-sm .condo-select-selection-search-mirror {
6125
+ height: 16px;
6126
+ line-height: 14px;
6127
+ }
6128
+ .condo-select-multiple.condo-select-sm .condo-select-selection-placeholder {
6129
+ left: 7px;
6130
+ }
6131
+ [dir="ltr"] .condo-select-multiple.condo-select-sm .condo-select-selection-search {
6132
+ margin-left: 3px;
6133
+ }
6134
+ [dir="rtl"] .condo-select-multiple.condo-select-sm .condo-select-selection-search {
6135
+ margin-right: 3px;
6136
+ }
6137
+ .condo-select-multiple.condo-select-lg .condo-select-selection-item {
6138
+ height: 32px;
6139
+ line-height: 32px;
6140
+ }
6141
+ .condo-select-disabled .condo-select-selection-item-remove {
6142
+ display: none;
6143
+ }
6144
+ .condo-select-status-error.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer) .condo-select-selector {
6145
+ border-color: #ff4d4f !important;
6146
+ }
6147
+ .condo-select-status-error.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer) .condo-select-selector {
6148
+ background-color: #fff;
6149
+ }
6150
+ .condo-select-status-error.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer).condo-select-open .condo-select-selector,
6151
+ .condo-select-status-error.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer).condo-select-focused .condo-select-selector {
6152
+ border-color: #ff7875;
6153
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
6154
+ border-right-width: 1px;
6155
+ outline: 0;
6156
+ }
6157
+ .condo-select-status-warning.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer) .condo-select-selector {
6158
+ border-color: #faad14 !important;
6159
+ }
6160
+ .condo-select-status-warning.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer) .condo-select-selector {
6161
+ background-color: #fff;
6162
+ }
6163
+ .condo-select-status-warning.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer).condo-select-open .condo-select-selector,
6164
+ .condo-select-status-warning.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input):not(.condo-pagination-size-changer).condo-select-focused .condo-select-selector {
6165
+ border-color: #ffc53d;
6166
+ box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
6167
+ border-right-width: 1px;
6168
+ outline: 0;
6169
+ }
6170
+ .condo-select-status-error.condo-select-has-feedback .condo-select-clear,
6171
+ .condo-select-status-warning.condo-select-has-feedback .condo-select-clear,
6172
+ .condo-select-status-success.condo-select-has-feedback .condo-select-clear,
6173
+ .condo-select-status-validating.condo-select-has-feedback .condo-select-clear {
6174
+ right: 32px;
6175
+ }
6176
+ .condo-select-status-error.condo-select-has-feedback .condo-select-selection-selected-value,
6177
+ .condo-select-status-warning.condo-select-has-feedback .condo-select-selection-selected-value,
6178
+ .condo-select-status-success.condo-select-has-feedback .condo-select-selection-selected-value,
6179
+ .condo-select-status-validating.condo-select-has-feedback .condo-select-selection-selected-value {
6180
+ padding-right: 42px;
6181
+ }
6182
+ /* Reset search input style */
6183
+ .condo-select {
6184
+ box-sizing: border-box;
6185
+ margin: 0;
6186
+ padding: 0;
6187
+ color: rgba(0, 0, 0, 0.85);
6188
+ font-size: 14px;
6189
+ font-variant: tabular-nums;
6190
+ line-height: 1.5715;
6191
+ list-style: none;
6192
+ font-feature-settings: 'tnum', "tnum";
6193
+ position: relative;
5239
6194
  display: inline-block;
5240
- padding-bottom: 0;
5241
- text-align: left;
5242
- vertical-align: middle;
6195
+ cursor: pointer;
6196
+ }
6197
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector {
6198
+ position: relative;
6199
+ background-color: #fff;
6200
+ border: 1px solid #d0d3e5;
6201
+ border-radius: 2px;
6202
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
6203
+ }
6204
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector input {
6205
+ cursor: pointer;
6206
+ }
6207
+ .condo-select-show-search.condo-select:not(.condo-select-customize-input) .condo-select-selector {
6208
+ cursor: text;
6209
+ }
6210
+ .condo-select-show-search.condo-select:not(.condo-select-customize-input) .condo-select-selector input {
6211
+ cursor: auto;
6212
+ }
6213
+ .condo-select-focused:not(.condo-select-disabled).condo-select:not(.condo-select-customize-input) .condo-select-selector {
6214
+ border-color: #40a9ff;
6215
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
6216
+ border-right-width: 1px;
6217
+ outline: 0;
6218
+ }
6219
+ .condo-select-disabled.condo-select:not(.condo-select-customize-input) .condo-select-selector {
6220
+ color: rgba(0, 0, 0, 0.25);
6221
+ background: #f5f5f5;
6222
+ cursor: not-allowed;
6223
+ }
6224
+ .condo-select-multiple.condo-select-disabled.condo-select:not(.condo-select-customize-input) .condo-select-selector {
6225
+ background: #f5f5f5;
6226
+ }
6227
+ .condo-select-disabled.condo-select:not(.condo-select-customize-input) .condo-select-selector input {
6228
+ cursor: not-allowed;
6229
+ }
6230
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-search-input {
6231
+ margin: 0;
6232
+ padding: 0;
6233
+ background: transparent;
6234
+ border: none;
6235
+ outline: none;
6236
+ -webkit-appearance: none;
6237
+ -moz-appearance: none;
6238
+ appearance: none;
6239
+ }
6240
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-search-input::-webkit-search-cancel-button {
6241
+ display: none;
6242
+ /* stylelint-disable-next-line property-no-vendor-prefix */
6243
+ -webkit-appearance: none;
6244
+ }
6245
+ .condo-select:not(.condo-select-disabled):hover .condo-select-selector {
6246
+ border-color: #40a9ff;
6247
+ border-right-width: 1px;
6248
+ }
6249
+ .condo-select-selection-item {
6250
+ flex: 1;
6251
+ overflow: hidden;
6252
+ font-weight: normal;
6253
+ white-space: nowrap;
6254
+ text-overflow: ellipsis;
5243
6255
  }
5244
- @media (max-width: 767px) {
5245
- .condo-modal {
5246
- max-width: calc(100vw - 16px);
5247
- margin: 8px auto;
6256
+ @media all and (-ms-high-contrast: none) {
6257
+ .condo-select-selection-item *::-ms-backdrop,
6258
+ .condo-select-selection-item {
6259
+ flex: auto;
5248
6260
  }
5249
- .condo-modal-centered .condo-modal {
5250
- flex: 1;
6261
+ }
6262
+ .condo-select-selection-placeholder {
6263
+ flex: 1;
6264
+ overflow: hidden;
6265
+ color: #bfbfbf;
6266
+ white-space: nowrap;
6267
+ text-overflow: ellipsis;
6268
+ pointer-events: none;
6269
+ }
6270
+ @media all and (-ms-high-contrast: none) {
6271
+ .condo-select-selection-placeholder *::-ms-backdrop,
6272
+ .condo-select-selection-placeholder {
6273
+ flex: auto;
5251
6274
  }
5252
6275
  }
5253
- .condo-modal-confirm .condo-modal-header {
5254
- display: none;
6276
+ .condo-select-arrow {
6277
+ display: inline-block;
6278
+ color: inherit;
6279
+ font-style: normal;
6280
+ line-height: 0;
6281
+ text-transform: none;
6282
+ vertical-align: -0.125em;
6283
+ text-rendering: optimizelegibility;
6284
+ -webkit-font-smoothing: antialiased;
6285
+ -moz-osx-font-smoothing: grayscale;
6286
+ position: absolute;
6287
+ top: 50%;
6288
+ right: 11px;
6289
+ display: flex;
6290
+ align-items: center;
6291
+ height: 12px;
6292
+ margin-top: -6px;
6293
+ color: rgba(0, 0, 0, 0.25);
6294
+ font-size: 12px;
6295
+ line-height: 1;
6296
+ text-align: center;
6297
+ pointer-events: none;
5255
6298
  }
5256
- .condo-modal-confirm .condo-modal-body {
5257
- padding: 32px 32px 24px;
6299
+ .condo-select-arrow > * {
6300
+ line-height: 1;
5258
6301
  }
5259
- .condo-modal-confirm-body-wrapper::before {
5260
- display: table;
5261
- content: '';
6302
+ .condo-select-arrow svg {
6303
+ display: inline-block;
5262
6304
  }
5263
- .condo-modal-confirm-body-wrapper::after {
5264
- display: table;
5265
- clear: both;
5266
- content: '';
6305
+ .condo-select-arrow::before {
6306
+ display: none;
5267
6307
  }
5268
- .condo-modal-confirm-body .condo-modal-confirm-title {
6308
+ .condo-select-arrow .condo-select-arrow-icon {
5269
6309
  display: block;
5270
- overflow: hidden;
5271
- color: rgba(0, 0, 0, 0.85);
5272
- font-weight: 500;
5273
- font-size: 16px;
5274
- line-height: 1.4;
5275
6310
  }
5276
- .condo-modal-confirm-body .condo-modal-confirm-content {
5277
- margin-top: 8px;
5278
- color: rgba(0, 0, 0, 0.85);
5279
- font-size: 14px;
6311
+ .condo-select-arrow .anticon {
6312
+ vertical-align: top;
6313
+ transition: transform 0.3s;
5280
6314
  }
5281
- .condo-modal-confirm-body > .anticon {
5282
- float: left;
5283
- margin-right: 16px;
5284
- font-size: 22px;
6315
+ .condo-select-arrow .anticon > svg {
6316
+ vertical-align: top;
5285
6317
  }
5286
- .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
5287
- margin-left: 38px;
6318
+ .condo-select-arrow .anticon:not(.condo-select-suffix) {
6319
+ pointer-events: auto;
5288
6320
  }
5289
- .condo-modal-confirm .condo-modal-confirm-btns {
5290
- margin-top: 24px;
5291
- text-align: right;
6321
+ .condo-select-disabled .condo-select-arrow {
6322
+ cursor: not-allowed;
5292
6323
  }
5293
- .condo-modal-confirm .condo-modal-confirm-btns .condo-btn + .condo-btn {
5294
- margin-bottom: 0;
6324
+ [dir="ltr"] .condo-select-arrow > *:not(:last-child) {
6325
+ margin-right: 8px;
6326
+ }
6327
+ [dir="rtl"] .condo-select-arrow > *:not(:last-child) {
5295
6328
  margin-left: 8px;
5296
6329
  }
5297
- .condo-modal-confirm-error .condo-modal-confirm-body > .anticon {
5298
- color: #ff4d4f;
6330
+ .condo-select-clear {
6331
+ position: absolute;
6332
+ top: 50%;
6333
+ right: 11px;
6334
+ z-index: 1;
6335
+ display: inline-block;
6336
+ width: 12px;
6337
+ height: 12px;
6338
+ margin-top: -6px;
6339
+ color: rgba(0, 0, 0, 0.25);
6340
+ font-size: 12px;
6341
+ font-style: normal;
6342
+ line-height: 1;
6343
+ text-align: center;
6344
+ text-transform: none;
6345
+ background: #fff;
6346
+ cursor: pointer;
6347
+ opacity: 0;
6348
+ transition: color 0.3s ease, opacity 0.15s ease;
6349
+ text-rendering: auto;
5299
6350
  }
5300
- .condo-modal-confirm-warning .condo-modal-confirm-body > .anticon,
5301
- .condo-modal-confirm-confirm .condo-modal-confirm-body > .anticon {
5302
- color: #faad14;
6351
+ .condo-select-clear::before {
6352
+ display: block;
5303
6353
  }
5304
- .condo-modal-confirm-info .condo-modal-confirm-body > .anticon {
5305
- color: #1890ff;
6354
+ .condo-select-clear:hover {
6355
+ color: rgba(0, 0, 0, 0.45);
5306
6356
  }
5307
- .condo-modal-confirm-success .condo-modal-confirm-body > .anticon {
5308
- color: #52c41a;
6357
+ .condo-select:hover .condo-select-clear {
6358
+ opacity: 1;
5309
6359
  }
5310
- .condo-modal-confirm .condo-zoom-leave .condo-modal-confirm-btns {
5311
- pointer-events: none;
6360
+ .condo-select-dropdown {
6361
+ margin: 0;
6362
+ padding: 0;
6363
+ color: rgba(0, 0, 0, 0.85);
6364
+ font-variant: tabular-nums;
6365
+ line-height: 1.5715;
6366
+ list-style: none;
6367
+ font-feature-settings: 'tnum', "tnum", ;
6368
+ position: absolute;
6369
+ top: -9999px;
6370
+ left: -9999px;
6371
+ z-index: 1050;
6372
+ box-sizing: border-box;
6373
+ padding: 4px 0;
6374
+ overflow: hidden;
6375
+ font-size: 14px;
6376
+ font-variant: initial;
6377
+ background-color: #fff;
6378
+ border-radius: 2px;
6379
+ outline: none;
6380
+ 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);
5312
6381
  }
5313
- .condo-modal-wrap-rtl {
5314
- direction: rtl;
6382
+ .condo-select-dropdown.condo-slide-up-enter.condo-slide-up-enter-active.condo-select-dropdown-placement-bottomLeft,
6383
+ .condo-select-dropdown.condo-slide-up-appear.condo-slide-up-appear-active.condo-select-dropdown-placement-bottomLeft {
6384
+ -webkit-animation-name: antSlideUpIn;
6385
+ animation-name: antSlideUpIn;
5315
6386
  }
5316
- .condo-modal-wrap-rtl .condo-modal-close {
5317
- right: auto;
5318
- right: initial;
5319
- left: 0;
6387
+ .condo-select-dropdown.condo-slide-up-enter.condo-slide-up-enter-active.condo-select-dropdown-placement-topLeft,
6388
+ .condo-select-dropdown.condo-slide-up-appear.condo-slide-up-appear-active.condo-select-dropdown-placement-topLeft {
6389
+ -webkit-animation-name: antSlideDownIn;
6390
+ animation-name: antSlideDownIn;
5320
6391
  }
5321
- .condo-modal-wrap-rtl .condo-modal-footer {
5322
- text-align: left;
6392
+ .condo-select-dropdown.condo-slide-up-leave.condo-slide-up-leave-active.condo-select-dropdown-placement-bottomLeft {
6393
+ -webkit-animation-name: antSlideUpOut;
6394
+ animation-name: antSlideUpOut;
5323
6395
  }
5324
- .condo-modal-wrap-rtl .condo-modal-footer .condo-btn + .condo-btn {
5325
- margin-right: 8px;
5326
- margin-left: 0;
6396
+ .condo-select-dropdown.condo-slide-up-leave.condo-slide-up-leave-active.condo-select-dropdown-placement-topLeft {
6397
+ -webkit-animation-name: antSlideDownOut;
6398
+ animation-name: antSlideDownOut;
5327
6399
  }
5328
- .condo-modal-wrap-rtl .condo-modal-confirm-body {
5329
- direction: rtl;
6400
+ .condo-select-dropdown-hidden {
6401
+ display: none;
5330
6402
  }
5331
- .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon {
5332
- float: right;
5333
- margin-right: 0;
5334
- margin-left: 16px;
6403
+ .condo-select-dropdown-empty {
6404
+ color: rgba(0, 0, 0, 0.25);
5335
6405
  }
5336
- .condo-modal-wrap-rtl .condo-modal-confirm-body > .anticon + .condo-modal-confirm-title + .condo-modal-confirm-content {
5337
- margin-right: 38px;
5338
- margin-left: 0;
6406
+ .condo-select-item-empty {
6407
+ position: relative;
6408
+ display: block;
6409
+ min-height: 32px;
6410
+ padding: 5px 12px;
6411
+ color: rgba(0, 0, 0, 0.85);
6412
+ font-weight: normal;
6413
+ font-size: 14px;
6414
+ line-height: 22px;
6415
+ color: rgba(0, 0, 0, 0.25);
5339
6416
  }
5340
- .condo-modal-wrap-rtl .condo-modal-confirm-btns {
5341
- text-align: left;
6417
+ .condo-select-item {
6418
+ position: relative;
6419
+ display: block;
6420
+ min-height: 32px;
6421
+ padding: 5px 12px;
6422
+ color: rgba(0, 0, 0, 0.85);
6423
+ font-weight: normal;
6424
+ font-size: 14px;
6425
+ line-height: 22px;
6426
+ cursor: pointer;
6427
+ transition: background 0.3s ease;
5342
6428
  }
5343
- .condo-modal-wrap-rtl .condo-modal-confirm-btns .condo-btn + .condo-btn {
5344
- margin-right: 8px;
5345
- margin-left: 0;
6429
+ .condo-select-item-group {
6430
+ color: rgba(0, 0, 0, 0.45);
6431
+ font-size: 12px;
6432
+ cursor: default;
5346
6433
  }
5347
- .condo-modal-wrap-rtl.condo-modal-centered .condo-modal {
5348
- text-align: right;
6434
+ .condo-select-item-option {
6435
+ display: flex;
5349
6436
  }
5350
- .condo-modal-root .condo-modal-mask {
5351
- background-color: rgba(112, 118, 149, 0.5);
6437
+ .condo-select-item-option-content {
6438
+ flex: auto;
6439
+ overflow: hidden;
6440
+ white-space: nowrap;
6441
+ text-overflow: ellipsis;
5352
6442
  }
5353
- .condo-modal-root .condo-modal {
5354
- max-width: calc(100vw - 40px * 2);
5355
- margin: 40px 0;
5356
- -webkit-animation-duration: 0s;
5357
- animation-duration: 0s;
6443
+ .condo-select-item-option-state {
6444
+ flex: none;
5358
6445
  }
5359
- .condo-modal-root .condo-modal .condo-modal-header {
5360
- flex-shrink: 0;
5361
- padding: 40px 104px 19px 40px;
5362
- border-bottom: 1px solid transparent;
5363
- transition: border-bottom-color 0.15s;
6446
+ .condo-select-item-option-active:not(.condo-select-item-option-disabled) {
6447
+ background-color: #f5f5f5;
5364
6448
  }
5365
- .condo-modal-root .condo-modal.condo-modal-scrolling .condo-modal-header {
5366
- border-bottom-color: #e1e5ed;
6449
+ .condo-select-item-option-selected:not(.condo-select-item-option-disabled) {
6450
+ color: rgba(0, 0, 0, 0.85);
6451
+ font-weight: 600;
6452
+ background-color: #e6f7ff;
5367
6453
  }
5368
- .condo-modal-root .condo-modal .condo-modal-close {
5369
- top: 42px;
5370
- right: 40px;
6454
+ .condo-select-item-option-selected:not(.condo-select-item-option-disabled) .condo-select-item-option-state {
6455
+ color: #1890ff;
5371
6456
  }
5372
- .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x {
5373
- display: flex;
5374
- align-items: center;
5375
- justify-content: center;
5376
- width: 24px;
5377
- height: 24px;
5378
- line-height: 24px;
6457
+ .condo-select-item-option-disabled {
6458
+ color: rgba(0, 0, 0, 0.25);
6459
+ cursor: not-allowed;
5379
6460
  }
5380
- .condo-modal-root .condo-modal .condo-modal-close .condo-modal-close-x div {
5381
- width: 24px;
5382
- height: 24px;
6461
+ .condo-select-item-option-disabled.condo-select-item-option-selected {
6462
+ background-color: #f5f5f5;
5383
6463
  }
5384
- .condo-modal-root .condo-modal .condo-modal-content {
5385
- display: flex;
5386
- flex-direction: column;
5387
- max-height: calc(100vh - (40px * 2));
5388
- padding: 0;
5389
- overflow: hidden;
5390
- border-radius: 12px;
6464
+ .condo-select-item-option-grouped {
6465
+ padding-left: 24px;
5391
6466
  }
5392
- .condo-modal-root .condo-modal .condo-modal-body {
5393
- margin: 0 40px;
5394
- padding: 20px 0 40px;
5395
- overflow: auto;
6467
+ .condo-select-lg {
6468
+ font-size: 16px;
5396
6469
  }
5397
- .condo-modal-root .condo-modal .condo-modal-body .condo-modal-wrapper {
5398
- width: -webkit-fit-content;
5399
- width: -moz-fit-content;
5400
- width: fit-content;
5401
- overflow: hidden;
6470
+ .condo-select-borderless .condo-select-selector {
6471
+ background-color: transparent !important;
6472
+ border-color: transparent !important;
6473
+ box-shadow: none !important;
5402
6474
  }
5403
- .condo-modal-root .condo-modal .condo-modal-footer {
5404
- padding: 19px 40px 20px;
5405
- border-top: 1px solid #e1e5ed;
6475
+ .condo-select.condo-select-in-form-item {
6476
+ width: 100%;
5406
6477
  }
5407
- .condo-modal-root .condo-modal .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger):not(:first-child) {
5408
- margin-left: 0;
6478
+ .condo-select-compact-item:not(.condo-select-compact-last-item) {
6479
+ margin-right: -1px;
5409
6480
  }
5410
-
5411
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5412
- /* stylelint-disable no-duplicate-selectors */
5413
- /* stylelint-disable */
5414
- /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5415
- .condo-tag {
5416
- box-sizing: border-box;
5417
- margin: 0;
5418
- padding: 0;
5419
- color: rgba(0, 0, 0, 0.85);
5420
- font-size: 14px;
5421
- font-variant: tabular-nums;
5422
- line-height: 1.5715;
5423
- list-style: none;
5424
- font-feature-settings: 'tnum', "tnum";
5425
- display: inline-block;
5426
- height: auto;
5427
- margin-right: 8px;
5428
- padding: 0 7px;
5429
- font-size: 12px;
5430
- line-height: 20px;
5431
- white-space: nowrap;
5432
- background: #fafafa;
5433
- border: 1px solid #d9d9d9;
5434
- border-radius: 2px;
5435
- opacity: 1;
5436
- transition: all 0.3s;
6481
+ .condo-select-compact-item:not(.condo-select-compact-last-item).condo-select-compact-item-rtl {
6482
+ margin-right: 0;
6483
+ margin-left: -1px;
6484
+ }
6485
+ .condo-select-compact-item:hover > *,
6486
+ .condo-select-compact-item:focus > *,
6487
+ .condo-select-compact-item:active > * {
6488
+ z-index: 2;
6489
+ }
6490
+ .condo-select-compact-item.condo-select-focused > * {
6491
+ z-index: 2;
5437
6492
  }
5438
- .condo-tag,
5439
- .condo-tag a,
5440
- .condo-tag a:hover {
5441
- color: rgba(0, 0, 0, 0.85);
6493
+ .condo-select-compact-item[disabled] > * {
6494
+ z-index: 0;
5442
6495
  }
5443
- .condo-tag > a:first-child:last-child {
5444
- display: inline-block;
5445
- margin: 0 -8px;
5446
- padding: 0 8px;
6496
+ .condo-select-compact-item:not(.condo-select-compact-first-item):not(.condo-select-compact-last-item).condo-select > .condo-select-selector {
6497
+ border-radius: 0;
5447
6498
  }
5448
- .condo-tag-close-icon {
5449
- margin-left: 3px;
5450
- color: rgba(0, 0, 0, 0.45);
5451
- font-size: 10px;
5452
- cursor: pointer;
5453
- transition: all 0.3s;
6499
+ .condo-select-compact-item.condo-select-compact-first-item.condo-select:not(.condo-select-compact-item-rtl) > .condo-select-selector {
6500
+ border-top-right-radius: 0;
6501
+ border-bottom-right-radius: 0;
5454
6502
  }
5455
- .condo-tag-close-icon:hover {
5456
- color: rgba(0, 0, 0, 0.85);
6503
+ .condo-select-compact-item.condo-select-compact-last-item.condo-select:not(.condo-select-compact-item-rtl) > .condo-select-selector {
6504
+ border-top-left-radius: 0;
6505
+ border-bottom-left-radius: 0;
5457
6506
  }
5458
- .condo-tag-has-color {
5459
- border-color: transparent;
6507
+ .condo-select-compact-item.condo-select.condo-select-compact-first-item.condo-select-compact-item-rtl > .condo-select-selector {
6508
+ border-top-left-radius: 0;
6509
+ border-bottom-left-radius: 0;
5460
6510
  }
5461
- .condo-tag-has-color,
5462
- .condo-tag-has-color a,
5463
- .condo-tag-has-color a:hover,
5464
- .condo-tag-has-color .anticon-close,
5465
- .condo-tag-has-color .anticon-close:hover {
5466
- color: #fff;
6511
+ .condo-select-compact-item.condo-select.condo-select-compact-last-item.condo-select-compact-item-rtl > .condo-select-selector {
6512
+ border-top-right-radius: 0;
6513
+ border-bottom-right-radius: 0;
5467
6514
  }
5468
- .condo-tag-checkable {
5469
- background-color: transparent;
5470
- border-color: transparent;
5471
- cursor: pointer;
6515
+ .condo-select-rtl {
6516
+ direction: rtl;
5472
6517
  }
5473
- .condo-tag-checkable:not(.condo-tag-checkable-checked):hover {
5474
- color: #1890ff;
6518
+ .condo-select-rtl .condo-select-arrow {
6519
+ right: auto;
6520
+ right: initial;
6521
+ left: 11px;
5475
6522
  }
5476
- .condo-tag-checkable:active,
5477
- .condo-tag-checkable-checked {
5478
- color: #fff;
6523
+ .condo-select-rtl .condo-select-clear {
6524
+ right: auto;
6525
+ right: initial;
6526
+ left: 11px;
5479
6527
  }
5480
- .condo-tag-checkable-checked {
5481
- background-color: #1890ff;
6528
+ .condo-select-dropdown-rtl {
6529
+ direction: rtl;
5482
6530
  }
5483
- .condo-tag-checkable:active {
5484
- background-color: #096dd9;
6531
+ .condo-select-dropdown-rtl .condo-select-item-option-grouped {
6532
+ padding-right: 24px;
6533
+ padding-left: 12px;
5485
6534
  }
5486
- .condo-tag-hidden {
5487
- display: none;
6535
+ .condo-select-rtl.condo-select-multiple.condo-select-show-arrow .condo-select-selector,
6536
+ .condo-select-rtl.condo-select-multiple.condo-select-allow-clear .condo-select-selector {
6537
+ padding-right: 4px;
6538
+ padding-left: 24px;
5488
6539
  }
5489
- .condo-tag-pink {
5490
- color: #c41d7f;
5491
- background: #fff0f6;
5492
- border-color: #ffadd2;
6540
+ .condo-select-rtl.condo-select-multiple .condo-select-selection-item {
6541
+ text-align: right;
5493
6542
  }
5494
- .condo-tag-pink-inverse {
5495
- color: #fff;
5496
- background: #eb2f96;
5497
- border-color: #eb2f96;
6543
+ .condo-select-rtl.condo-select-multiple .condo-select-selection-item-content {
6544
+ margin-right: 0;
6545
+ margin-left: 4px;
6546
+ text-align: right;
5498
6547
  }
5499
- .condo-tag-magenta {
5500
- color: #c41d7f;
5501
- background: #fff0f6;
5502
- border-color: #ffadd2;
6548
+ .condo-select-rtl.condo-select-multiple .condo-select-selection-search-mirror {
6549
+ right: 0;
6550
+ left: auto;
5503
6551
  }
5504
- .condo-tag-magenta-inverse {
5505
- color: #fff;
5506
- background: #eb2f96;
5507
- border-color: #eb2f96;
6552
+ .condo-select-rtl.condo-select-multiple .condo-select-selection-placeholder {
6553
+ right: 11px;
6554
+ left: auto;
5508
6555
  }
5509
- .condo-tag-red {
5510
- color: #cf1322;
5511
- background: #fff1f0;
5512
- border-color: #ffa39e;
6556
+ .condo-select-rtl.condo-select-multiple.condo-select-sm .condo-select-selection-placeholder {
6557
+ right: 7px;
5513
6558
  }
5514
- .condo-tag-red-inverse {
5515
- color: #fff;
5516
- background: #f5222d;
5517
- border-color: #f5222d;
6559
+ .condo-select-rtl.condo-select-single .condo-select-selector .condo-select-selection-item,
6560
+ .condo-select-rtl.condo-select-single .condo-select-selector .condo-select-selection-placeholder {
6561
+ right: 0;
6562
+ left: 9px;
6563
+ text-align: right;
5518
6564
  }
5519
- .condo-tag-volcano {
5520
- color: #d4380d;
5521
- background: #fff2e8;
5522
- border-color: #ffbb96;
6565
+ .condo-select-rtl.condo-select-single.condo-select-show-arrow .condo-select-selection-search {
6566
+ right: 11px;
6567
+ left: 25px;
5523
6568
  }
5524
- .condo-tag-volcano-inverse {
5525
- color: #fff;
5526
- background: #fa541c;
5527
- border-color: #fa541c;
6569
+ .condo-select-rtl.condo-select-single.condo-select-show-arrow .condo-select-selection-item,
6570
+ .condo-select-rtl.condo-select-single.condo-select-show-arrow .condo-select-selection-placeholder {
6571
+ padding-right: 0;
6572
+ padding-left: 18px;
5528
6573
  }
5529
- .condo-tag-orange {
5530
- color: #d46b08;
5531
- background: #fff7e6;
5532
- border-color: #ffd591;
6574
+ .condo-select-rtl.condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-search {
6575
+ right: 6px;
5533
6576
  }
5534
- .condo-tag-orange-inverse {
5535
- color: #fff;
5536
- background: #fa8c16;
5537
- border-color: #fa8c16;
6577
+ .condo-select-rtl.condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-item,
6578
+ .condo-select-rtl.condo-select-single.condo-select-sm:not(.condo-select-customize-input).condo-select-show-arrow .condo-select-selection-placeholder {
6579
+ padding-right: 0;
6580
+ padding-left: 21px;
5538
6581
  }
5539
- .condo-tag-yellow {
5540
- color: #d4b106;
5541
- background: #feffe6;
5542
- border-color: #fffb8f;
6582
+ .condo-select {
6583
+ align-items: center;
5543
6584
  }
5544
- .condo-tag-yellow-inverse {
5545
- color: #fff;
5546
- background: #fadb14;
5547
- border-color: #fadb14;
6585
+ .condo-select-fit-content {
6586
+ display: inline-flex;
6587
+ width: -webkit-min-content;
6588
+ width: -moz-min-content;
6589
+ width: min-content;
5548
6590
  }
5549
- .condo-tag-gold {
5550
- color: #d48806;
5551
- background: #fffbe6;
5552
- border-color: #ffe58f;
6591
+ .condo-select-fill-parent {
6592
+ display: flex;
6593
+ width: 100%;
5553
6594
  }
5554
- .condo-tag-gold-inverse {
5555
- color: #fff;
5556
- background: #faad14;
5557
- border-color: #faad14;
6595
+ .condo-select-danger:not(.condo-select-customize-input) .condo-select-selector {
6596
+ border-color: transparent;
6597
+ background: #ff3b30;
5558
6598
  }
5559
- .condo-tag-cyan {
5560
- color: #08979c;
5561
- background: #e6fffb;
5562
- border-color: #87e8de;
6599
+ .condo-select-success:not(.condo-select-customize-input) .condo-select-selector {
6600
+ border-color: transparent;
6601
+ background: #39ce66;
5563
6602
  }
5564
- .condo-tag-cyan-inverse {
5565
- color: #fff;
5566
- background: #13c2c2;
5567
- border-color: #13c2c2;
6603
+ .condo-select-warning:not(.condo-select-customize-input) .condo-select-selector {
6604
+ border-color: transparent;
6605
+ background: #ff9500;
5568
6606
  }
5569
- .condo-tag-lime {
5570
- color: #7cb305;
5571
- background: #fcffe6;
5572
- border-color: #eaff8f;
6607
+ .condo-select-info:not(.condo-select-customize-input) .condo-select-selector {
6608
+ border-color: transparent;
6609
+ background: #2696f3;
5573
6610
  }
5574
- .condo-tag-lime-inverse {
5575
- color: #fff;
5576
- background: #a0d911;
5577
- border-color: #a0d911;
6611
+ .condo-select-secondary:not(.condo-select-customize-input) .condo-select-selector {
6612
+ border-color: transparent;
6613
+ background: #707695;
5578
6614
  }
5579
- .condo-tag-green {
5580
- color: #389e0d;
5581
- background: #f6ffed;
5582
- border-color: #b7eb8f;
6615
+ .condo-select-danger > .condo-select-arrow,
6616
+ .condo-select-warning > .condo-select-arrow,
6617
+ .condo-select-info > .condo-select-arrow,
6618
+ .condo-select-secondary > .condo-select-arrow,
6619
+ .condo-select-success > .condo-select-arrow {
6620
+ color: #fff;
5583
6621
  }
5584
- .condo-tag-green-inverse {
6622
+ .condo-select-danger .condo-select-selection-item > *,
6623
+ .condo-select-warning .condo-select-selection-item > *,
6624
+ .condo-select-info .condo-select-selection-item > *,
6625
+ .condo-select-secondary .condo-select-selection-item > *,
6626
+ .condo-select-success .condo-select-selection-item > * {
5585
6627
  color: #fff;
5586
- background: #52c41a;
5587
- border-color: #52c41a;
5588
6628
  }
5589
- .condo-tag-blue {
5590
- color: #096dd9;
5591
- background: #e6f7ff;
5592
- border-color: #91d5ff;
6629
+ .condo-select-arrow {
6630
+ position: absolute;
6631
+ top: 16px;
6632
+ right: 12px;
6633
+ height: inherit;
6634
+ margin: 0;
6635
+ color: #222;
5593
6636
  }
5594
- .condo-tag-blue-inverse {
5595
- color: #fff;
5596
- background: #1890ff;
5597
- border-color: #1890ff;
6637
+ .condo-select-disabled:not(.condo-select-customize-input) .condo-select-arrow {
6638
+ color: #e1e5ed;
5598
6639
  }
5599
- .condo-tag-geekblue {
5600
- color: #1d39c4;
5601
- background: #f0f5ff;
5602
- border-color: #adc6ff;
6640
+ .condo-select-open .condo-select-arrow {
6641
+ transform: rotate(180deg);
5603
6642
  }
5604
- .condo-tag-geekblue-inverse {
5605
- color: #fff;
5606
- background: #2f54eb;
5607
- border-color: #2f54eb;
6643
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector {
6644
+ height: 46px;
6645
+ padding: 0 36px 0 12px;
6646
+ border-radius: 8px;
5608
6647
  }
5609
- .condo-tag-purple {
5610
- color: #531dab;
5611
- background: #f9f0ff;
5612
- border-color: #d3adf7;
6648
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-item,
6649
+ .condo-select:not(.condo-select-customize-input) .condo-select-selector .condo-select-selection-placeholder {
6650
+ display: flex;
6651
+ align-items: center;
6652
+ justify-content: flex-start;
6653
+ width: 100%;
6654
+ padding-right: 0;
6655
+ color: #222;
6656
+ font-size: 14px;
6657
+ font-family: "Open Sans", var(--condo-font-fallback);
5613
6658
  }
5614
- .condo-tag-purple-inverse {
5615
- color: #fff;
5616
- background: #722ed1;
5617
- border-color: #722ed1;
6659
+ .condo-select:not(.condo-select-disabled):hover .condo-select-selector {
6660
+ border-color: transparent;
5618
6661
  }
5619
- .condo-tag-success {
5620
- color: #52c41a;
5621
- background: #f6ffed;
5622
- border-color: #b7eb8f;
6662
+ .condo-select:not(.condo-select-disabled):hover:not(.condo-select-success):not(.condo-select-warning):not(.condo-select-secondary):not(.condo-select-danger):not(.condo-select-info) .condo-select-selector {
6663
+ border-color: #707695;
5623
6664
  }
5624
- .condo-tag-processing {
5625
- color: #1890ff;
5626
- background: #e6f7ff;
5627
- border-color: #91d5ff;
6665
+ .condo-select-disabled.condo-select:not(.condo-select-customize-input) .condo-select-selector {
6666
+ background: #fff;
6667
+ opacity: 0.5;
5628
6668
  }
5629
- .condo-tag-error {
5630
- color: #ff4d4f;
5631
- background: #fff2f0;
5632
- border-color: #ffccc7;
6669
+ .condo-select-danger.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
6670
+ background-color: #ff3b30;
5633
6671
  }
5634
- .condo-tag-warning {
5635
- color: #faad14;
5636
- background: #fffbe6;
5637
- border-color: #ffe58f;
6672
+ .condo-select-success.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
6673
+ background-color: #39ce66;
5638
6674
  }
5639
- .condo-tag > .anticon + span,
5640
- .condo-tag > span + .anticon {
5641
- margin-left: 7px;
6675
+ .condo-select-warning.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
6676
+ background-color: #ff9500;
5642
6677
  }
5643
- .condo-tag.condo-tag-rtl {
5644
- margin-right: 0;
5645
- margin-left: 8px;
5646
- direction: rtl;
5647
- text-align: right;
6678
+ .condo-select-info.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
6679
+ background-color: #2696f3;
5648
6680
  }
5649
- .condo-tag-rtl .condo-tag-close-icon {
5650
- margin-right: 3px;
5651
- margin-left: 0;
6681
+ .condo-select-secondary.condo-select-disabled:not(.condo-select-customize-input) .condo-select-selector {
6682
+ background-color: #707695;
5652
6683
  }
5653
- .condo-tag-rtl.condo-tag > .anticon + span,
5654
- .condo-tag-rtl.condo-tag > span + .anticon {
5655
- margin-right: 7px;
5656
- margin-left: 0;
6684
+ .condo-select-focused.condo-select:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector {
6685
+ border-color: #222;
6686
+ box-shadow: none;
5657
6687
  }
5658
- .condo-tag {
5659
- font-weight: 600;
6688
+ .condo-select-focused.condo-select-success:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector,
6689
+ .condo-select-focused.condo-select-warning:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector,
6690
+ .condo-select-focused.condo-select-info:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector,
6691
+ .condo-select-focused.condo-select-danger:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector,
6692
+ .condo-select-focused.condo-select-secondary:not(.condo-select-disabled):not(.condo-select-customize-input) .condo-select-selector {
6693
+ border-color: transparent;
6694
+ box-shadow: none;
6695
+ }
6696
+ .condo-select-dropdown {
6697
+ border-radius: 8px;
6698
+ box-shadow: 0 4px 14px 0 rgba(178,185,217,0.4);
6699
+ }
6700
+ .condo-select-dropdown .condo-select-item {
6701
+ min-height: 22px;
6702
+ line-height: 20px;
6703
+ }
6704
+ .condo-select-dropdown .condo-select-item.condo-select-item-option-active {
6705
+ background-color: #f2f4f6;
6706
+ }
6707
+ .condo-select-dropdown .condo-select-item.condo-select-item-group {
6708
+ color: #707695;
6709
+ margin: 0;
6710
+ font-weight: 400;
5660
6711
  font-size: 12px;
5661
- font-family: "Open Sans", sans-serif;
6712
+ font-family: "Open Sans", var(--condo-font-fallback);
5662
6713
  line-height: 20px;
5663
6714
  letter-spacing: -0.01em;
6715
+ }
6716
+ .condo-select-dropdown .condo-select-item-option-content {
5664
6717
  margin: 0;
5665
- padding: 0.17em 0.83em 0.33em;
5666
- border: none;
5667
- border-radius: 12px;
6718
+ font-weight: 400;
6719
+ font-size: 14px;
6720
+ font-family: "Open Sans", var(--condo-font-fallback);
6721
+ line-height: 22px;
6722
+ letter-spacing: -0.01em;
5668
6723
  }
5669
6724
 
5670
6725
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@@ -6169,4 +7224,7 @@ span.condo-radio + * {
6169
7224
  .condo-space-compact-rtl {
6170
7225
  direction: rtl;
6171
7226
  }
7227
+ .condo-space-item {
7228
+ display: flex;
7229
+ }
6172
7230