@qn-pandora/pandora-component 4.1.1 → 4.1.2

Sign up to get free protection for your applications and to get access to all the features.
package/es/index.css CHANGED
@@ -102,259 +102,6 @@
102
102
  .pandora-sdk-breadcrumb a {
103
103
  text-decoration: none;
104
104
  }
105
- @-webkit-keyframes antCheckboxEffect {
106
- 0% {
107
- -webkit-transform: scale(1);
108
- transform: scale(1);
109
- opacity: 0.5;
110
- }
111
- 100% {
112
- -webkit-transform: scale(1.6);
113
- transform: scale(1.6);
114
- opacity: 0;
115
- }
116
- }
117
- @keyframes antCheckboxEffect {
118
- 0% {
119
- -webkit-transform: scale(1);
120
- transform: scale(1);
121
- opacity: 0.5;
122
- }
123
- 100% {
124
- -webkit-transform: scale(1.6);
125
- transform: scale(1.6);
126
- opacity: 0;
127
- }
128
- }
129
- .ant-checkbox {
130
- -webkit-box-sizing: border-box;
131
- box-sizing: border-box;
132
- margin: 0;
133
- padding: 0;
134
- color: rgba(0, 0, 0, 0.85);
135
- font-size: 14px;
136
- font-variant: tabular-nums;
137
- line-height: 1.5715;
138
- list-style: none;
139
- -webkit-font-feature-settings: 'tnum';
140
- font-feature-settings: 'tnum';
141
- position: relative;
142
- top: 0.2em;
143
- line-height: 1;
144
- white-space: nowrap;
145
- outline: none;
146
- cursor: pointer;
147
- }
148
- .ant-checkbox-wrapper:hover .ant-checkbox-inner,
149
- .ant-checkbox:hover .ant-checkbox-inner,
150
- .ant-checkbox-input:focus + .ant-checkbox-inner {
151
- border-color: #1890ff;
152
- }
153
- .ant-checkbox-checked::after {
154
- position: absolute;
155
- top: 0;
156
- left: 0;
157
- width: 100%;
158
- height: 100%;
159
- border: 1px solid #1890ff;
160
- border-radius: 2px;
161
- visibility: hidden;
162
- -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
163
- animation: antCheckboxEffect 0.36s ease-in-out;
164
- -webkit-animation-fill-mode: backwards;
165
- animation-fill-mode: backwards;
166
- content: '';
167
- }
168
- .ant-checkbox:hover::after,
169
- .ant-checkbox-wrapper:hover .ant-checkbox::after {
170
- visibility: visible;
171
- }
172
- .ant-checkbox-inner {
173
- position: relative;
174
- top: 0;
175
- left: 0;
176
- display: block;
177
- width: 16px;
178
- height: 16px;
179
- direction: ltr;
180
- background-color: #fff;
181
- border: 1px solid #d9d9d9;
182
- border-radius: 2px;
183
- border-collapse: separate;
184
- -webkit-transition: all 0.3s;
185
- transition: all 0.3s;
186
- }
187
- .ant-checkbox-inner::after {
188
- position: absolute;
189
- top: 50%;
190
- left: 21.5%;
191
- display: table;
192
- width: 5.71428571px;
193
- height: 9.14285714px;
194
- border: 2px solid #fff;
195
- border-top: 0;
196
- border-left: 0;
197
- -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
198
- transform: rotate(45deg) scale(0) translate(-50%, -50%);
199
- opacity: 0;
200
- -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
201
- transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
202
- content: ' ';
203
- }
204
- .ant-checkbox-input {
205
- position: absolute;
206
- top: 0;
207
- right: 0;
208
- bottom: 0;
209
- left: 0;
210
- z-index: 1;
211
- width: 100%;
212
- height: 100%;
213
- cursor: pointer;
214
- opacity: 0;
215
- }
216
- .ant-checkbox-checked .ant-checkbox-inner::after {
217
- position: absolute;
218
- display: table;
219
- border: 2px solid #fff;
220
- border-top: 0;
221
- border-left: 0;
222
- -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
223
- transform: rotate(45deg) scale(1) translate(-50%, -50%);
224
- opacity: 1;
225
- -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
226
- transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
227
- content: ' ';
228
- }
229
- .ant-checkbox-checked .ant-checkbox-inner {
230
- background-color: #1890ff;
231
- border-color: #1890ff;
232
- }
233
- .ant-checkbox-disabled {
234
- cursor: not-allowed;
235
- }
236
- .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
237
- border-color: rgba(0, 0, 0, 0.25);
238
- -webkit-animation-name: none;
239
- animation-name: none;
240
- }
241
- .ant-checkbox-disabled .ant-checkbox-input {
242
- cursor: not-allowed;
243
- }
244
- .ant-checkbox-disabled .ant-checkbox-inner {
245
- background-color: #f5f5f5;
246
- border-color: #d9d9d9 !important;
247
- }
248
- .ant-checkbox-disabled .ant-checkbox-inner::after {
249
- border-color: #f5f5f5;
250
- border-collapse: separate;
251
- -webkit-animation-name: none;
252
- animation-name: none;
253
- }
254
- .ant-checkbox-disabled + span {
255
- color: rgba(0, 0, 0, 0.25);
256
- cursor: not-allowed;
257
- }
258
- .ant-checkbox-disabled:hover::after,
259
- .ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
260
- visibility: hidden;
261
- }
262
- .ant-checkbox-wrapper {
263
- -webkit-box-sizing: border-box;
264
- box-sizing: border-box;
265
- margin: 0;
266
- padding: 0;
267
- color: rgba(0, 0, 0, 0.85);
268
- font-size: 14px;
269
- font-variant: tabular-nums;
270
- line-height: 1.5715;
271
- list-style: none;
272
- -webkit-font-feature-settings: 'tnum';
273
- font-feature-settings: 'tnum';
274
- display: -webkit-inline-box;
275
- display: -ms-inline-flexbox;
276
- display: inline-flex;
277
- -webkit-box-align: baseline;
278
- -ms-flex-align: baseline;
279
- align-items: baseline;
280
- line-height: unset;
281
- cursor: pointer;
282
- }
283
- .ant-checkbox-wrapper::after {
284
- display: inline-block;
285
- width: 0;
286
- overflow: hidden;
287
- content: '\a0';
288
- }
289
- .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
290
- cursor: not-allowed;
291
- }
292
- .ant-checkbox-wrapper + .ant-checkbox-wrapper {
293
- margin-left: 8px;
294
- }
295
- .ant-checkbox + span {
296
- padding-right: 8px;
297
- padding-left: 8px;
298
- }
299
- .ant-checkbox-group {
300
- -webkit-box-sizing: border-box;
301
- box-sizing: border-box;
302
- margin: 0;
303
- padding: 0;
304
- color: rgba(0, 0, 0, 0.85);
305
- font-size: 14px;
306
- font-variant: tabular-nums;
307
- line-height: 1.5715;
308
- list-style: none;
309
- -webkit-font-feature-settings: 'tnum';
310
- font-feature-settings: 'tnum';
311
- display: inline-block;
312
- }
313
- .ant-checkbox-group-item {
314
- margin-right: 8px;
315
- }
316
- .ant-checkbox-group-item:last-child {
317
- margin-right: 0;
318
- }
319
- .ant-checkbox-group-item + .ant-checkbox-group-item {
320
- margin-left: 0;
321
- }
322
- .ant-checkbox-indeterminate .ant-checkbox-inner {
323
- background-color: #fff;
324
- border-color: #d9d9d9;
325
- }
326
- .ant-checkbox-indeterminate .ant-checkbox-inner::after {
327
- top: 50%;
328
- left: 50%;
329
- width: 8px;
330
- height: 8px;
331
- background-color: #1890ff;
332
- border: 0;
333
- -webkit-transform: translate(-50%, -50%) scale(1);
334
- transform: translate(-50%, -50%) scale(1);
335
- opacity: 1;
336
- content: ' ';
337
- }
338
- .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after {
339
- background-color: rgba(0, 0, 0, 0.25);
340
- border-color: rgba(0, 0, 0, 0.25);
341
- }
342
- .ant-checkbox-rtl {
343
- direction: rtl;
344
- }
345
- .ant-checkbox-group-rtl .ant-checkbox-group-item {
346
- margin-right: 0;
347
- margin-left: 8px;
348
- }
349
- .ant-checkbox-group-rtl .ant-checkbox-group-item:last-child {
350
- margin-left: 0 !important;
351
- }
352
- .ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item {
353
- margin-left: 8px;
354
- }
355
- .ant-checkbox-inner::after {
356
- left: 20%;
357
- }
358
105
  .ant-card {
359
106
  -webkit-box-sizing: border-box;
360
107
  box-sizing: border-box;
@@ -3257,101 +3004,346 @@ a.ant-btn-icon-only > .anticon {
3257
3004
  margin-right: -0.34em;
3258
3005
  letter-spacing: 0.34em;
3259
3006
  }
3260
- .ant-btn-block {
3261
- width: 100%;
3007
+ .ant-btn-block {
3008
+ width: 100%;
3009
+ }
3010
+ .ant-btn:empty {
3011
+ display: inline-block;
3012
+ width: 0;
3013
+ visibility: hidden;
3014
+ content: '\a0';
3015
+ }
3016
+ a.ant-btn {
3017
+ padding-top: 0.01px !important;
3018
+ line-height: 30px;
3019
+ }
3020
+ a.ant-btn-lg {
3021
+ line-height: 38px;
3022
+ }
3023
+ a.ant-btn-sm {
3024
+ line-height: 22px;
3025
+ }
3026
+ .ant-btn-rtl {
3027
+ direction: rtl;
3028
+ }
3029
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
3030
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
3031
+ border-right-color: #40a9ff;
3032
+ border-left-color: #d9d9d9;
3033
+ }
3034
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
3035
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
3036
+ border-right-color: #d9d9d9;
3037
+ border-left-color: #40a9ff;
3038
+ }
3039
+ .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
3040
+ padding-right: 0;
3041
+ padding-left: 8px;
3042
+ }
3043
+ .ant-btn > .ant-btn-loading-icon:only-child .anticon {
3044
+ padding-right: 0;
3045
+ padding-left: 0;
3046
+ }
3047
+ .ant-btn-rtl.ant-btn > .anticon + span,
3048
+ .ant-btn-rtl.ant-btn > span + .anticon {
3049
+ margin-right: 8px;
3050
+ margin-left: 0;
3051
+ }
3052
+ .pandora-sdk-button {
3053
+ -webkit-box-shadow: none;
3054
+ box-shadow: none;
3055
+ }
3056
+ .pandora-sdk-button.pandora-sdk-button-disabled {
3057
+ background: #eee;
3058
+ color: #bfbfbf;
3059
+ border-color: #eee;
3060
+ pointer-events: none;
3061
+ text-shadow: none;
3062
+ }
3063
+ .pandora-sdk-button.pandora-sdk-type-default {
3064
+ background: #d9d9d9;
3065
+ color: rgba(0, 0, 0, 0.65);
3066
+ border: 1px solid #d9d9d9;
3067
+ }
3068
+ .pandora-sdk-button.pandora-sdk-type-default:hover,
3069
+ .pandora-sdk-button.pandora-sdk-type-default:focus {
3070
+ background: #fafafa;
3071
+ border-color: #d9d9d9;
3072
+ }
3073
+ .pandora-sdk-button.pandora-sdk-size-large {
3074
+ font-size: 16px;
3075
+ padding: 0 20px;
3076
+ height: 32px;
3077
+ }
3078
+ .pandora-sdk-button.pandora-sdk-size-default {
3079
+ font-size: 14px;
3080
+ padding: 0 16px;
3081
+ height: 32px;
3082
+ }
3083
+ .pandora-sdk-button.pandora-sdk-size-small {
3084
+ font-size: 12px;
3085
+ padding: 4px 14px;
3086
+ }
3087
+ .pandora-sdk-button.pandora-sdk-size-mini {
3088
+ font-size: 10px;
3089
+ padding: 2px 6px;
3090
+ }
3091
+ .pandora-sdk-button .anticon {
3092
+ color: inherit;
3093
+ vertical-align: middle;
3094
+ }
3095
+ @-webkit-keyframes antCheckboxEffect {
3096
+ 0% {
3097
+ -webkit-transform: scale(1);
3098
+ transform: scale(1);
3099
+ opacity: 0.5;
3100
+ }
3101
+ 100% {
3102
+ -webkit-transform: scale(1.6);
3103
+ transform: scale(1.6);
3104
+ opacity: 0;
3105
+ }
3106
+ }
3107
+ @keyframes antCheckboxEffect {
3108
+ 0% {
3109
+ -webkit-transform: scale(1);
3110
+ transform: scale(1);
3111
+ opacity: 0.5;
3112
+ }
3113
+ 100% {
3114
+ -webkit-transform: scale(1.6);
3115
+ transform: scale(1.6);
3116
+ opacity: 0;
3117
+ }
3118
+ }
3119
+ .ant-checkbox {
3120
+ -webkit-box-sizing: border-box;
3121
+ box-sizing: border-box;
3122
+ margin: 0;
3123
+ padding: 0;
3124
+ color: rgba(0, 0, 0, 0.85);
3125
+ font-size: 14px;
3126
+ font-variant: tabular-nums;
3127
+ line-height: 1.5715;
3128
+ list-style: none;
3129
+ -webkit-font-feature-settings: 'tnum';
3130
+ font-feature-settings: 'tnum';
3131
+ position: relative;
3132
+ top: 0.2em;
3133
+ line-height: 1;
3134
+ white-space: nowrap;
3135
+ outline: none;
3136
+ cursor: pointer;
3137
+ }
3138
+ .ant-checkbox-wrapper:hover .ant-checkbox-inner,
3139
+ .ant-checkbox:hover .ant-checkbox-inner,
3140
+ .ant-checkbox-input:focus + .ant-checkbox-inner {
3141
+ border-color: #1890ff;
3142
+ }
3143
+ .ant-checkbox-checked::after {
3144
+ position: absolute;
3145
+ top: 0;
3146
+ left: 0;
3147
+ width: 100%;
3148
+ height: 100%;
3149
+ border: 1px solid #1890ff;
3150
+ border-radius: 2px;
3151
+ visibility: hidden;
3152
+ -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
3153
+ animation: antCheckboxEffect 0.36s ease-in-out;
3154
+ -webkit-animation-fill-mode: backwards;
3155
+ animation-fill-mode: backwards;
3156
+ content: '';
3157
+ }
3158
+ .ant-checkbox:hover::after,
3159
+ .ant-checkbox-wrapper:hover .ant-checkbox::after {
3160
+ visibility: visible;
3161
+ }
3162
+ .ant-checkbox-inner {
3163
+ position: relative;
3164
+ top: 0;
3165
+ left: 0;
3166
+ display: block;
3167
+ width: 16px;
3168
+ height: 16px;
3169
+ direction: ltr;
3170
+ background-color: #fff;
3171
+ border: 1px solid #d9d9d9;
3172
+ border-radius: 2px;
3173
+ border-collapse: separate;
3174
+ -webkit-transition: all 0.3s;
3175
+ transition: all 0.3s;
3176
+ }
3177
+ .ant-checkbox-inner::after {
3178
+ position: absolute;
3179
+ top: 50%;
3180
+ left: 21.5%;
3181
+ display: table;
3182
+ width: 5.71428571px;
3183
+ height: 9.14285714px;
3184
+ border: 2px solid #fff;
3185
+ border-top: 0;
3186
+ border-left: 0;
3187
+ -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
3188
+ transform: rotate(45deg) scale(0) translate(-50%, -50%);
3189
+ opacity: 0;
3190
+ -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
3191
+ transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
3192
+ content: ' ';
3193
+ }
3194
+ .ant-checkbox-input {
3195
+ position: absolute;
3196
+ top: 0;
3197
+ right: 0;
3198
+ bottom: 0;
3199
+ left: 0;
3200
+ z-index: 1;
3201
+ width: 100%;
3202
+ height: 100%;
3203
+ cursor: pointer;
3204
+ opacity: 0;
3205
+ }
3206
+ .ant-checkbox-checked .ant-checkbox-inner::after {
3207
+ position: absolute;
3208
+ display: table;
3209
+ border: 2px solid #fff;
3210
+ border-top: 0;
3211
+ border-left: 0;
3212
+ -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
3213
+ transform: rotate(45deg) scale(1) translate(-50%, -50%);
3214
+ opacity: 1;
3215
+ -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
3216
+ transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
3217
+ content: ' ';
3218
+ }
3219
+ .ant-checkbox-checked .ant-checkbox-inner {
3220
+ background-color: #1890ff;
3221
+ border-color: #1890ff;
3222
+ }
3223
+ .ant-checkbox-disabled {
3224
+ cursor: not-allowed;
3225
+ }
3226
+ .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
3227
+ border-color: rgba(0, 0, 0, 0.25);
3228
+ -webkit-animation-name: none;
3229
+ animation-name: none;
3230
+ }
3231
+ .ant-checkbox-disabled .ant-checkbox-input {
3232
+ cursor: not-allowed;
3233
+ }
3234
+ .ant-checkbox-disabled .ant-checkbox-inner {
3235
+ background-color: #f5f5f5;
3236
+ border-color: #d9d9d9 !important;
3237
+ }
3238
+ .ant-checkbox-disabled .ant-checkbox-inner::after {
3239
+ border-color: #f5f5f5;
3240
+ border-collapse: separate;
3241
+ -webkit-animation-name: none;
3242
+ animation-name: none;
3243
+ }
3244
+ .ant-checkbox-disabled + span {
3245
+ color: rgba(0, 0, 0, 0.25);
3246
+ cursor: not-allowed;
3247
+ }
3248
+ .ant-checkbox-disabled:hover::after,
3249
+ .ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
3250
+ visibility: hidden;
3262
3251
  }
