@qn-pandora/pandora-component 4.0.2 → 4.0.4

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 (71) hide show
  1. package/CHANGELOG.json +43 -0
  2. package/CHANGELOG.md +17 -1
  3. package/es/components/AutoComplete/index.js +21 -1
  4. package/es/components/DateTimePicker/transform.d.ts +4 -1
  5. package/es/components/DateTimePicker/transform.js +2 -2
  6. package/es/components/Drawer/index.d.ts +30 -2
  7. package/es/components/Drawer/index.js +165 -5
  8. package/es/components/Drawer/style.css +18 -1
  9. package/es/components/Drawer/style.less +23 -1
  10. package/es/components/FileResumable/constants.d.ts +33 -0
  11. package/es/components/FileResumable/constants.js +0 -0
  12. package/es/components/FileResumable/index.d.ts +13 -0
  13. package/es/components/FileResumable/index.js +327 -0
  14. package/es/components/FileResumable/style.css +777 -0
  15. package/es/components/FileResumable/style.less +94 -0
  16. package/es/components/FileResumable/utils.d.ts +1 -0
  17. package/es/components/FileResumable/utils.js +17 -0
  18. package/es/components/Selector/SelectorWidthChildren.d.ts +15 -0
  19. package/es/components/Selector/SelectorWidthChildren.js +59 -0
  20. package/es/components/Selector/index.d.ts +2 -0
  21. package/es/components/Selector/index.js +17 -3
  22. package/es/components/TreeSelector/index.js +1 -1
  23. package/es/constants/language/en.js +3 -1
  24. package/es/constants/language/type.d.ts +2 -0
  25. package/es/constants/language/upload/en.d.ts +3 -0
  26. package/es/constants/language/upload/en.js +20 -0
  27. package/es/constants/language/upload/type.d.ts +20 -0
  28. package/es/constants/language/upload/type.js +4 -0
  29. package/es/constants/language/upload/zh.d.ts +3 -0
  30. package/es/constants/language/upload/zh.js +20 -0
  31. package/es/constants/language/zh.js +3 -1
  32. package/es/index.css +1282 -498
  33. package/es/index.d.ts +2 -0
  34. package/es/index.js +2 -0
  35. package/es/index.less +12 -11
  36. package/es/style/theme.less +1 -0
  37. package/lib/components/AutoComplete/index.js +21 -1
  38. package/lib/components/DateTimePicker/transform.d.ts +4 -1
  39. package/lib/components/DateTimePicker/transform.js +2 -0
  40. package/lib/components/Drawer/index.d.ts +30 -2
  41. package/lib/components/Drawer/index.js +164 -12
  42. package/lib/components/Drawer/style.css +18 -1
  43. package/lib/components/Drawer/style.less +23 -1
  44. package/lib/components/FileResumable/constants.d.ts +33 -0
  45. package/lib/components/FileResumable/constants.js +2 -0
  46. package/lib/components/FileResumable/index.d.ts +13 -0
  47. package/lib/components/FileResumable/index.js +340 -0
  48. package/lib/components/FileResumable/style.css +777 -0
  49. package/lib/components/FileResumable/style.less +94 -0
  50. package/lib/components/FileResumable/utils.d.ts +1 -0
  51. package/lib/components/FileResumable/utils.js +19 -0
  52. package/lib/components/Selector/SelectorWidthChildren.d.ts +15 -0
  53. package/lib/components/Selector/SelectorWidthChildren.js +72 -0
  54. package/lib/components/Selector/index.d.ts +2 -0
  55. package/lib/components/Selector/index.js +16 -2
  56. package/lib/components/TreeSelector/index.js +1 -1
  57. package/lib/constants/language/en.js +6 -1
  58. package/lib/constants/language/type.d.ts +2 -0
  59. package/lib/constants/language/upload/en.d.ts +3 -0
  60. package/lib/constants/language/upload/en.js +22 -0
  61. package/lib/constants/language/upload/type.d.ts +20 -0
  62. package/lib/constants/language/upload/type.js +9 -0
  63. package/lib/constants/language/upload/zh.d.ts +3 -0
  64. package/lib/constants/language/upload/zh.js +22 -0
  65. package/lib/constants/language/zh.js +6 -1
  66. package/lib/index.css +977 -193
  67. package/lib/index.d.ts +2 -0
  68. package/lib/index.js +4 -0
  69. package/lib/index.less +9 -8
  70. package/lib/style/theme.less +1 -0
  71. package/package.json +6 -4
package/es/index.css CHANGED
@@ -8,81 +8,6 @@
8
8
  /* stylelint-disable no-duplicate-selectors */
9
9
  /* stylelint-disable */
10
10
  /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
