@open-condo/ui 1.16.0 → 1.20.0

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