3263
- .ant-btn:empty {
3252
+ .ant-checkbox-wrapper {
3253
+ -webkit-box-sizing: border-box;
3254
+ box-sizing: border-box;
3255
+ margin: 0;
3256
+ padding: 0;
3257
+ color: rgba(0, 0, 0, 0.85);
3258
+ font-size: 14px;
3259
+ font-variant: tabular-nums;
3260
+ line-height: 1.5715;
3261
+ list-style: none;
3262
+ -webkit-font-feature-settings: 'tnum';
3263
+ font-feature-settings: 'tnum';
3264
+ display: -webkit-inline-box;
3265
+ display: -ms-inline-flexbox;
3266
+ display: inline-flex;
3267
+ -webkit-box-align: baseline;
3268
+ -ms-flex-align: baseline;
3269
+ align-items: baseline;
3270
+ line-height: unset;
3271
+ cursor: pointer;
3272
+ }
3273
+ .ant-checkbox-wrapper::after {
3264
3274
  display: inline-block;
3265
3275
  width: 0;
3266
- visibility: hidden;
3276
+ overflow: hidden;
3267
3277
  content: '\a0';
3268
3278
  }
3269
- a.ant-btn {
3270
- padding-top: 0.01px !important;
3271
- line-height: 30px;
3272
- }
3273
- a.ant-btn-lg {
3274
- line-height: 38px;
3275
- }
3276
- a.ant-btn-sm {
3277
- line-height: 22px;
3278
- }
3279
- .ant-btn-rtl {
3280
- direction: rtl;
3281
- }
3282
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
3283
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
3284
- border-right-color: #40a9ff;
3285
- border-left-color: #d9d9d9;
3279
+ .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
3280
+ cursor: not-allowed;
3286
3281
  }