11
- .ant-breadcrumb {
12
- -webkit-box-sizing: border-box;
13
- box-sizing: border-box;
14
- margin: 0;
15
- padding: 0;
16
- color: rgba(0, 0, 0, 0.85);
17
- font-variant: tabular-nums;
18
- line-height: 1.5715;
19
- list-style: none;
20
- -webkit-font-feature-settings: 'tnum';
21
- font-feature-settings: 'tnum';
22
- color: rgba(0, 0, 0, 0.45);
23
- font-size: 14px;
24
- }
25
- .ant-breadcrumb .anticon {
26
- font-size: 14px;
27
- }
28
- .ant-breadcrumb a {
29
- color: rgba(0, 0, 0, 0.45);
30
- -webkit-transition: color 0.3s;
31
- transition: color 0.3s;
32
- }
33
- .ant-breadcrumb a:hover {
34
- color: #40a9ff;
35
- }
36
- .ant-breadcrumb > span:last-child {
37
- color: rgba(0, 0, 0, 0.85);
38
- }
39
- .ant-breadcrumb > span:last-child a {
40
- color: rgba(0, 0, 0, 0.85);
41
- }
42
- .ant-breadcrumb > span:last-child .ant-breadcrumb-separator {
43
- display: none;
44
- }
45
- .ant-breadcrumb-separator {
46
- margin: 0 8px;
47
- color: rgba(0, 0, 0, 0.45);
48
- }
49
- .ant-breadcrumb-link > .anticon + span,
50
- .ant-breadcrumb-link > .anticon + a {
51
- margin-left: 4px;
52
- }
53
- .ant-breadcrumb-overlay-link > .anticon {
54
- margin-left: 4px;
55
- }
56
- .ant-breadcrumb-rtl {
57
- direction: rtl;
58
- }
59
- .ant-breadcrumb-rtl::before {
60
- display: table;
61
- content: '';
62
- }
63
- .ant-breadcrumb-rtl::after {
64
- display: table;
65
- clear: both;
66
- content: '';
67
- }
68
- .ant-breadcrumb-rtl > span {
69
- float: right;
70
- }
71
- .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span,
72
- .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a {
73
- margin-right: 4px;
74
- margin-left: 0;
75
- }
76
- .ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon {
77
- margin-right: 4px;
78
- margin-left: 0;
79
- }
80
- .pandora-sdk-breadcrumb {
81
- font-size: 14px;
82
- }
83
- .pandora-sdk-breadcrumb a {
84
- text-decoration: none;
85
- }
86
11
  .ant-select-auto-complete {
87
12
  -webkit-box-sizing: border-box;
88
13
  box-sizing: border-box;
@@ -3092,6 +3017,81 @@ a.ant-btn-sm {
3092
3017
  color: inherit;
3093
3018
  vertical-align: middle;
3094
3019
  }
3020
+ .ant-breadcrumb {
3021
+ -webkit-box-sizing: border-box;
3022
+ box-sizing: border-box;
3023
+ margin: 0;
3024
+ padding: 0;
3025
+ color: rgba(0, 0, 0, 0.85);
3026
+ font-variant: tabular-nums;
3027
+ line-height: 1.5715;
3028
+ list-style: none;
3029
+ -webkit-font-feature-settings: 'tnum';
3030
+ font-feature-settings: 'tnum';
3031
+ color: rgba(0, 0, 0, 0.45);
3032
+ font-size: 14px;
3033
+ }
3034
+ .ant-breadcrumb .anticon {
3035
+ font-size: 14px;
3036
+ }
3037
+ .ant-breadcrumb a {
3038
+ color: rgba(0, 0, 0, 0.45);
3039
+ -webkit-transition: color 0.3s;
3040
+ transition: color 0.3s;
3041
+ }
3042
+ .ant-breadcrumb a:hover {
3043
+ color: #40a9ff;
3044
+ }
3045
+ .ant-breadcrumb > span:last-child {
3046
+ color: rgba(0, 0, 0, 0.85);
3047
+ }
3048
+ .ant-breadcrumb > span:last-child a {
3049
+ color: rgba(0, 0, 0, 0.85);
3050
+ }
3051
+ .ant-breadcrumb > span:last-child .ant-breadcrumb-separator {
3052
+ display: none;
3053
+ }
3054
+ .ant-breadcrumb-separator {
3055
+ margin: 0 8px;
3056
+ color: rgba(0, 0, 0, 0.45);
3057
+ }
3058
+ .ant-breadcrumb-link > .anticon + span,
3059
+ .ant-breadcrumb-link > .anticon + a {
3060
+ margin-left: 4px;
3061
+ }
3062
+ .ant-breadcrumb-overlay-link > .anticon {
3063
+ margin-left: 4px;
3064
+ }
3065
+ .ant-breadcrumb-rtl {
3066
+ direction: rtl;
3067
+ }
3068
+ .ant-breadcrumb-rtl::before {
3069
+ display: table;
3070
+ content: '';
3071
+ }
3072
+ .ant-breadcrumb-rtl::after {
3073
+ display: table;
3074
+ clear: both;
3075
+ content: '';
3076
+ }
3077
+ .ant-breadcrumb-rtl > span {
3078
+ float: right;
3079
+ }
3080
+ .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span,
3081
+ .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a {
3082
+ margin-right: 4px;
3083
+ margin-left: 0;
3084
+ }
3085
+ .ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon {
3086
+ margin-right: 4px;
3087
+ margin-left: 0;
3088
+ }
3089
+ .pandora-sdk-breadcrumb {
3090
+ font-size: 14px;
3091
+ }
3092
+ .pandora-sdk-breadcrumb a {
3093
+ text-decoration: none;
3094
+ }
3095
3095
  @-webkit-keyframes antCheckboxEffect {
3096
3096
  0% {
3097
3097
  -webkit-transform: scale(1);
@@ -3342,9 +3342,6 @@ a.ant-btn-sm {
3342
3342
  .ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item {
3343
3343
  margin-left: 8px;
3344
3344
  }
3345
- .ant-checkbox-inner::after {
3346
- left: 20%;
3347
- }
3348
3345
  .pandora-sdk-checkbox-item {
3349
3346
  white-space: nowrap;
3350
3347
  width: 100%;
@@ -4284,62 +4281,6 @@ textarea.ant-input {
4284
4281
  .pandora-sdk-check-transform .pandora-sdk-check-transform-checkBox .pandora-sdk-check-transform-checkbox-group {
4285
4282
  line-height: 40px;
4286
4283
  }
4287
- .pandora-sdk-collapsible-panel > .panel-header {
4288
- position: relative;
4289
- padding: 12px 16px 12px 40px;
4290
- cursor: pointer;
4291
- color: rgba(0, 0, 0, 0.85);
4292
- background-color: #f4f5f7;
4293
- border: 1px solid #d9d9d9;
4294
- }
4295
- .pandora-sdk-collapsible-panel > .panel-header > .icon {
4296
- position: absolute;
4297
- left: 16px;
4298
- top: 50%;
4299
- -webkit-transform: translateY(-50%);
4300
- transform: translateY(-50%);
4301
- }
4302
- .pandora-sdk-collapsible-panel > .panel-header > .icon > i {
4303
- color: inherit;
4304
- }
4305
- .pandora-sdk-collapsible-panel > .panel-header > .icon > i > svg {
4306
- -webkit-transition: -webkit-transform 0.2s linear;
4307
- transition: -webkit-transform 0.2s linear;
4308
- transition: transform 0.2s linear;
4309
- transition: transform 0.2s linear, -webkit-transform 0.2s linear;
4310
- }
4311
- .pandora-sdk-collapsible-panel > .panel-header.disabled-header {
4312
- cursor: not-allowed;
4313
- }
4314
- .pandora-sdk-collapsible-panel > .panel-content-box {
4315
- overflow-y: hidden;
4316
- padding: 0;
4317
- margin: 0;
4318
- border: none;
4319
- }
4320
- .pandora-sdk-collapsible-panel > .panel-content-box > div > .panel-content {
4321
- padding: 8px 16px;
4322
- color: rgba(0, 0, 0, 0.85);
4323
- background-color: #fff;
4324
- border: 1px solid #d9d9d9;
4325
- border-top: none;
4326
- overflow-x: auto;
4327
- }
4328
- .pandora-sdk-collapsible-panel.no-border > .panel-header,
4329
- .pandora-sdk-collapsible-panel.no-border > .panel-content-box > div > .panel-content {
4330
- border: none;
4331
- }
4332
- .pandora-sdk-collapsible-panel.icon-right > .panel-header {
4333
- padding: 12px 40px 12px 16px;
4334
- }
4335
- .pandora-sdk-collapsible-panel.icon-right > .panel-header > :local(.icon) {
4336
- left: unset;
4337
- right: 16px;
4338
- }
4339
- .pandora-sdk-collapsible-panel.hide-arrow > .panel-header {
4340
- padding-left: 16px;
4341
- padding-right: 16px;
4342
- }
4343
4284
  .ant-collapse {
4344
4285
  -webkit-box-sizing: border-box;
4345
4286
  box-sizing: border-box;
@@ -4544,266 +4485,64 @@ textarea.ant-input {
4544
4485
  .pandora-sdk-collapse-dashed > .ant-collapse-item > .ant-collapse-content {
4545
4486
  border: none;
4546
4487
  }
4547
- .ant-drawer {
4548
- position: fixed;
4549
- z-index: 1000;
4550
- width: 0%;
4551
- height: 100%;
4552
- -webkit-transition: width 0s ease 0.3s, height 0s ease 0.3s;
4553
- transition: width 0s ease 0.3s, height 0s ease 0.3s;
4488
+ .ant-checkbox-inner::after {
4489
+ left: 20%;
4554
4490
  }
4555
- .ant-drawer-content-wrapper {
4491
+ .pandora-sdk-collapsible-panel > .panel-header {
4492
+ position: relative;
4493
+ padding: 12px 16px 12px 40px;
4494
+ cursor: pointer;
4495
+ color: rgba(0, 0, 0, 0.85);
4496
+ background-color: #f4f5f7;
4497
+ border: 1px solid #d9d9d9;
4498
+ }
4499
+ .pandora-sdk-collapsible-panel > .panel-header > .icon {
4556
4500
  position: absolute;
4557
- width: 100%;
4558
- height: 100%;
4559
- -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4560
- transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4561
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4562
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4501
+ left: 16px;
4502
+ top: 50%;
4503
+ -webkit-transform: translateY(-50%);
4504
+ transform: translateY(-50%);
4563
4505
  }
4564
- .ant-drawer .ant-drawer-content {
4565
- width: 100%;
4566
- height: 100%;
4506
+ .pandora-sdk-collapsible-panel > .panel-header > .icon > i {
4507
+ color: inherit;
4567
4508
  }
4568
- .ant-drawer-left,
4569
- .ant-drawer-right {
4570
- top: 0;
4571
- width: 0%;
4572
- height: 100%;
4509
+ .pandora-sdk-collapsible-panel > .panel-header > .icon > i > svg {
4510
+ -webkit-transition: -webkit-transform 0.2s linear;
4511
+ transition: -webkit-transform 0.2s linear;
4512
+ transition: transform 0.2s linear;
4513
+ transition: transform 0.2s linear, -webkit-transform 0.2s linear;
4573
4514
  }
4574
- .ant-drawer-left .ant-drawer-content-wrapper,
4575
- .ant-drawer-right .ant-drawer-content-wrapper {
4576
- height: 100%;
4577
- }
4578
- .ant-drawer-left.ant-drawer-open,
4579
- .ant-drawer-right.ant-drawer-open {
4580
- width: 100%;
4581
- -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4582
- transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4583
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4584
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4585
- }
4586
- .ant-drawer-left {
4587
- left: 0;
4588
- }
4589
- .ant-drawer-left .ant-drawer-content-wrapper {
4590
- left: 0;
4591
- }
4592
- .ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
4593
- -webkit-box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
4594
- box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
4595
- }
4596
- .ant-drawer-right {
4597
- right: 0;
4598
- }
4599
- .ant-drawer-right .ant-drawer-content-wrapper {
4600
- right: 0;
4601
- }
4602
- .ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
4603
- -webkit-box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
4604
- box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
4605
- }
4606
- .ant-drawer-right.ant-drawer-open.no-mask {
4607
- right: 1px;
4608
- -webkit-transform: translateX(1px);
4609
- transform: translateX(1px);
4610
- }
4611
- .ant-drawer-top,
4612
- .ant-drawer-bottom {
4613
- left: 0;
4614
- width: 100%;
4615
- height: 0%;
4616
- }
4617
- .ant-drawer-top .ant-drawer-content-wrapper,
4618
- .ant-drawer-bottom .ant-drawer-content-wrapper {
4619
- width: 100%;
4620
- }
4621
- .ant-drawer-top.ant-drawer-open,
4622
- .ant-drawer-bottom.ant-drawer-open {
4623
- height: 100%;
4624
- -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4625
- transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4626
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4627
- transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4628
- }
4629
- .ant-drawer-top {
4630
- top: 0;
4631
- }
4632
- .ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
4633
- -webkit-box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
4634
- box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
4635
- }
4636
- .ant-drawer-bottom {
4637
- bottom: 0;
4638
- }
4639
- .ant-drawer-bottom .ant-drawer-content-wrapper {
4640
- bottom: 0;
4641
- }
4642
- .ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
4643
- -webkit-box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
4644
- box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
4645
- }
4646
- .ant-drawer-bottom.ant-drawer-open.no-mask {
4647
- bottom: 1px;
4648
- -webkit-transform: translateY(1px);
4649
- transform: translateY(1px);
4650
- }
4651
- .ant-drawer.ant-drawer-open .ant-drawer-mask {
4652
- height: 100%;
4653
- opacity: 1;
4654
- -webkit-transition: none;
4655
- transition: none;
4656
- -webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4657
- animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4658
- pointer-events: auto;
4515
+ .pandora-sdk-collapsible-panel > .panel-header.disabled-header {
4516
+ cursor: not-allowed;
4659
4517
  }
4660
- .ant-drawer-title {
4518
+ .pandora-sdk-collapsible-panel > .panel-content-box {
4519
+ overflow-y: hidden;
4520
+ padding: 0;
4661
4521
  margin: 0;
4662
- color: rgba(0, 0, 0, 0.85);
4663
- font-weight: 500;
4664
- font-size: 16px;
4665
- line-height: 22px;
4666
- }
4667
- .ant-drawer-content {
4668
- position: relative;
4669
- z-index: 1;
4670
- overflow: auto;
4671
- background-color: #fff;
4672
- background-clip: padding-box;
4673
- border: 0;
4674
- }
4675
- .ant-drawer-close {
4676
- display: inline-block;
4677
- margin-right: 12px;
4678
- color: rgba(0, 0, 0, 0.45);
4679
- font-weight: 700;
4680
- font-size: 16px;
4681
- font-style: normal;
4682
- line-height: 1;
4683
- text-align: center;
4684
- text-transform: none;
4685
- text-decoration: none;
4686
- background: transparent;
4687
- border: 0;
4688
- outline: 0;
4689
- cursor: pointer;
4690
- -webkit-transition: color 0.3s;
4691
- transition: color 0.3s;
4692
- text-rendering: auto;
4693
- }
4694
- .ant-drawer-close:focus,
4695
- .ant-drawer-close:hover {
4696
- color: rgba(0, 0, 0, 0.75);
4697
- text-decoration: none;
4522
+ border: none;
4698
4523
  }
4699
- .ant-drawer-header {
4700
- position: relative;
4701
- display: -webkit-box;
4702
- display: -ms-flexbox;
4703
- display: flex;
4704
- -webkit-box-align: center;
4705
- -ms-flex-align: center;
4706
- align-items: center;
4707
- -webkit-box-pack: justify;
4708
- -ms-flex-pack: justify;
4709
- justify-content: space-between;
4710
- padding: 16px 24px;
4524
+ .pandora-sdk-collapsible-panel > .panel-content-box > div > .panel-content {
4525
+ padding: 8px 16px;
4711
4526
  color: rgba(0, 0, 0, 0.85);
4712
- background: #fff;
4713
- border-bottom: 1px solid #f0f0f0;
4714
- border-radius: 2px 2px 0 0;
4715
- }
4716
- .ant-drawer-header-title {
4717
- display: -webkit-box;
4718
- display: -ms-flexbox;
4719
- display: flex;
4720
- -webkit-box-align: center;
4721
- -ms-flex-align: center;
4722
- align-items: center;
4723
- -webkit-box-pack: justify;
4724
- -ms-flex-pack: justify;
4725
- justify-content: space-between;
4527
+ background-color: #fff;
4528
+ border: 1px solid #d9d9d9;
4529
+ border-top: none;
4530
+ overflow-x: auto;
4726
4531
  }
4727
- .ant-drawer-header-close-only {
4728
- padding-bottom: 0;
4532
+ .pandora-sdk-collapsible-panel.no-border > .panel-header,
4533
+ .pandora-sdk-collapsible-panel.no-border > .panel-content-box > div > .panel-content {
4729
4534
  border: none;
4730
4535
  }
4731
- .ant-drawer-wrapper-body {
4732
- display: -webkit-box;
4733
- display: -ms-flexbox;
4734
- display: flex;
4735
- -webkit-box-orient: vertical;
4736
- -webkit-box-direction: normal;
4737
- -ms-flex-flow: column nowrap;
4738
- flex-flow: column nowrap;
4739
- width: 100%;
4740
- height: 100%;
4741
- }
4742
- .ant-drawer-body {
4743
- -webkit-box-flex: 1;
4744
- -ms-flex-positive: 1;
4745
- flex-grow: 1;
4746
- padding: 24px;
4747
- overflow: auto;
4748
- font-size: 14px;
4749
- line-height: 1.5715;
4750
- word-wrap: break-word;
4751
- }
4752
- .ant-drawer-footer {
4753
- -ms-flex-negative: 0;
4754
- flex-shrink: 0;
4755
- padding: 10px 16px;
4756
- border-top: 1px solid #f0f0f0;
4757
- }
4758
- .ant-drawer-mask {
4759
- position: absolute;
4760
- top: 0;
4761
- left: 0;
4762
- width: 100%;
4763
- height: 0;
4764
- background-color: rgba(0, 0, 0, 0.45);
4765
- opacity: 0;
4766
- -webkit-transition: opacity 0.3s linear, height 0s ease 0.3s;
4767
- transition: opacity 0.3s linear, height 0s ease 0.3s;
4768
- pointer-events: none;
4769
- }
4770
- .ant-drawer .ant-picker-clear {
4771
- background: #fff;
4772
- }
4773
- @-webkit-keyframes antdDrawerFadeIn {
4774
- 0% {
4775
- opacity: 0;
4776
- }
4777
- 100% {
4778
- opacity: 1;
4779
- }
4780
- }
4781
- @keyframes antdDrawerFadeIn {
4782
- 0% {
4783
- opacity: 0;
4784
- }
4785
- 100% {
4786
- opacity: 1;
4787
- }
4788
- }
4789
- .ant-drawer-rtl {
4790
- direction: rtl;
4791
- }
4792
- .ant-drawer-rtl .ant-drawer-close {
4793
- margin-right: 0;
4794
- margin-left: 12px;
4795
- }
4796
- .pandora-sdk-drawer .ant-drawer-content-wrapper {
4797
- width: 50%;
4798
- min-width: 600px;
4536
+ .pandora-sdk-collapsible-panel.icon-right > .panel-header {
4537
+ padding: 12px 40px 12px 16px;
4799
4538
  }
4800
- .pandora-sdk-drawer .ant-drawer-content > div {
4801
- position: relative;
4539
+ .pandora-sdk-collapsible-panel.icon-right > .panel-header > :local(.icon) {
4540
+ left: unset;
4541
+ right: 16px;
4802
4542
  }
4803
- .pandora-sdk-drawer .ant-drawer-close-x {
4804
- width: 60px;
4805
- height: 60px;
4806
- line-height: 60px;
4543
+ .pandora-sdk-collapsible-panel.hide-arrow > .panel-header {
4544
+ padding-left: 16px;
4545
+ padding-right: 16px;
4807
4546
  }
4808
4547
  .ant-popover {
4809
4548
  -webkit-box-sizing: border-box;
@@ -5084,56 +4823,1101 @@ textarea.ant-input {
5084
4823
  .ant-popover-lime .ant-popover-arrow-content {
5085
4824
  background-color: #a0d911;
5086
4825
  }
5087
- .ant-popover-green .ant-popover-inner {
5088
- background-color: #52c41a;
4826
+ .ant-popover-green .ant-popover-inner {
4827
+ background-color: #52c41a;
4828
+ }
4829
+ .ant-popover-green .ant-popover-arrow-content {
4830
+ background-color: #52c41a;
4831
+ }
4832
+ .ant-popover-blue .ant-popover-inner {
4833
+ background-color: #1890ff;
4834
+ }
4835
+ .ant-popover-blue .ant-popover-arrow-content {
4836
+ background-color: #1890ff;
4837
+ }
4838
+ .ant-popover-geekblue .ant-popover-inner {
4839
+ background-color: #2f54eb;
4840
+ }
4841
+ .ant-popover-geekblue .ant-popover-arrow-content {
4842
+ background-color: #2f54eb;
4843
+ }
4844
+ .ant-popover-purple .ant-popover-inner {
4845
+ background-color: #722ed1;
4846
+ }
4847
+ .ant-popover-purple .ant-popover-arrow-content {
4848
+ background-color: #722ed1;
4849
+ }
4850
+ .ant-popover-rtl {
4851
+ direction: rtl;
4852
+ text-align: right;
4853
+ }
4854
+ .ant-popover-rtl .ant-popover-message-title {
4855
+ padding-right: 22px;
4856
+ padding-left: 16px;
4857
+ }
4858
+ .ant-popover-rtl .ant-popover-buttons {
4859
+ text-align: left;
4860
+ }
4861
+ .ant-popover-rtl .ant-popover-buttons button {
4862
+ margin-right: 8px;
4863
+ margin-left: 0;
4864
+ }
4865
+ .pandora-sdk-datetime-pick-popover-root .ant-popover-inner-content {
4866
+ padding: 0;
4867
+ }
4868
+ .pandora-sdk-datetime-pick-popover-root .ant-btn {
4869
+ line-height: 1.499;
4870
+ }
4871
+ .pandora-sdk-datetime-pick-popover-root .ant-table {
4872
+ line-height: 1.5;
4873
+ }
4874
+ .pandora-sdk-datetime-pick-popover {
4875
+ width: 650px;
4876
+ }
4877
+ .ant-drawer {
4878
+ position: fixed;
4879
+ z-index: 1000;
4880
+ width: 0%;
4881
+ height: 100%;
4882
+ -webkit-transition: width 0s ease 0.3s, height 0s ease 0.3s;
4883
+ transition: width 0s ease 0.3s, height 0s ease 0.3s;
4884
+ }
4885
+ .ant-drawer-content-wrapper {
4886
+ position: absolute;
4887
+ width: 100%;
4888
+ height: 100%;
4889
+ -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4890
+ transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4891
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4892
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4893
+ }
4894
+ .ant-drawer .ant-drawer-content {
4895
+ width: 100%;
4896
+ height: 100%;
4897
+ }
4898
+ .ant-drawer-left,
4899
+ .ant-drawer-right {
4900
+ top: 0;
4901
+ width: 0%;
4902
+ height: 100%;
4903
+ }
4904
+ .ant-drawer-left .ant-drawer-content-wrapper,
4905
+ .ant-drawer-right .ant-drawer-content-wrapper {
4906
+ height: 100%;
4907
+ }
4908
+ .ant-drawer-left.ant-drawer-open,
4909
+ .ant-drawer-right.ant-drawer-open {
4910
+ width: 100%;
4911
+ -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4912
+ transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4913
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4914
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4915
+ }
4916
+ .ant-drawer-left {
4917
+ left: 0;
4918
+ }
4919
+ .ant-drawer-left .ant-drawer-content-wrapper {
4920
+ left: 0;
4921
+ }
4922
+ .ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
4923
+ -webkit-box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
4924
+ box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
4925
+ }
4926
+ .ant-drawer-right {
4927
+ right: 0;
4928
+ }
4929
+ .ant-drawer-right .ant-drawer-content-wrapper {
4930
+ right: 0;
4931
+ }
4932
+ .ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
4933
+ -webkit-box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
4934
+ box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
4935
+ }
4936
+ .ant-drawer-right.ant-drawer-open.no-mask {
4937
+ right: 1px;
4938
+ -webkit-transform: translateX(1px);
4939
+ transform: translateX(1px);
4940
+ }
4941
+ .ant-drawer-top,
4942
+ .ant-drawer-bottom {
4943
+ left: 0;
4944
+ width: 100%;
4945
+ height: 0%;
4946
+ }
4947
+ .ant-drawer-top .ant-drawer-content-wrapper,
4948
+ .ant-drawer-bottom .ant-drawer-content-wrapper {
4949
+ width: 100%;
4950
+ }
4951
+ .ant-drawer-top.ant-drawer-open,
4952
+ .ant-drawer-bottom.ant-drawer-open {
4953
+ height: 100%;
4954
+ -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4955
+ transition: -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4956
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4957
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4958
+ }
4959
+ .ant-drawer-top {
4960
+ top: 0;
4961
+ }
4962
+ .ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
4963
+ -webkit-box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
4964
+ box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
4965
+ }
4966
+ .ant-drawer-bottom {
4967
+ bottom: 0;
4968
+ }
4969
+ .ant-drawer-bottom .ant-drawer-content-wrapper {
4970
+ bottom: 0;
4971
+ }
4972
+ .ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
4973
+ -webkit-box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
4974
+ box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
4975
+ }
4976
+ .ant-drawer-bottom.ant-drawer-open.no-mask {
4977
+ bottom: 1px;
4978
+ -webkit-transform: translateY(1px);
4979
+ transform: translateY(1px);
4980
+ }
4981
+ .ant-drawer.ant-drawer-open .ant-drawer-mask {
4982
+ height: 100%;
4983
+ opacity: 1;
4984
+ -webkit-transition: none;
4985
+ transition: none;
4986
+ -webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4987
+ animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
4988
+ pointer-events: auto;
4989
+ }
4990
+ .ant-drawer-title {
4991
+ margin: 0;
4992
+ color: rgba(0, 0, 0, 0.85);
4993
+ font-weight: 500;
4994
+ font-size: 16px;
4995
+ line-height: 22px;
4996
+ }
4997
+ .ant-drawer-content {
4998
+ position: relative;
4999
+ z-index: 1;
5000
+ overflow: auto;
5001
+ background-color: #fff;
5002
+ background-clip: padding-box;
5003
+ border: 0;
5004
+ }
5005
+ .ant-drawer-close {
5006
+ display: inline-block;
5007
+ margin-right: 12px;
5008
+ color: rgba(0, 0, 0, 0.45);
5009
+ font-weight: 700;
5010
+ font-size: 16px;
5011
+ font-style: normal;
5012
+ line-height: 1;
5013
+ text-align: center;
5014
+ text-transform: none;
5015
+ text-decoration: none;
5016
+ background: transparent;
5017
+ border: 0;
5018
+ outline: 0;
5019
+ cursor: pointer;
5020
+ -webkit-transition: color 0.3s;
5021
+ transition: color 0.3s;
5022
+ text-rendering: auto;
5023
+ }
5024
+ .ant-drawer-close:focus,
5025
+ .ant-drawer-close:hover {
5026
+ color: rgba(0, 0, 0, 0.75);
5027
+ text-decoration: none;
5028
+ }
5029
+ .ant-drawer-header {
5030
+ position: relative;
5031
+ display: -webkit-box;
5032
+ display: -ms-flexbox;
5033
+ display: flex;
5034
+ -webkit-box-align: center;
5035
+ -ms-flex-align: center;
5036
+ align-items: center;
5037
+ -webkit-box-pack: justify;
5038
+ -ms-flex-pack: justify;
5039
+ justify-content: space-between;
5040
+ padding: 16px 24px;
5041
+ color: rgba(0, 0, 0, 0.85);
5042
+ background: #fff;
5043
+ border-bottom: 1px solid #f0f0f0;
5044
+ border-radius: 2px 2px 0 0;
5045
+ }
5046
+ .ant-drawer-header-title {
5047
+ display: -webkit-box;
5048
+ display: -ms-flexbox;
5049
+ display: flex;
5050
+ -webkit-box-align: center;
5051
+ -ms-flex-align: center;
5052
+ align-items: center;
5053
+ -webkit-box-pack: justify;
5054
+ -ms-flex-pack: justify;
5055
+ justify-content: space-between;
5056
+ }
5057
+ .ant-drawer-header-close-only {
5058
+ padding-bottom: 0;
5059
+ border: none;
5060
+ }
5061
+ .ant-drawer-wrapper-body {
5062
+ display: -webkit-box;
5063
+ display: -ms-flexbox;
5064
+ display: flex;
5065
+ -webkit-box-orient: vertical;
5066
+ -webkit-box-direction: normal;
5067
+ -ms-flex-flow: column nowrap;
5068
+ flex-flow: column nowrap;
5069
+ width: 100%;
5070
+ height: 100%;
5071
+ }
5072
+ .ant-drawer-body {
5073
+ -webkit-box-flex: 1;
5074
+ -ms-flex-positive: 1;
5075
+ flex-grow: 1;
5076
+ padding: 24px;
5077
+ overflow: auto;
5078
+ font-size: 14px;
5079
+ line-height: 1.5715;
5080
+ word-wrap: break-word;
5081
+ }
5082
+ .ant-drawer-footer {
5083
+ -ms-flex-negative: 0;
5084
+ flex-shrink: 0;
5085
+ padding: 10px 16px;
5086
+ border-top: 1px solid #f0f0f0;
5087
+ }
5088
+ .ant-drawer-mask {
5089
+ position: absolute;
5090
+ top: 0;
5091
+ left: 0;
5092
+ width: 100%;
5093
+ height: 0;
5094
+ background-color: rgba(0, 0, 0, 0.45);
5095
+ opacity: 0;
5096
+ -webkit-transition: opacity 0.3s linear, height 0s ease 0.3s;
5097
+ transition: opacity 0.3s linear, height 0s ease 0.3s;
5098
+ pointer-events: none;
5099
+ }
5100
+ .ant-drawer .ant-picker-clear {
5101
+ background: #fff;
5102
+ }
5103
+ @-webkit-keyframes antdDrawerFadeIn {
5104
+ 0% {
5105
+ opacity: 0;
5106
+ }
5107
+ 100% {
5108
+ opacity: 1;
5109
+ }
5110
+ }
5111
+ @keyframes antdDrawerFadeIn {
5112
+ 0% {
5113
+ opacity: 0;
5114
+ }
5115
+ 100% {
5116
+ opacity: 1;
5117
+ }
5118
+ }
5119
+ .ant-drawer-rtl {
5120
+ direction: rtl;
5121
+ }
5122
+ .ant-drawer-rtl .ant-drawer-close {
5123
+ margin-right: 0;
5124
+ margin-left: 12px;
5125
+ }
5126
+ .pandora-sdk-drawer .ant-drawer-content-wrapper {
5127
+ width: 50%;
5128
+ min-width: 300px;
5129
+ }
5130
+ .pandora-sdk-drawer .ant-drawer-content > div {
5131
+ position: relative;
5132
+ }
5133
+ .pandora-sdk-drawer .ant-drawer-close-x {
5134
+ width: 60px;
5135
+ height: 60px;
5136
+ line-height: 60px;
5137
+ }
5138
+ .pandora-sdk-drawer-no-mask .ant-drawer-content-wrapper {
5139
+ width: 100%;
5140
+ }
5141
+ .pandora-sdk-scroll-handler {
5142
+ position: absolute;
5143
+ width: 5px;
5144
+ padding: 4px 0 0;
5145
+ top: 0;
5146
+ left: 0;
5147
+ bottom: 0;
5148
+ z-index: 100;
5149
+ cursor: ew-resize;
5150
+ }
5151
+ .pandora-sdk-drawer-right-close-icon {
5152
+ margin-left: 8px;
5153
+ font-size: 16px;
5154
+ }
5155
+ .ant-upload {
5156
+ -webkit-box-sizing: border-box;
5157
+ box-sizing: border-box;
5158
+ margin: 0;
5159
+ padding: 0;
5160
+ color: rgba(0, 0, 0, 0.85);
5161
+ font-size: 14px;
5162
+ font-variant: tabular-nums;
5163
+ line-height: 1.5715;
5164
+ list-style: none;
5165
+ -webkit-font-feature-settings: 'tnum';
5166
+ font-feature-settings: 'tnum';
5167
+ outline: 0;
5168
+ }
5169
+ .ant-upload p {
5170
+ margin: 0;
5171
+ }
5172
+ .ant-upload-btn {
5173
+ display: block;
5174
+ width: 100%;
5175
+ outline: none;
5176
+ }
5177
+ .ant-upload input[type='file'] {
5178
+ cursor: pointer;
5179
+ }
5180
+ .ant-upload.ant-upload-select {
5181
+ display: inline-block;
5182
+ }
5183
+ .ant-upload.ant-upload-disabled {
5184
+ cursor: not-allowed;
5185
+ }
5186
+ .ant-upload.ant-upload-select-picture-card {
5187
+ width: 104px;
5188
+ height: 104px;
5189
+ margin-right: 8px;
5190
+ margin-bottom: 8px;
5191
+ text-align: center;
5192
+ vertical-align: top;
5193
+ background-color: #fafafa;
5194
+ border: 1px dashed #d9d9d9;
5195
+ border-radius: 2px;
5196
+ cursor: pointer;
5197
+ -webkit-transition: border-color 0.3s;
5198
+ transition: border-color 0.3s;
5199
+ }
5200
+ .ant-upload.ant-upload-select-picture-card > .ant-upload {
5201
+ display: -webkit-box;
5202
+ display: -ms-flexbox;
5203
+ display: flex;
5204
+ -webkit-box-align: center;
5205
+ -ms-flex-align: center;
5206
+ align-items: center;
5207
+ -webkit-box-pack: center;
5208
+ -ms-flex-pack: center;
5209
+ justify-content: center;
5210
+ height: 100%;
5211
+ text-align: center;
5212
+ }
5213
+ .ant-upload.ant-upload-select-picture-card:hover {
5214
+ border-color: #1890ff;
5215
+ }
5216
+ .ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover {
5217
+ border-color: #d9d9d9;
5218
+ }
5219
+ .ant-upload.ant-upload-drag {
5220
+ position: relative;
5221
+ width: 100%;
5222
+ height: 100%;
5223
+ text-align: center;
5224
+ background: #fafafa;
5225
+ border: 1px dashed #d9d9d9;
5226
+ border-radius: 2px;
5227
+ cursor: pointer;
5228
+ -webkit-transition: border-color 0.3s;
5229
+ transition: border-color 0.3s;
5230
+ }
5231
+ .ant-upload.ant-upload-drag .ant-upload {
5232
+ padding: 16px 0;
5233
+ }
5234
+ .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
5235
+ border-color: #096dd9;
5236
+ }
5237
+ .ant-upload.ant-upload-drag.ant-upload-disabled {
5238
+ cursor: not-allowed;
5239
+ }
5240
+ .ant-upload.ant-upload-drag .ant-upload-btn {
5241
+ display: table;
5242
+ height: 100%;
5243
+ }
5244
+ .ant-upload.ant-upload-drag .ant-upload-drag-container {
5245
+ display: table-cell;
5246
+ vertical-align: middle;
5247
+ }
5248
+ .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
5249
+ border-color: #40a9ff;
5250
+ }
5251
+ .ant-upload.ant-upload-drag p.ant-upload-drag-icon {
5252
+ margin-bottom: 20px;
5253
+ }
5254
+ .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
5255
+ color: #40a9ff;
5256
+ font-size: 48px;
5257
+ }
5258
+ .ant-upload.ant-upload-drag p.ant-upload-text {
5259
+ margin: 0 0 4px;
5260
+ color: rgba(0, 0, 0, 0.85);
5261
+ font-size: 16px;
5262
+ }
5263
+ .ant-upload.ant-upload-drag p.ant-upload-hint {
5264
+ color: rgba(0, 0, 0, 0.45);
5265
+ font-size: 14px;
5266
+ }
5267
+ .ant-upload.ant-upload-drag .anticon-plus {
5268
+ color: rgba(0, 0, 0, 0.25);
5269
+ font-size: 30px;
5270
+ -webkit-transition: all 0.3s;
5271
+ transition: all 0.3s;
5272
+ }
5273
+ .ant-upload.ant-upload-drag .anticon-plus:hover {
5274
+ color: rgba(0, 0, 0, 0.45);
5275
+ }
5276
+ .ant-upload.ant-upload-drag:hover .anticon-plus {
5277
+ color: rgba(0, 0, 0, 0.45);
5278
+ }
5279
+ .ant-upload-picture-card-wrapper {
5280
+ display: inline-block;
5281
+ width: 100%;
5282
+ }
5283
+ .ant-upload-picture-card-wrapper::before {
5284
+ display: table;
5285
+ content: '';
5286
+ }
5287
+ .ant-upload-picture-card-wrapper::after {
5288
+ display: table;
5289
+ clear: both;
5290
+ content: '';
5291
+ }
5292
+ .ant-upload-list {
5293
+ -webkit-box-sizing: border-box;
5294
+ box-sizing: border-box;
5295
+ margin: 0;
5296
+ padding: 0;
5297
+ color: rgba(0, 0, 0, 0.85);
5298
+ font-size: 14px;
5299
+ font-variant: tabular-nums;
5300
+ list-style: none;
5301
+ -webkit-font-feature-settings: 'tnum';
5302
+ font-feature-settings: 'tnum';
5303
+ line-height: 1.5715;
5304
+ }
5305
+ .ant-upload-list::before {
5306
+ display: table;
5307
+ content: '';
5308
+ }
5309
+ .ant-upload-list::after {
5310
+ display: table;
5311
+ clear: both;
5312
+ content: '';
5313
+ }
5314
+ .ant-upload-list-item {
5315
+ position: relative;
5316
+ height: 22.001px;
5317
+ margin-top: 8px;
5318
+ font-size: 14px;
5319
+ }
5320
+ .ant-upload-list-item-name {
5321
+ display: inline-block;
5322
+ width: 100%;
5323
+ padding-left: 22px;
5324
+ overflow: hidden;
5325
+ line-height: 1.5715;
5326
+ white-space: nowrap;
5327
+ text-overflow: ellipsis;
5328
+ }
5329
+ .ant-upload-list-item-card-actions {
5330
+ position: absolute;
5331
+ right: 0;
5332
+ }
5333
+ .ant-upload-list-item-card-actions-btn {
5334
+ opacity: 0;
5335
+ }
5336
+ .ant-upload-list-item-card-actions-btn.ant-btn-sm {
5337
+ height: 20px;
5338
+ line-height: 1;
5339
+ }
5340
+ .ant-upload-list-item-card-actions.picture {
5341
+ top: 22px;
5342
+ line-height: 0;
5343
+ }
5344
+ .ant-upload-list-item-card-actions-btn:focus,
5345
+ .ant-upload-list-item-card-actions.picture .ant-upload-list-item-card-actions-btn {
5346
+ opacity: 1;
5347
+ }
5348
+ .ant-upload-list-item-card-actions .anticon {
5349
+ color: rgba(0, 0, 0, 0.45);
5350
+ }
5351
+ .ant-upload-list-item-info {
5352
+ height: 100%;
5353
+ padding: 0 4px;
5354
+ -webkit-transition: background-color 0.3s;
5355
+ transition: background-color 0.3s;
5356
+ }
5357
+ .ant-upload-list-item-info > span {
5358
+ display: block;
5359
+ width: 100%;
5360
+ height: 100%;
5361
+ }
5362
+ .ant-upload-list-item-info .anticon-loading .anticon,
5363
+ .ant-upload-list-item-info .ant-upload-text-icon .anticon {
5364
+ position: absolute;
5365
+ top: 5px;
5366
+ color: rgba(0, 0, 0, 0.45);
5367
+ font-size: 14px;
5368
+ }
5369
+ .ant-upload-list-item .anticon-close {
5370
+ position: absolute;
5371
+ top: 6px;
5372
+ right: 4px;
5373
+ color: rgba(0, 0, 0, 0.45);
5374
+ font-size: 10px;
5375
+ line-height: 0;
5376
+ cursor: pointer;
5377
+ opacity: 0;
5378
+ -webkit-transition: all 0.3s;
5379
+ transition: all 0.3s;
5380
+ }
5381
+ .ant-upload-list-item .anticon-close:hover {
5382
+ color: rgba(0, 0, 0, 0.85);
5383
+ }
5384
+ .ant-upload-list-item:hover .ant-upload-list-item-info {
5385
+ background-color: #f5f5f5;
5386
+ }
5387
+ .ant-upload-list-item:hover .anticon-close {
5388
+ opacity: 1;
5389
+ }
5390
+ .ant-upload-list-item:hover .ant-upload-list-item-card-actions-btn {
5391
+ opacity: 1;
5392
+ }
5393
+ .ant-upload-list-item-error,
5394
+ .ant-upload-list-item-error .ant-upload-text-icon > .anticon,
5395
+ .ant-upload-list-item-error .ant-upload-list-item-name {
5396
+ color: #ff4d4f;
5397
+ }
5398
+ .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
5399
+ color: #ff4d4f;
5400
+ }
5401
+ .ant-upload-list-item-error .ant-upload-list-item-card-actions-btn {
5402
+ opacity: 1;
5403
+ }
5404
+ .ant-upload-list-item-progress {
5405
+ position: absolute;
5406
+ bottom: -12px;
5407
+ width: 100%;
5408
+ padding-left: 26px;
5409
+ font-size: 14px;
5410
+ line-height: 0;
5411
+ }
5412
+ .ant-upload-list-picture .ant-upload-list-item,
5413
+ .ant-upload-list-picture-card .ant-upload-list-item {
5414
+ position: relative;
5415
+ height: 66px;
5416
+ padding: 8px;
5417
+ border: 1px solid #d9d9d9;
5418
+ border-radius: 2px;
5419
+ }
5420
+ .ant-upload-list-picture .ant-upload-list-item:hover,
5421
+ .ant-upload-list-picture-card .ant-upload-list-item:hover {
5422
+ background: transparent;
5423
+ }
5424
+ .ant-upload-list-picture .ant-upload-list-item-error,
5425
+ .ant-upload-list-picture-card .ant-upload-list-item-error {
5426
+ border-color: #ff4d4f;
5427
+ }
5428
+ .ant-upload-list-picture .ant-upload-list-item-info,
5429
+ .ant-upload-list-picture-card .ant-upload-list-item-info {
5430
+ padding: 0;
5431
+ }
5432
+ .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
5433
+ .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
5434
+ background: transparent;
5435
+ }
5436
+ .ant-upload-list-picture .ant-upload-list-item-uploading,
5437
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading {
5438
+ border-style: dashed;
5439
+ }
5440
+ .ant-upload-list-picture .ant-upload-list-item-thumbnail,
5441
+ .ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
5442
+ width: 48px;
5443
+ height: 48px;
5444
+ line-height: 60px;
5445
+ text-align: center;
5446
+ opacity: 0.8;
5447
+ }
5448
+ .ant-upload-list-picture .ant-upload-list-item-thumbnail .anticon,
5449
+ .ant-upload-list-picture-card .ant-upload-list-item-thumbnail .anticon {
5450
+ font-size: 26px;
5451
+ }
5452
+ .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'],
5453
+ .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'] {
5454
+ fill: #fff2f0;
5455
+ }
5456
+ .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'],
5457
+ .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'] {
5458
+ fill: #ff4d4f;
5459
+ }
5460
+ .ant-upload-list-picture .ant-upload-list-item-icon,
5461
+ .ant-upload-list-picture-card .ant-upload-list-item-icon {
5462
+ position: absolute;
5463
+ top: 50%;
5464
+ left: 50%;
5465
+ font-size: 26px;
5466
+ -webkit-transform: translate(-50%, -50%);
5467
+ transform: translate(-50%, -50%);
5468
+ }
5469
+ .ant-upload-list-picture .ant-upload-list-item-icon .anticon,
5470
+ .ant-upload-list-picture-card .ant-upload-list-item-icon .anticon {
5471
+ font-size: 26px;
5472
+ }
5473
+ .ant-upload-list-picture .ant-upload-list-item-image,
5474
+ .ant-upload-list-picture-card .ant-upload-list-item-image {
5475
+ max-width: 100%;
5476
+ }
5477
+ .ant-upload-list-picture .ant-upload-list-item-thumbnail img,
5478
+ .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
5479
+ display: block;
5480
+ width: 48px;
5481
+ height: 48px;
5482
+ overflow: hidden;
5483
+ }
5484
+ .ant-upload-list-picture .ant-upload-list-item-name,
5485
+ .ant-upload-list-picture-card .ant-upload-list-item-name {
5486
+ display: inline-block;
5487
+ -webkit-box-sizing: border-box;
5488
+ box-sizing: border-box;
5489
+ max-width: 100%;
5490
+ margin: 0 0 0 8px;
5491
+ padding-right: 8px;
5492
+ padding-left: 48px;
5493
+ overflow: hidden;
5494
+ line-height: 44px;
5495
+ white-space: nowrap;
5496
+ text-overflow: ellipsis;
5497
+ -webkit-transition: all 0.3s;
5498
+ transition: all 0.3s;
5499
+ }
5500
+ .ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
5501
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
5502
+ margin-bottom: 12px;
5503
+ }
5504
+ .ant-upload-list-picture .ant-upload-list-item-progress,
5505
+ .ant-upload-list-picture-card .ant-upload-list-item-progress {
5506
+ bottom: 14px;
5507
+ width: calc(100% - 24px);
5508
+ margin-top: 0;
5509
+ padding-left: 56px;
5510
+ }
5511
+ .ant-upload-list-picture .anticon-close,
5512
+ .ant-upload-list-picture-card .anticon-close {
5513
+ position: absolute;
5514
+ top: 8px;
5515
+ right: 8px;
5516
+ line-height: 1;
5517
+ opacity: 1;
5518
+ }
5519
+ .ant-upload-list-picture-card-container {
5520
+ display: inline-block;
5521
+ width: 104px;
5522
+ height: 104px;
5523
+ margin: 0 8px 8px 0;
5524
+ vertical-align: top;
5525
+ }
5526
+ .ant-upload-list-picture-card.ant-upload-list::after {
5527
+ display: none;
5528
+ }
5529
+ .ant-upload-list-picture-card .ant-upload-list-item {
5530
+ height: 100%;
5531
+ margin: 0;
5532
+ }
5533
+ .ant-upload-list-picture-card .ant-upload-list-item-info {
5534
+ position: relative;
5535
+ height: 100%;
5536
+ overflow: hidden;
5537
+ }
5538
+ .ant-upload-list-picture-card .ant-upload-list-item-info::before {
5539
+ position: absolute;
5540
+ z-index: 1;
5541
+ width: 100%;
5542
+ height: 100%;
5543
+ background-color: rgba(0, 0, 0, 0.5);
5544
+ opacity: 0;
5545
+ -webkit-transition: all 0.3s;
5546
+ transition: all 0.3s;
5547
+ content: ' ';
5548
+ }
5549
+ .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before {
5550
+ opacity: 1;
5551
+ }
5552
+ .ant-upload-list-picture-card .ant-upload-list-item-actions {
5553
+ position: absolute;
5554
+ top: 50%;
5555
+ left: 50%;
5556
+ z-index: 10;
5557
+ white-space: nowrap;
5558
+ -webkit-transform: translate(-50%, -50%);
5559
+ transform: translate(-50%, -50%);
5560
+ opacity: 0;
5561
+ -webkit-transition: all 0.3s;
5562
+ transition: all 0.3s;
5563
+ }
5564
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye,
5565
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,
5566
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
5567
+ z-index: 10;
5568
+ width: 16px;
5569
+ margin: 0 4px;
5570
+ color: rgba(255, 255, 255, 0.85);
5571
+ font-size: 16px;
5572
+ cursor: pointer;
5573
+ -webkit-transition: all 0.3s;
5574
+ transition: all 0.3s;
5575
+ }
5576
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover,
5577
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,
5578
+ .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
5579
+ color: #fff;
5580
+ }
5581
+ .ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions,
5582
+ .ant-upload-list-picture-card .ant-upload-list-item-actions:hover {
5583
+ opacity: 1;
5584
+ }
5585
+ .ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
5586
+ .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
5587
+ position: static;
5588
+ display: block;
5589
+ width: 100%;
5590
+ height: 100%;
5591
+ -o-object-fit: contain;
5592
+ object-fit: contain;
5593
+ }
5594
+ .ant-upload-list-picture-card .ant-upload-list-item-name {
5595
+ display: none;
5596
+ margin: 8px 0 0;
5597
+ padding: 0;
5598
+ line-height: 1.5715;
5599
+ text-align: center;
5600
+ }
5601
+ .ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
5602
+ position: absolute;
5603
+ bottom: 10px;
5604
+ display: block;
5605
+ }
5606
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
5607
+ background-color: #fafafa;
5608
+ }
5609
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
5610
+ height: auto;
5611
+ }
5612
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before,
5613
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye,
5614
+ .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
5615
+ display: none;
5616
+ }
5617
+ .ant-upload-list-picture-card .ant-upload-list-item-progress {
5618
+ bottom: 32px;
5619
+ width: calc(100% - 14px);
5620
+ padding-left: 0;
5621
+ }
5622
+ .ant-upload-list-text-container,
5623
+ .ant-upload-list-picture-container {
5624
+ -webkit-transition: opacity 0.3s, height 0.3s;
5625
+ transition: opacity 0.3s, height 0.3s;
5626
+ }
5627
+ .ant-upload-list-text-container::before,
5628
+ .ant-upload-list-picture-container::before {
5629
+ display: table;
5630
+ width: 0;
5631
+ height: 0;
5632
+ content: '';
5633
+ }
5634
+ .ant-upload-list-text-container .ant-upload-span,
5635
+ .ant-upload-list-picture-container .ant-upload-span {
5636
+ display: block;
5637
+ -webkit-box-flex: 1;
5638
+ -ms-flex: auto;
5639
+ flex: auto;
5640
+ }
5641
+ .ant-upload-list-text .ant-upload-span,
5642
+ .ant-upload-list-picture .ant-upload-span {
5643
+ display: -webkit-box;
5644
+ display: -ms-flexbox;
5645
+ display: flex;
5646
+ -webkit-box-align: center;
5647
+ -ms-flex-align: center;
5648
+ align-items: center;
5649
+ }
5650
+ .ant-upload-list-text .ant-upload-span > *,
5651
+ .ant-upload-list-picture .ant-upload-span > * {
5652
+ -webkit-box-flex: 0;
5653
+ -ms-flex: none;
5654
+ flex: none;
5655
+ }
5656
+ .ant-upload-list-text .ant-upload-list-item-name,
5657
+ .ant-upload-list-picture .ant-upload-list-item-name {
5658
+ -webkit-box-flex: 1;
5659
+ -ms-flex: auto;
5660
+ flex: auto;
5661
+ margin: 0;
5662
+ padding: 0 8px;
5663
+ }
5664
+ .ant-upload-list-text .ant-upload-list-item-card-actions,
5665
+ .ant-upload-list-picture .ant-upload-list-item-card-actions {
5666
+ position: static;
5667
+ }
5668
+ .ant-upload-list-text .ant-upload-text-icon .anticon {
5669
+ position: static;
5670
+ }
5671
+ .ant-upload-list .ant-upload-animate-inline-appear,
5672
+ .ant-upload-list .ant-upload-animate-inline-enter,
5673
+ .ant-upload-list .ant-upload-animate-inline-leave {
5674
+ -webkit-animation-duration: 0.3s;
5675
+ animation-duration: 0.3s;
5676
+ -webkit-animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
5677
+ animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
5678
+ }
5679
+ .ant-upload-list .ant-upload-animate-inline-appear,
5680
+ .ant-upload-list .ant-upload-animate-inline-enter {
5681
+ -webkit-animation-name: uploadAnimateInlineIn;
5682
+ animation-name: uploadAnimateInlineIn;
5683
+ }
5684
+ .ant-upload-list .ant-upload-animate-inline-leave {
5685
+ -webkit-animation-name: uploadAnimateInlineOut;
5686
+ animation-name: uploadAnimateInlineOut;
5687
+ }
5688
+ @-webkit-keyframes uploadAnimateInlineIn {
5689
+ from {
5690
+ width: 0;
5691
+ height: 0;
5692
+ margin: 0;
5693
+ padding: 0;
5694
+ opacity: 0;
5695
+ }
5696
+ }
5697
+ @keyframes uploadAnimateInlineIn {
5698
+ from {
5699
+ width: 0;
5700
+ height: 0;
5701
+ margin: 0;
5702
+ padding: 0;
5703
+ opacity: 0;
5704
+ }
5705
+ }
5706
+ @-webkit-keyframes uploadAnimateInlineOut {
5707
+ to {
5708
+ width: 0;
5709
+ height: 0;
5710
+ margin: 0;
5711
+ padding: 0;
5712
+ opacity: 0;
5713
+ }
5714
+ }
5715
+ @keyframes uploadAnimateInlineOut {
5716
+ to {
5717
+ width: 0;
5718
+ height: 0;
5719
+ margin: 0;
5720
+ padding: 0;
5721
+ opacity: 0;
5722
+ }
5723
+ }
5724
+ .ant-upload-rtl {
5725
+ direction: rtl;
5726
+ }
5727
+ .ant-upload-rtl.ant-upload.ant-upload-select-picture-card {
5728
+ margin-right: auto;
5729
+ margin-left: 8px;
5730
+ }
5731
+ .ant-upload-list-rtl {
5732
+ direction: rtl;
5733
+ }
5734
+ .ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
5735
+ padding-right: 22px;
5736
+ padding-left: 14px;
5737
+ }
5738
+ .ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
5739
+ padding-right: 22px;
5740
+ padding-left: 28px;
5741
+ }
5742
+ .ant-upload-list-rtl .ant-upload-list-item-name {
5743
+ padding-right: 22px;
5744
+ padding-left: 0;
5745
+ }
5746
+ .ant-upload-list-rtl .ant-upload-list-item-name-icon-count-1 {
5747
+ padding-left: 14px;
5748
+ }
5749
+ .ant-upload-list-rtl .ant-upload-list-item-card-actions {
5750
+ right: auto;
5751
+ left: 0;
5752
+ }
5753
+ .ant-upload-list-rtl .ant-upload-list-item-card-actions .anticon {
5754
+ padding-right: 0;
5755
+ padding-left: 5px;
5756
+ }
5757
+ .ant-upload-list-rtl .ant-upload-list-item-info {
5758
+ padding: 0 4px 0 12px;
5759
+ }
5760
+ .ant-upload-list-rtl .ant-upload-list-item .anticon-close {
5761
+ right: auto;
5762
+ left: 4px;
5763
+ }
5764
+ .ant-upload-list-rtl .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
5765
+ padding-right: 0;
5766
+ padding-left: 5px;
5767
+ }
5768
+ .ant-upload-list-rtl .ant-upload-list-item-progress {
5769
+ padding-right: 26px;
5770
+ padding-left: 0;
5771
+ }
5772
+ .ant-upload-list-picture .ant-upload-list-item-info,
5773
+ .ant-upload-list-picture-card .ant-upload-list-item-info {
5774
+ padding: 0;
5775
+ }
5776
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-thumbnail,
5777
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
5778
+ right: 8px;
5779
+ left: auto;
5780
+ }
5781
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-icon,
5782
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-icon {
5783
+ right: 50%;
5784
+ left: auto;
5785
+ -webkit-transform: translate(50%, -50%);
5786
+ transform: translate(50%, -50%);
5787
+ }
5788
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name,
5789
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name {
5790
+ margin: 0 8px 0 0;
5791
+ padding-right: 48px;
5792
+ padding-left: 8px;
5793
+ }
5794
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,
5795
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
5796
+ padding-right: 48px;
5797
+ padding-left: 18px;
5798
+ }
5799
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,
5800
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
5801
+ padding-right: 48px;
5802
+ padding-left: 36px;
5803
+ }
5804
+ .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-progress,
5805
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-progress {
5806
+ padding-right: 0;
5807
+ padding-left: 0;
5808
+ }
5809
+ .ant-upload-list-rtl.ant-upload-list-picture .anticon-close,
5810
+ .ant-upload-list-rtl.ant-upload-list-picture-card .anticon-close {
5811
+ right: auto;
5812
+ left: 8px;
5813
+ }
5814
+ .ant-upload-list-rtl .ant-upload-list-picture-card-container {
5815
+ margin: 0 0 8px 8px;
5816
+ }
5817
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-actions {
5818
+ right: 50%;
5819
+ left: auto;
5820
+ -webkit-transform: translate(50%, -50%);
5821
+ transform: translate(50%, -50%);
5822
+ }
5823
+ .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
5824
+ margin: 8px 0 0;
5825
+ padding: 0;
5826
+ }
5827
+ .pandora-sdk-file-resumable {
5828
+ cursor: pointer;
5829
+ }
5830
+ .pandora-sdk-file-resumable-run-container {
5831
+ text-align: right;
5089
5832
  }