3287
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
3288
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
3289
- border-right-color: #d9d9d9;
3290
- border-left-color: #40a9ff;
3282
+ .ant-checkbox-wrapper + .ant-checkbox-wrapper {
3283
+ margin-left: 8px;
3291
3284
  }
3292
- .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
3293
- padding-right: 0;
3285
+ .ant-checkbox + span {
3286
+ padding-right: 8px;
3294
3287
  padding-left: 8px;
3295
3288
  }
3296
- .ant-btn > .ant-btn-loading-icon:only-child .anticon {
3297
- padding-right: 0;
3298
- padding-left: 0;
3289
+ .ant-checkbox-group {
3290
+ -webkit-box-sizing: border-box;
3291
+ box-sizing: border-box;
3292
+ margin: 0;
3293
+ padding: 0;
3294
+ color: rgba(0, 0, 0, 0.85);
3295
+ font-size: 14px;
3296
+ font-variant: tabular-nums;
3297
+ line-height: 1.5715;
3298
+ list-style: none;
3299
+ -webkit-font-feature-settings: 'tnum';
3300
+ font-feature-settings: 'tnum';
3301
+ display: inline-block;
3299
3302
  }
3300
- .ant-btn-rtl.ant-btn > .anticon + span,
3301
- .ant-btn-rtl.ant-btn > span + .anticon {
3303
+ .ant-checkbox-group-item {
3302
3304
  margin-right: 8px;
3303
- margin-left: 0;
3304
- }
3305
- .pandora-sdk-button {
3306
- -webkit-box-shadow: none;
3307
- box-shadow: none;
3308
3305
  }
3309
- .pandora-sdk-button.pandora-sdk-button-disabled {
3310
- background: #eee;
3311
- color: #bfbfbf;
3312
- border-color: #eee;
3313
- pointer-events: none;
3314
- text-shadow: none;
3306
+ .ant-checkbox-group-item:last-child {
3307
+ margin-right: 0;
3315
3308
  }
3316
- .pandora-sdk-button.pandora-sdk-type-default {
3317
- background: #d9d9d9;
3318
- color: rgba(0, 0, 0, 0.65);
3319
- border: 1px solid #d9d9d9;
3309
+ .ant-checkbox-group-item + .ant-checkbox-group-item {
3310
+ margin-left: 0;
3320
3311
  }
3321
- .pandora-sdk-button.pandora-sdk-type-default:hover,
3322
- .pandora-sdk-button.pandora-sdk-type-default:focus {
3323
- background: #fafafa;
3312
+ .ant-checkbox-indeterminate .ant-checkbox-inner {
3313
+ background-color: #fff;
3324
3314
  border-color: #d9d9d9;
3325
3315
  }
3326
- .pandora-sdk-button.pandora-sdk-size-large {
3327
- font-size: 16px;
3328
- padding: 0 20px;
3329
- height: 32px;
3316
+ .ant-checkbox-indeterminate .ant-checkbox-inner::after {
3317
+ top: 50%;
3318
+ left: 50%;
3319
+ width: 8px;
3320
+ height: 8px;
3321
+ background-color: #1890ff;
3322
+ border: 0;
3323
+ -webkit-transform: translate(-50%, -50%) scale(1);
3324
+ transform: translate(-50%, -50%) scale(1);
3325
+ opacity: 1;
3326
+ content: ' ';
3330
3327
  }
3331
- .pandora-sdk-button.pandora-sdk-size-default {
3332
- font-size: 14px;
3333
- padding: 0 16px;
3334
- height: 32px;
3328
+ .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after {
3329
+ background-color: rgba(0, 0, 0, 0.25);
3330
+ border-color: rgba(0, 0, 0, 0.25);
3335
3331
  }
3336
- .pandora-sdk-button.pandora-sdk-size-small {
3337
- font-size: 12px;
3338
- padding: 4px 14px;
3332
+ .ant-checkbox-rtl {
3333
+ direction: rtl;
3339
3334
  }
3340
- .pandora-sdk-button.pandora-sdk-size-mini {
3341
- font-size: 10px;
3342
- padding: 2px 6px;
3335
+ .ant-checkbox-group-rtl .ant-checkbox-group-item {
3336
+ margin-right: 0;
3337
+ margin-left: 8px;
3343
3338
  }
3344
- .pandora-sdk-button .anticon {
3345
- color: inherit;
3346
- vertical-align: middle;
3339
+ .ant-checkbox-group-rtl .ant-checkbox-group-item:last-child {
3340
+ margin-left: 0 !important;
3347
3341
  }
3348
- .pandora-sdk-checkbox-item {
3349
- white-space: nowrap;
3350
- width: 100%;
3342
+ .ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item {
3343
+ margin-left: 8px;
3351
3344
  }
3352
- .pandora-sdk-checkbox-item.ant-checkbox-wrapper {
3353
- margin-left: 0;
3354
- line-height: 25px;
3345
+ .ant-checkbox-inner::after {
3346
+ left: 20%;
3355
3347
  }
3356
3348
  .ant-divider {
3357
3349
  -webkit-box-sizing: border-box;
@@ -4340,6 +4332,14 @@ textarea.ant-input {
4340
4332
  padding-left: 16px;
4341
4333
  padding-right: 16px;
4342
4334
  }
4335
+ .pandora-sdk-checkbox-item {
4336
+ white-space: nowrap;
4337
+ width: 100%;
4338
+ }
4339
+ .pandora-sdk-checkbox-item.ant-checkbox-wrapper {
4340
+ margin-left: 0;
4341
+ line-height: 25px;
4342
+ }
4343
4343
  .ant-collapse {
4344
4344
  -webkit-box-sizing: border-box;
4345
4345
  box-sizing: border-box;
@@ -4862,6 +4862,15 @@ textarea.ant-input {
4862
4862
  margin-right: 8px;
4863
4863
  margin-left: 0;
4864
4864
  }
4865
+ .pandora-sdk-descriptions .pandora-sdk-remark-icon {
4866
+ margin-left: 5px;
4867
+ }
4868
+ .pandora-sdk-descriptions .ant-descriptions-item-label {
4869
+ color: #999;
4870
+ }
4871
+ .pandora-sdk-descriptions .ant-descriptions-item-content {
4872
+ color: #333;
4873
+ }
4865
4874
  .pandora-sdk-datetime-pick-popover-root .ant-popover-inner-content {
4866
4875
  padding: 0;
4867
4876
  }
@@ -5160,14 +5169,11 @@ textarea.ant-input {
5160
5169
  .pandora-sdk-drawer-close-icon {
5161
5170
  margin-left: 24px;
5162
5171
  }
5163
- .pandora-sdk-descriptions .pandora-sdk-remark-icon {
5164
- margin-left: 5px;
5165
- }
5166
- .pandora-sdk-descriptions .ant-descriptions-item-label {
5167
- color: #999;
5172
+ .ant-input[disabled] {
5173
+ border-color: #d9d9d9;
5168
5174
  }
5169
- .pandora-sdk-descriptions .ant-descriptions-item-content {
5170
- color: #333;
5175
+ .ant-input-group-addon {
5176
+ color: #666;
5171
5177
  }
5172
5178
  .ant-upload {
5173
5179
  -webkit-box-sizing: border-box;
@@ -5936,12 +5942,6 @@ textarea.ant-input {
5936
5942
  .pandora-sdk-file-resumable-img.ant-upload.ant-upload-drag .ant-upload-btn {
5937
5943
  padding: 0;
5938
5944
  }
5939
- .ant-input[disabled] {
5940
- border-color: #d9d9d9;
5941
- }
5942
- .ant-input-group-addon {
5943
- color: #666;
5944
- }
5945
5945
  .pandora-sdk-key-value-label,
5946
5946
  .pandora-sdk-key-value-value {
5947
5947
  display: inline-block;
@@ -6948,6 +6948,15 @@ textarea.ant-input {
6948
6948
  .ant-menu-horizontal > .ant-menu-item .pandora-sdk-menu-item-a {
6949
6949
  color: #333;
6950
6950
  }
6951
+ .pandora-sdk-name-explain-icon {
6952
+ color: inherit;
6953
+ -webkit-transition: color 0.3s;
6954
+ transition: color 0.3s;
6955
+ }
6956
+ .pandora-sdk-name-explain-icon:hover,
6957
+ .pandora-sdk-name-explain-icon .ant-tooltip-open {
6958
+ color: #2c6dd2;
6959
+ }
6951
6960
  .ant-modal {
6952
6961
  -webkit-box-sizing: border-box;
6953
6962
  box-sizing: border-box;
@@ -7502,15 +7511,6 @@ textarea.ant-input {
7502
7511
  max-height: 200px;
7503
7512
  overflow: auto;
7504
7513
  }
7505
- .pandora-sdk-name-explain-icon {
7506
- color: inherit;
7507
- -webkit-transition: color 0.3s;
7508
- transition: color 0.3s;
7509
- }
7510
- .pandora-sdk-name-explain-icon:hover,
7511
- .pandora-sdk-name-explain-icon .ant-tooltip-open {
7512
- color: #2c6dd2;
7513
- }
7514
7514
  .ant-radio-group {
7515
7515
  -webkit-box-sizing: border-box;
7516
7516
  box-sizing: border-box;
@@ -10519,6 +10519,32 @@ textarea.ant-input-number {
10519
10519
  .pandora-sdk-steps .ant-steps-item.ant-steps-item-wait .ant-steps-item-icon .ant-steps-icon {
10520
10520
  color: inherit;
10521
10521
  }
10522
+ .pandora-sdk-tabs .pandora-sdk-tabs-tab {
10523
+ position: relative;
10524
+ }
10525
+ .pandora-sdk-tabs .pandora-sdk-tabs-active .pandora-sdk-tabs-refresh-icon {
10526
+ opacity: 1;
10527
+ pointer-events: auto;
10528
+ }
10529
+ .pandora-sdk-tabs span.anticon.anticon-reload.pandora-sdk-tabs-refresh-icon {
10530
+ margin-right: 0;
10531
+ }
10532
+ .pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon {
10533
+ margin-left: 8px;
10534
+ font-size: 12px;
10535
+ color: #d9d9d9;
10536
+ -webkit-transition: color 0.5s, opacity 0.2s;
10537
+ transition: color 0.5s, opacity 0.2s;
10538
+ pointer-events: none;
10539
+ opacity: 0;
10540
+ position: absolute;
10541
+ top: 50%;
10542
+ -webkit-transform: translateY(-50%);
10543
+ transform: translateY(-50%);
10544
+ }
10545
+ .pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
10546
+ color: #2c6dd2;
10547
+ }
10522
10548
  .ant-table.ant-table-middle {
10523
10549
  font-size: 14px;
10524
10550
  }
@@ -12512,37 +12538,11 @@ textarea.ant-pagination-options-quick-jumper input {
12512
12538
  .pandora-sdk-popover {
12513
12539
  max-width: 400px;
12514
12540
  max-height: 1000px;
12515
- overflow: auto;
12516
- padding: 8px;
12517
- }
12518
- .pandora-sdk-popover > div {
12519
- margin: 4px;
12520
- }
12521
- .pandora-sdk-tabs .pandora-sdk-tabs-tab {
12522
- position: relative;
12523
- }
12524
- .pandora-sdk-tabs .pandora-sdk-tabs-active .pandora-sdk-tabs-refresh-icon {
12525
- opacity: 1;
12526
- pointer-events: auto;
12527
- }
12528
- .pandora-sdk-tabs span.anticon.anticon-reload.pandora-sdk-tabs-refresh-icon {
12529
- margin-right: 0;
12530
- }
12531
- .pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon {
12532
- margin-left: 8px;
12533
- font-size: 12px;
12534
- color: #d9d9d9;
12535
- -webkit-transition: color 0.5s, opacity 0.2s;
12536
- transition: color 0.5s, opacity 0.2s;
12537
- pointer-events: none;
12538
- opacity: 0;
12539
- position: absolute;
12540
- top: 50%;
12541
- -webkit-transform: translateY(-50%);
12542
- transform: translateY(-50%);
12541
+ overflow: auto;
12542
+ padding: 8px;
12543
12543
  }
12544
- .pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
12545
- color: #2c6dd2;
12544
+ .pandora-sdk-popover > div {
12545
+ margin: 4px;
12546
12546
  }
12547
12547
  .pandora-sdk-timeline-container {
12548
12548
  list-style: none;
@@ -12565,24 +12565,6 @@ textarea.ant-pagination-options-quick-jumper input {
12565
12565
  .pandora-sdk-timeline-container .pandora-sdk-icon:hover {
12566
12566
  color: #7a869a;
12567
12567
  }
12568
- .pandora-sdk-transfer-container {
12569
- display: -webkit-box;
12570
- display: -ms-flexbox;
12571
- display: flex;
12572
- -webkit-box-pack: justify;
12573
- -ms-flex-pack: justify;
12574
- justify-content: space-between;
12575
- }
12576
- .pandora-sdk-transfer-container .pandora-sdk-transfer-divider {
12577
- height: 400px;
12578
- }
12579
- .pandora-sdk-transfer-container .pandora-sdk-transfer-list {
12580
- -webkit-box-flex: 1;
12581
- -ms-flex-positive: 1;
12582
- flex-grow: 1;
12583
- -ms-flex-preferred-size: 200px;
12584
- flex-basis: 200px;
12585
- }
12586
12568
  @-webkit-keyframes ant-tree-node-fx-do-not-use {
12587
12569
  0% {
12588
12570
  opacity: 0;
@@ -13184,6 +13166,24 @@ textarea.ant-pagination-options-quick-jumper input {
13184
13166
  .pandora-sdk-tree-select-dropdown .ant-empty {
13185
13167
  text-align: center;
13186
13168
  }
13169
+ .pandora-sdk-transfer-container {
13170
+ display: -webkit-box;
13171
+ display: -ms-flexbox;
13172
+ display: flex;
13173
+ -webkit-box-pack: justify;
13174
+ -ms-flex-pack: justify;
13175
+ justify-content: space-between;
13176
+ }
13177
+ .pandora-sdk-transfer-container .pandora-sdk-transfer-divider {
13178
+ height: 400px;
13179
+ }
13180
+ .pandora-sdk-transfer-container .pandora-sdk-transfer-list {
13181
+ -webkit-box-flex: 1;
13182
+ -ms-flex-positive: 1;
13183
+ flex-grow: 1;
13184
+ -ms-flex-preferred-size: 200px;
13185
+ flex-basis: 200px;
13186
+ }
13187
13187
  .ant-row {
13188
13188
  display: -webkit-box;
13189
13189
  display: -ms-flexbox;
@@ -19079,33 +19079,6 @@ textarea.ant-pagination-options-quick-jumper input {
19079
19079
  .pandora-sdk-card-search-input i {
19080
19080
  color: #bfbfbf;
19081
19081
  }
19082
- .pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter {
19083
- width: 32px;
19084
- margin: 0 auto;
19085
- margin-top: 10px;
19086
- margin-bottom: 5px;
19087
- }
19088
- .pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter .pandora-sdk-datetime-mobile-picker-title-div {
19089
- border-radius: 2px;
19090
- border: 2px solid #939393;
19091
- }
19092
- .pandora-sdk-datetime-mobile-picker {
19093
- border-radius: 12px;
19094
- }
19095
- .pandora-sdk-datetime-mobile-picker .am-picker-popup-header-left {
19096
- visibility: hidden;
19097
- }
19098
- .pandora-sdk-datetime-mobile-picker .am-picker-popup-content .am-picker-popup-body .am-picker-popup-header {
19099
- border-bottom: none;
19100
- background-image: none;
19101
- background-position: unset;
19102
- background-size: unset;
19103
- position: initial;
19104
- }
19105
- .pandora-sdk-datetime-pick-input .ant-input-suffix {
19106
- pointer-events: none;
19107
- color: #7a869a;
19108
- }
19109
19082
  .ant-picker {
19110
19083
  -webkit-box-sizing: border-box;
19111
19084
  box-sizing: border-box;
@@ -20389,24 +20362,65 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20389
20362
  .pandora-sdk-selector .pandora-sdk-datetime-pick-quarter-content .pandora-sdk-selector {
20390
20363
  margin-left: 18px;
20391
20364
  }
20365
+ .pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter {
20366
+ width: 32px;
20367
+ margin: 0 auto;
20368
+ margin-top: 10px;
20369
+ margin-bottom: 5px;
20370
+ }
20371
+ .pandora-sdk-datetime-mobile-picker-title .pandora-sdk-datetime-mobile-picker-title-div-containter .pandora-sdk-datetime-mobile-picker-title-div {
20372
+ border-radius: 2px;
20373
+ border: 2px solid #939393;
20374
+ }
20375
+ .pandora-sdk-datetime-mobile-picker {
20376
+ border-radius: 12px;
20377
+ }
20378
+ .pandora-sdk-datetime-mobile-picker .am-picker-popup-header-left {
20379
+ visibility: hidden;
20380
+ }
20381
+ .pandora-sdk-datetime-mobile-picker .am-picker-popup-content .am-picker-popup-body .am-picker-popup-header {
20382
+ border-bottom: none;
20383
+ background-image: none;
20384
+ background-position: unset;
20385
+ background-size: unset;
20386
+ position: initial;
20387
+ }
20388
+ .pandora-sdk-datetime-pick-input .ant-input-suffix {
20389
+ pointer-events: none;
20390
+ color: #7a869a;
20391
+ }
20392
20392
  .pandora-sdk-modal-close-icon {
20393
20393
  font-size: 20px;
20394
20394
  }
20395
20395
  .pandora-sdk-modal-close-icon:hover {
20396
20396
  background: #f4f5f6;
20397
20397
  }
20398
- .pandora-sdk-popover-inline-list {
20398
+ .pandora-sdk-popover-item {
20399
20399
  display: inline-block;
20400
+ line-height: 18px;
20401
+ color: #2c6dd2;
20400
20402
  vertical-align: middle;
20403
+ cursor: pointer;
20401
20404
  }
20402
- .pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item {
20403
- display: inline-block;
20404
- height: 100%;
20405
- margin-right: 12px;
20405
+ .pandora-sdk-popover-list {
20406
+ min-width: 120px;
20407
+ padding: 4px 0;
20408
+ line-height: 32px;
20409
+ text-align: center;
20410
+ font-size: 12px;
20406
20411
  }
20407
- .pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item i {
20412
+ .pandora-sdk-popover-list .pandora-sdk-item {
20413
+ color: rgba(0, 0, 0, 0.85);
20414
+ display: block;
20415
+ padding: 0 16px;
20416
+ }
20417
+ .pandora-sdk-popover-list .pandora-sdk-item:hover {
20418
+ background: rgba(44, 109, 210, 0.05);
20408
20419
  color: #2c6dd2;
20409
20420
  }
20421
+ .pandora-sdk-popover-list .pandora-sdk-item.pandora-sdk-disabled {
20422
+ color: #bfbfbf;
20423
+ }
20410
20424
  .pandora-sdk-item {
20411
20425
  color: #2c6dd2;
20412
20426
  cursor: pointer;
@@ -20429,32 +20443,18 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20429
20443
  color: inherit;
20430
20444
  cursor: inherit;
20431
20445
  }
20432
- .pandora-sdk-popover-item {
20446
+ .pandora-sdk-popover-inline-list {
20433
20447
  display: inline-block;
20434
- line-height: 18px;
20435
- color: #2c6dd2;
20436
20448
  vertical-align: middle;
20437
- cursor: pointer;
20438
- }
20439
- .pandora-sdk-popover-list {
20440
- min-width: 120px;
20441
- padding: 4px 0;
20442
- line-height: 32px;
20443
- text-align: center;
20444
- font-size: 12px;
20445
20449
  }
20446
- .pandora-sdk-popover-list .pandora-sdk-item {
20447
- color: rgba(0, 0, 0, 0.85);
20448
- display: block;
20449
- padding: 0 16px;
20450
+ .pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item {
20451
+ display: inline-block;
20452
+ height: 100%;
20453
+ margin-right: 12px;
20450
20454
  }
20451
- .pandora-sdk-popover-list .pandora-sdk-item:hover {
20452
- background: rgba(44, 109, 210, 0.05);
20455
+ .pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item i {
20453
20456
  color: #2c6dd2;
20454
20457
  }
20455
- .pandora-sdk-popover-list .pandora-sdk-item.pandora-sdk-disabled {
20456
- color: #bfbfbf;
20457
- }
20458
20458
  .pandora-sdk-prev-button {
20459
20459
  margin-right: 10px;
20460
20460
  }
@@ -20563,6 +20563,32 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20563
20563
  .pandora-sdk-root.pandora-sdk-grey {
20564
20564
  background: #ebecf0;
20565
20565
  }
20566
+ .pandora-sdk-switch {
20567
+ display: inline-block;
20568
+ margin: 4px;
20569
+ padding: 8px;
20570
+ border-radius: 100px;
20571
+ line-height: 1;
20572
+ font-size: 16px;
20573
+ color: #7a869a;
20574
+ background: #ebecf0;
20575
+ cursor: pointer;
20576
+ }
20577
+ .pandora-sdk-switch.pandora-sdk-active {
20578
+ color: #d9d9d9;
20579
+ }
20580
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-primary {
20581
+ background: #2c6dd2;
20582
+ }
20583
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-green {
20584
+ background: #52c41a;
20585
+ }
20586
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-yellow {
20587
+ background: #faad14;
20588
+ }
20589
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-blue {
20590
+ background: #03a9f4;
20591
+ }
20566
20592
  .pandora-sdk-timeline-item {
20567
20593
  font-size: 14px;
20568
20594
  list-style: none;
@@ -20607,32 +20633,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20607
20633
  font-size: 14px;
20608
20634
  color: #333;
20609
20635
  }
20610
- .pandora-sdk-switch {
20611
- display: inline-block;
20612
- margin: 4px;
20613
- padding: 8px;
20614
- border-radius: 100px;
20615
- line-height: 1;
20616
- font-size: 16px;
20617
- color: #7a869a;
20618
- background: #ebecf0;
20619
- cursor: pointer;
20620
- }
20621
- .pandora-sdk-switch.pandora-sdk-active {
20622
- color: #d9d9d9;
20623
- }
20624
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-primary {
20625
- background: #2c6dd2;
20626
- }
20627
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-green {
20628
- background: #52c41a;
20629
- }
20630
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-yellow {
20631
- background: #faad14;
20632
- }
20633
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-blue {
20634
- background: #03a9f4;
20635
- }
20636
20636
  .pandora-sdk-transfer-list {
20637
20637
  overflow: hidden;
20638
20638
  }
@@ -20664,34 +20664,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20664
20664
  .pandora-sdk-transfer-list-body .pandora-sdk-transfer-mb10 {
20665
20665
  margin-bottom: 10px;
20666
20666
  }
20667
- .pandora-sdk-panel-title {
20668
- display: -webkit-box;
20669
- display: -ms-flexbox;
20670
- display: flex;
20671
- -webkit-box-pack: justify;
20672
- -ms-flex-pack: justify;
20673
- justify-content: space-between;
20674
- font-size: 12px;
20675
- color: #42526e;
20676
- cursor: pointer;
20677
- padding-bottom: 16px;
20678
- border-bottom: 1px solid #d9d9d9;
20679
- }
20680
- .pandora-sdk-panel-title .icon {
20681
- font-size: 14px;
20682
- }
20683
- .pandora-sdk-panel-content {
20684
- padding: 20px 0 0 0;
20685
- }
20686
- .pandora-sdk-panel-hidden {
20687
- display: none;
20688
- }
20689
- .pandora-sdk-panel {
20690
- margin-bottom: 20px;
20691
- }
20692
- .pandora-sdk-panel-disable {
20693
- cursor: default;
20694
- }
20695
20667
  .pandora-sdk-datetime-mobile-pick-range-preset-head {
20696
20668
  display: -webkit-box;
20697
20669
  display: -ms-flexbox;
@@ -20728,3 +20700,31 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
20728
20700
  border-radius: 2px;
20729
20701
  border: 2px solid #939393;
20730
20702
  }
20703
+ .pandora-sdk-panel-title {
20704
+ display: -webkit-box;
20705
+ display: -ms-flexbox;
20706
+ display: flex;
20707
+ -webkit-box-pack: justify;
20708
+ -ms-flex-pack: justify;
20709
+ justify-content: space-between;
20710
+ font-size: 12px;
20711
+ color: #42526e;
20712
+ cursor: pointer;
20713
+ padding-bottom: 16px;
20714
+ border-bottom: 1px solid #d9d9d9;
20715
+ }
20716
+ .pandora-sdk-panel-title .icon {
20717
+ font-size: 14px;
20718
+ }
20719
+ .pandora-sdk-panel-content {
20720
+ padding: 20px 0 0 0;
20721
+ }
20722
+ .pandora-sdk-panel-hidden {
20723
+ display: none;
20724
+ }
20725
+ .pandora-sdk-panel {
20726
+ margin-bottom: 20px;
20727
+ }
20728
+ .pandora-sdk-panel-disable {
20729
+ cursor: default;
20730
+ }