5090
- .ant-popover-green .ant-popover-arrow-content {
5091
- background-color: #52c41a;
5833
+ .pandora-sdk-file-resumable-run-container .pandora-sdk-file-resumable-run-container-icon {
5834
+ color: #2c6dd2;
5835
+ cursor: pointer;
5836
+ font-size: 14px;
5837
+ margin: 0 6px;
5092
5838
  }
5093
- .ant-popover-blue .ant-popover-inner {
5094
- background-color: #1890ff;
5839
+ .pandora-sdk-file-resumable-run-container .pandora-sdk-file-resumable-run-container-icon-disabled {
5840
+ color: #d9d9d9;
5095
5841
  }
5096
- .ant-popover-blue .ant-popover-arrow-content {
5097
- background-color: #1890ff;
5842
+ .pandora-sdk-file-resumable-run-container .pandora-sdk-file-resumable-run-container-icon-disabled:hover {
5843
+ cursor: not-allowed;
5098
5844
  }
5099
- .ant-popover-geekblue .ant-popover-inner {
5100
- background-color: #2f54eb;
5845
+ .pandora-sdk-file-resumable-upload-icon {
5846
+ font-size: 50px;
5847
+ color: inherit;
5101
5848
  }
5102
- .ant-popover-geekblue .ant-popover-arrow-content {
5103
- background-color: #2f54eb;
5849
+ .downloadIcon {
5850
+ color: #2c6dd2;
5851
+ cursor: pointer;
5852
+ font-size: 20px;
5104
5853
  }
5105
- .ant-popover-purple .ant-popover-inner {
5106
- background-color: #722ed1;
5854
+ .pandora-sdk-file-resumable:hover {
5855
+ border-color: #2c6dd2;
5107
5856
  }
5108
- .ant-popover-purple .ant-popover-arrow-content {
5109
- background-color: #722ed1;
5857
+ .pandora-sdk-file-resumable-img-container {
5858
+ background: #d9d9d9;
5859
+ border: 1px dashed #d9d9d9;
5860
+ width: 50px;
5861
+ height: 50px;
5862
+ padding: 4px;
5863
+ border-radius: 2px;
5864
+ -webkit-box-align: center;
5865
+ -ms-flex-align: center;
5866
+ align-items: center;
5867
+ cursor: pointer;
5868
+ position: relative;
5869
+ font-size: 16px;
5870
+ display: -webkit-box;
5871
+ display: -ms-flexbox;
5872
+ display: flex;
5873
+ -webkit-box-pack: center;
5874
+ -ms-flex-pack: center;
5875
+ justify-content: center;
5110
5876
  }
5111
- .ant-popover-rtl {
5112
- direction: rtl;
5113
- text-align: right;
5877
+ .pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-operator {
5878
+ display: -webkit-box;
5879
+ display: -ms-flexbox;
5880
+ display: flex;
5881
+ -webkit-box-pack: center;
5882
+ -ms-flex-pack: center;
5883
+ justify-content: center;
5884
+ -webkit-box-align: center;
5885
+ -ms-flex-align: center;
5886
+ align-items: center;
5887
+ position: absolute;
5888
+ top: 4px;
5889
+ left: 4px;
5890
+ right: 4px;
5891
+ bottom: 4px;
5114
5892
  }
5115
- .ant-popover-rtl .ant-popover-message-title {
5116
- padding-right: 22px;
5117
- padding-left: 16px;
5893
+ .pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-operator .anticon {
5894
+ font-size: 16px;
5118
5895
  }
5119
- .ant-popover-rtl .ant-popover-buttons {
5120
- text-align: left;
5896
+ .pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-hidden-plus-icon {
5897
+ display: none;
5121
5898
  }
5122
- .ant-popover-rtl .ant-popover-buttons button {
5123
- margin-right: 8px;
5124
- margin-left: 0;
5899
+ .pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-box {
5900
+ max-width: 100%;
5901
+ max-height: 100%;
5902
+ padding: 4px;
5125
5903
  }
5126
- .pandora-sdk-datetime-pick-popover-root .ant-popover-inner-content {
5127
- padding: 0;
5904
+ .pandora-sdk-file-resumable-img-container:hover .pandora-sdk-file-resumable-img-operator {
5905
+ background: rgba(51, 51, 51, 0.7);
5906
+ display: -webkit-box;
5907
+ display: -ms-flexbox;
5908
+ display: flex;
5128
5909
  }
5129
- .pandora-sdk-datetime-pick-popover-root .ant-btn {
5130
- line-height: 1.499;
5910
+ .pandora-sdk-file-resumable-img-container:hover .pandora-sdk-file-resumable-img-operator .anticon {
5911
+ font-size: 16px;
5912
+ color: #d9d9d9;
5131
5913
  }
5132
- .pandora-sdk-datetime-pick-popover-root .ant-table {
5133
- line-height: 1.5;
5914
+ .pandora-sdk-file-resumable-img.ant-upload.ant-upload-drag {
5915
+ width: 50px;
5916
+ height: 50px;
5917
+ border: none;
5134
5918
  }
5135
- .pandora-sdk-datetime-pick-popover {
5136
- width: 650px;
5919
+ .pandora-sdk-file-resumable-img.ant-upload.ant-upload-drag .ant-upload-btn {
5920
+ padding: 0;
5137
5921
  }
5138
5922
  .ant-input[disabled] {
5139
5923
  border-color: #d9d9d9;
@@ -5141,6 +5925,23 @@ textarea.ant-input {
5141
5925
  .ant-input-group-addon {
5142
5926
  color: #666;
5143
5927
  }
5928
+ .pandora-sdk-key-value-label,
5929
+ .pandora-sdk-key-value-value {
5930
+ display: inline-block;
5931
+ overflow: hidden;
5932
+ text-overflow: ellipsis;
5933
+ white-space: nowrap;
5934
+ line-height: 1.8;
5935
+ vertical-align: middle;
5936
+ }
5937
+ .pandora-sdk-key-value-label {
5938
+ color: #666;
5939
+ width: 30%;
5940
+ }
5941
+ .pandora-sdk-key-value-value {
5942
+ color: #333;
5943
+ width: 70%;
5944
+ }
5144
5945
  .ant-menu-item-danger.ant-menu-item {
5145
5946
  color: #ff4d4f;
5146
5947
  }
@@ -6126,23 +6927,6 @@ textarea.ant-input {
6126
6927
  .ant-menu-horizontal > .ant-menu-item .pandora-sdk-menu-item-a {
6127
6928
  color: #333;
6128
6929
  }
6129
- .pandora-sdk-key-value-label,
6130
- .pandora-sdk-key-value-value {
6131
- display: inline-block;
6132
- overflow: hidden;
6133
- text-overflow: ellipsis;
6134
- white-space: nowrap;
6135
- line-height: 1.8;
6136
- vertical-align: middle;
6137
- }
6138
- .pandora-sdk-key-value-label {
6139
- color: #666;
6140
- width: 30%;
6141
- }
6142
- .pandora-sdk-key-value-value {
6143
- color: #333;
6144
- width: 70%;
6145
- }
6146
6930
  .ant-modal {
6147
6931
  -webkit-box-sizing: border-box;
6148
6932
  box-sizing: border-box;
@@ -6424,6 +7208,15 @@ textarea.ant-input {
6424
7208
  .pandora-sdk-modal .ant-modal-footer .ant-btn-primary {
6425
7209
  color: #d9d9d9;
6426
7210
  }
7211
+ .pandora-sdk-name-explain-icon {
7212
+ color: inherit;
7213
+ -webkit-transition: color 0.3s;
7214
+ transition: color 0.3s;
7215
+ }
7216
+ .pandora-sdk-name-explain-icon:hover,
7217
+ .pandora-sdk-name-explain-icon .ant-tooltip-open {
7218
+ color: #2c6dd2;
7219
+ }
6427
7220
  .ant-tooltip {
6428
7221
  -webkit-box-sizing: border-box;
6429
7222
  box-sizing: border-box;
@@ -6697,15 +7490,6 @@ textarea.ant-input {
6697
7490
  max-height: 200px;
6698
7491
  overflow: auto;
6699
7492
  }
6700
- .pandora-sdk-name-explain-icon {
6701
- color: inherit;
6702
- -webkit-transition: color 0.3s;
6703
- transition: color 0.3s;
6704
- }
6705
- .pandora-sdk-name-explain-icon:hover,
6706
- .pandora-sdk-name-explain-icon .ant-tooltip-open {
6707
- color: #2c6dd2;
6708
- }
6709
7493
  .ant-radio-group {
6710
7494
  -webkit-box-sizing: border-box;
6711
7495
  box-sizing: border-box;
@@ -11438,6 +12222,27 @@ textarea.ant-pagination-options-quick-jumper input {
11438
12222
  .ant-empty .ant-empty-description {
11439
12223
  color: #bfbfbf;
11440
12224
  }
12225
+ .pandora-sdk-timeline-container {
12226
+ list-style: none;
12227
+ margin: 0;
12228
+ line-height: 1.5;
12229
+ font-size: 14px;
12230
+ color: rgba(0, 0, 0, 0.65);
12231
+ -webkit-box-sizing: border-box;
12232
+ box-sizing: border-box;
12233
+ padding: 0;
12234
+ }
12235
+ .pandora-sdk-timeline-container .pandora-sdk-icon {
12236
+ margin: 0 8px;
12237
+ color: inherit;
12238
+ vertical-align: middle;
12239
+ font-size: 14px;
12240
+ -webkit-transition: 0.3s;
12241
+ transition: 0.3s;
12242
+ }
12243
+ .pandora-sdk-timeline-container .pandora-sdk-icon:hover {
12244
+ color: #7a869a;
12245
+ }
11441
12246
  .pandora-sdk-tabs .pandora-sdk-tabs-tab {
11442
12247
  position: relative;
11443
12248
  }
@@ -11464,27 +12269,6 @@ textarea.ant-pagination-options-quick-jumper input {
11464
12269
  .pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
11465
12270
  color: #2c6dd2;
11466
12271
  }
11467
- .pandora-sdk-timeline-container {
11468
- list-style: none;
11469
- margin: 0;
11470
- line-height: 1.5;
11471
- font-size: 14px;
11472
- color: rgba(0, 0, 0, 0.65);
11473
- -webkit-box-sizing: border-box;
11474
- box-sizing: border-box;
11475
- padding: 0;
11476
- }
11477
- .pandora-sdk-timeline-container .pandora-sdk-icon {
11478
- margin: 0 8px;
11479
- color: inherit;
11480
- vertical-align: middle;
11481
- font-size: 14px;
11482
- -webkit-transition: 0.3s;
11483
- transition: 0.3s;
11484
- }
11485
- .pandora-sdk-timeline-container .pandora-sdk-icon:hover {
11486
- color: #7a869a;
11487
- }
11488
12272
  .ant-tag {
11489
12273
  -webkit-box-sizing: border-box;
11490
12274
  box-sizing: border-box;
@@ -19722,31 +20506,20 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
19722
20506
  font-size: 14px;
19723
20507
  color: #333;
19724
20508
  }
19725
- .pandora-sdk-switch {
19726
- display: inline-block;
19727
- margin: 4px;
19728
- padding: 8px;
19729
- border-radius: 100px;
19730
- line-height: 1;
19731
- font-size: 16px;
19732
- color: #7a869a;
19733
- background: #ebecf0;
19734
- cursor: pointer;
19735
- }
19736
- .pandora-sdk-switch.pandora-sdk-active {
19737
- color: #d9d9d9;
20509
+ .pandora-sdk-transfer-list {
20510
+ overflow: hidden;
19738
20511
  }
19739
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-primary {
19740
- background: #2c6dd2;
20512
+ .pandora-sdk-transfer-list .pandora-sdk-transfer-title {
20513
+ margin-bottom: 10px;
19741
20514
  }
19742
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-green {
19743
- background: #52c41a;
20515
+ .pandora-sdk-transfer-list .pandora-sdk-transfer-search {
20516
+ margin-bottom: 10px;
19744
20517
  }
19745
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-yellow {
19746
- background: #faad14;
20518
+ .pandora-sdk-transfer-list .pandora-sdk-transfer-mb10 {
20519
+ margin-bottom: 10px;
19747
20520
  }
19748
- .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-blue {
19749
- background: #03a9f4;
20521
+ .pandora-sdk-search-icon {
20522
+ color: inherit;
19750
20523
  }
19751
20524
  .pandora-sdk-root {
19752
20525
  display: inline-block;
@@ -19814,21 +20587,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
19814
20587
  .pandora-sdk-root.pandora-sdk-grey {
19815
20588
  background: #ebecf0;
19816
20589
  }
19817
- .pandora-sdk-transfer-list {
19818
- overflow: hidden;
19819
- }
19820
- .pandora-sdk-transfer-list .pandora-sdk-transfer-title {
19821
- margin-bottom: 10px;
19822
- }
19823
- .pandora-sdk-transfer-list .pandora-sdk-transfer-search {
19824
- margin-bottom: 10px;
19825
- }
19826
- .pandora-sdk-transfer-list .pandora-sdk-transfer-mb10 {
19827
- margin-bottom: 10px;
19828
- }
19829
- .pandora-sdk-search-icon {
19830
- color: inherit;
19831
- }
19832
20590
  .pandora-sdk-transfer-list-body {
19833
20591
  height: 300px;
19834
20592
  overflow-y: scroll;
@@ -19845,6 +20603,32 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
19845
20603
  .pandora-sdk-transfer-list-body .pandora-sdk-transfer-mb10 {
19846
20604
  margin-bottom: 10px;
19847
20605
  }
20606
+ .pandora-sdk-switch {
20607
+ display: inline-block;
20608
+ margin: 4px;
20609
+ padding: 8px;
20610
+ border-radius: 100px;
20611
+ line-height: 1;
20612
+ font-size: 16px;
20613
+ color: #7a869a;
20614
+ background: #ebecf0;
20615
+ cursor: pointer;
20616
+ }
20617
+ .pandora-sdk-switch.pandora-sdk-active {
20618
+ color: #d9d9d9;
20619
+ }
20620
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-primary {
20621
+ background: #2c6dd2;
20622
+ }
20623
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-green {
20624
+ background: #52c41a;
20625
+ }
20626
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-yellow {
20627
+ background: #faad14;
20628
+ }
20629
+ .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-blue {
20630
+ background: #03a9f4;
20631
+ }
19848
20632
  .pandora-sdk-panel-title {
19849
20633
  display: -webkit-box;
19850
20634
  display: -ms-flexbox;