@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.
- package/CHANGELOG.json +43 -0
- package/CHANGELOG.md +17 -1
- package/es/components/AutoComplete/index.js +21 -1
- package/es/components/DateTimePicker/transform.d.ts +4 -1
- package/es/components/DateTimePicker/transform.js +2 -2
- package/es/components/Drawer/index.d.ts +30 -2
- package/es/components/Drawer/index.js +165 -5
- package/es/components/Drawer/style.css +18 -1
- package/es/components/Drawer/style.less +23 -1
- package/es/components/FileResumable/constants.d.ts +33 -0
- package/es/components/FileResumable/constants.js +0 -0
- package/es/components/FileResumable/index.d.ts +13 -0
- package/es/components/FileResumable/index.js +327 -0
- package/es/components/FileResumable/style.css +777 -0
- package/es/components/FileResumable/style.less +94 -0
- package/es/components/FileResumable/utils.d.ts +1 -0
- package/es/components/FileResumable/utils.js +17 -0
- package/es/components/Selector/SelectorWidthChildren.d.ts +15 -0
- package/es/components/Selector/SelectorWidthChildren.js +59 -0
- package/es/components/Selector/index.d.ts +2 -0
- package/es/components/Selector/index.js +17 -3
- package/es/components/TreeSelector/index.js +1 -1
- package/es/constants/language/en.js +3 -1
- package/es/constants/language/type.d.ts +2 -0
- package/es/constants/language/upload/en.d.ts +3 -0
- package/es/constants/language/upload/en.js +20 -0
- package/es/constants/language/upload/type.d.ts +20 -0
- package/es/constants/language/upload/type.js +4 -0
- package/es/constants/language/upload/zh.d.ts +3 -0
- package/es/constants/language/upload/zh.js +20 -0
- package/es/constants/language/zh.js +3 -1
- package/es/index.css +1282 -498
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/es/index.less +12 -11
- package/es/style/theme.less +1 -0
- package/lib/components/AutoComplete/index.js +21 -1
- package/lib/components/DateTimePicker/transform.d.ts +4 -1
- package/lib/components/DateTimePicker/transform.js +2 -0
- package/lib/components/Drawer/index.d.ts +30 -2
- package/lib/components/Drawer/index.js +164 -12
- package/lib/components/Drawer/style.css +18 -1
- package/lib/components/Drawer/style.less +23 -1
- package/lib/components/FileResumable/constants.d.ts +33 -0
- package/lib/components/FileResumable/constants.js +2 -0
- package/lib/components/FileResumable/index.d.ts +13 -0
- package/lib/components/FileResumable/index.js +340 -0
- package/lib/components/FileResumable/style.css +777 -0
- package/lib/components/FileResumable/style.less +94 -0
- package/lib/components/FileResumable/utils.d.ts +1 -0
- package/lib/components/FileResumable/utils.js +19 -0
- package/lib/components/Selector/SelectorWidthChildren.d.ts +15 -0
- package/lib/components/Selector/SelectorWidthChildren.js +72 -0
- package/lib/components/Selector/index.d.ts +2 -0
- package/lib/components/Selector/index.js +16 -2
- package/lib/components/TreeSelector/index.js +1 -1
- package/lib/constants/language/en.js +6 -1
- package/lib/constants/language/type.d.ts +2 -0
- package/lib/constants/language/upload/en.d.ts +3 -0
- package/lib/constants/language/upload/en.js +22 -0
- package/lib/constants/language/upload/type.d.ts +20 -0
- package/lib/constants/language/upload/type.js +9 -0
- package/lib/constants/language/upload/zh.d.ts +3 -0
- package/lib/constants/language/upload/zh.js +22 -0
- package/lib/constants/language/zh.js +6 -1
- package/lib/index.css +977 -193
- package/lib/index.d.ts +2 -0
- package/lib/index.js +4 -0
- package/lib/index.less +9 -8
- package/lib/style/theme.less +1 -0
- package/package.json +6 -4
package/lib/index.css
CHANGED
@@ -8,6 +8,25 @@
|
|
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-select-auto-complete {
|
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-size: 14px;
|
18
|
+
font-variant: tabular-nums;
|
19
|
+
line-height: 1.5715;
|
20
|
+
list-style: none;
|
21
|
+
-webkit-font-feature-settings: 'tnum';
|
22
|
+
font-feature-settings: 'tnum';
|
23
|
+
}
|
24
|
+
.ant-select-auto-complete .ant-select-clear {
|
25
|
+
right: 13px;
|
26
|
+
}
|
27
|
+
.pandora-sdk-auto-complete .ant-input {
|
28
|
+
border: 0px;
|
29
|
+
}
|
11
30
|
.ant-breadcrumb {
|
12
31
|
-webkit-box-sizing: border-box;
|
13
32
|
box-sizing: border-box;
|
@@ -83,25 +102,6 @@
|
|
83
102
|
.pandora-sdk-breadcrumb a {
|
84
103
|
text-decoration: none;
|
85
104
|
}
|
86
|
-
.ant-select-auto-complete {
|
87
|
-
-webkit-box-sizing: border-box;
|
88
|
-
box-sizing: border-box;
|
89
|
-
margin: 0;
|
90
|
-
padding: 0;
|
91
|
-
color: rgba(0, 0, 0, 0.85);
|
92
|
-
font-size: 14px;
|
93
|
-
font-variant: tabular-nums;
|
94
|
-
line-height: 1.5715;
|
95
|
-
list-style: none;
|
96
|
-
-webkit-font-feature-settings: 'tnum';
|
97
|
-
font-feature-settings: 'tnum';
|
98
|
-
}
|
99
|
-
.ant-select-auto-complete .ant-select-clear {
|
100
|
-
right: 13px;
|
101
|
-
}
|
102
|
-
.pandora-sdk-auto-complete .ant-input {
|
103
|
-
border: 0px;
|
104
|
-
}
|
105
105
|
.ant-btn {
|
106
106
|
line-height: 1.5715;
|
107
107
|
position: relative;
|
@@ -3345,6 +3345,14 @@ a.ant-btn-sm {
|
|
3345
3345
|
.ant-checkbox-inner::after {
|
3346
3346
|
left: 20%;
|
3347
3347
|
}
|
3348
|
+
.pandora-sdk-checkbox-item {
|
3349
|
+
white-space: nowrap;
|
3350
|
+
width: 100%;
|
3351
|
+
}
|
3352
|
+
.pandora-sdk-checkbox-item.ant-checkbox-wrapper {
|
3353
|
+
margin-left: 0;
|
3354
|
+
line-height: 25px;
|
3355
|
+
}
|
3348
3356
|
.ant-divider {
|
3349
3357
|
-webkit-box-sizing: border-box;
|
3350
3358
|
box-sizing: border-box;
|
@@ -4536,14 +4544,6 @@ textarea.ant-input {
|
|
4536
4544
|
padding-left: 16px;
|
4537
4545
|
padding-right: 16px;
|
4538
4546
|
}
|
4539
|
-
.pandora-sdk-checkbox-item {
|
4540
|
-
white-space: nowrap;
|
4541
|
-
width: 100%;
|
4542
|
-
}
|
4543
|
-
.pandora-sdk-checkbox-item.ant-checkbox-wrapper {
|
4544
|
-
margin-left: 0;
|
4545
|
-
line-height: 25px;
|
4546
|
-
}
|
4547
4547
|
.ant-popover {
|
4548
4548
|
-webkit-box-sizing: border-box;
|
4549
4549
|
box-sizing: border-box;
|
@@ -4994,146 +4994,930 @@ textarea.ant-input {
|
|
4994
4994
|
font-size: 16px;
|
4995
4995
|
line-height: 22px;
|
4996
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;
|
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;
|
5832
|
+
}
|
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;
|
5838
|
+
}
|
5839
|
+
.pandora-sdk-file-resumable-run-container .pandora-sdk-file-resumable-run-container-icon-disabled {
|
5840
|
+
color: #d9d9d9;
|
5004
5841
|
}
|
5005
|
-
.
|
5006
|
-
|
5007
|
-
|
5008
|
-
|
5009
|
-
font-
|
5010
|
-
|
5011
|
-
|
5012
|
-
|
5013
|
-
|
5014
|
-
text-transform: none;
|
5015
|
-
text-decoration: none;
|
5016
|
-
background: transparent;
|
5017
|
-
border: 0;
|
5018
|
-
outline: 0;
|
5842
|
+
.pandora-sdk-file-resumable-run-container .pandora-sdk-file-resumable-run-container-icon-disabled:hover {
|
5843
|
+
cursor: not-allowed;
|
5844
|
+
}
|
5845
|
+
.pandora-sdk-file-resumable-upload-icon {
|
5846
|
+
font-size: 50px;
|
5847
|
+
color: inherit;
|
5848
|
+
}
|
5849
|
+
.downloadIcon {
|
5850
|
+
color: #2c6dd2;
|
5019
5851
|
cursor: pointer;
|
5020
|
-
-
|
5021
|
-
transition: color 0.3s;
|
5022
|
-
text-rendering: auto;
|
5852
|
+
font-size: 20px;
|
5023
5853
|
}
|
5024
|
-
.
|
5025
|
-
|
5026
|
-
color: rgba(0, 0, 0, 0.75);
|
5027
|
-
text-decoration: none;
|
5854
|
+
.pandora-sdk-file-resumable:hover {
|
5855
|
+
border-color: #2c6dd2;
|
5028
5856
|
}
|
5029
|
-
.
|
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;
|
5030
5868
|
position: relative;
|
5869
|
+
font-size: 16px;
|
5031
5870
|
display: -webkit-box;
|
5032
5871
|
display: -ms-flexbox;
|
5033
5872
|
display: flex;
|
5034
|
-
-webkit-box-
|
5035
|
-
-ms-flex-
|
5036
|
-
|
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;
|
5873
|
+
-webkit-box-pack: center;
|
5874
|
+
-ms-flex-pack: center;
|
5875
|
+
justify-content: center;
|
5045
5876
|
}
|
5046
|
-
.
|
5877
|
+
.pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-operator {
|
5047
5878
|
display: -webkit-box;
|
5048
5879
|
display: -ms-flexbox;
|
5049
5880
|
display: flex;
|
5881
|
+
-webkit-box-pack: center;
|
5882
|
+
-ms-flex-pack: center;
|
5883
|
+
justify-content: center;
|
5050
5884
|
-webkit-box-align: center;
|
5051
5885
|
-ms-flex-align: center;
|
5052
5886
|
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
5887
|
position: absolute;
|
5090
|
-
top:
|
5091
|
-
left:
|
5092
|
-
|
5093
|
-
|
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;
|
5888
|
+
top: 4px;
|
5889
|
+
left: 4px;
|
5890
|
+
right: 4px;
|
5891
|
+
bottom: 4px;
|
5102
5892
|
}
|
5103
|
-
|
5104
|
-
|
5105
|
-
opacity: 0;
|
5106
|
-
}
|
5107
|
-
100% {
|
5108
|
-
opacity: 1;
|
5109
|
-
}
|
5893
|
+
.pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-operator .anticon {
|
5894
|
+
font-size: 16px;
|
5110
5895
|
}
|
5111
|
-
|
5112
|
-
|
5113
|
-
opacity: 0;
|
5114
|
-
}
|
5115
|
-
100% {
|
5116
|
-
opacity: 1;
|
5117
|
-
}
|
5896
|
+
.pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-hidden-plus-icon {
|
5897
|
+
display: none;
|
5118
5898
|
}
|
5119
|
-
.
|
5120
|
-
|
5899
|
+
.pandora-sdk-file-resumable-img-container .pandora-sdk-file-resumable-img-box {
|
5900
|
+
max-width: 100%;
|
5901
|
+
max-height: 100%;
|
5902
|
+
padding: 4px;
|
5121
5903
|
}
|
5122
|
-
.
|
5123
|
-
|
5124
|
-
|
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;
|
5125
5909
|
}
|
5126
|
-
.pandora-sdk-
|
5127
|
-
|
5128
|
-
|
5910
|
+
.pandora-sdk-file-resumable-img-container:hover .pandora-sdk-file-resumable-img-operator .anticon {
|
5911
|
+
font-size: 16px;
|
5912
|
+
color: #d9d9d9;
|
5129
5913
|
}
|
5130
|
-
.pandora-sdk-
|
5131
|
-
|
5914
|
+
.pandora-sdk-file-resumable-img.ant-upload.ant-upload-drag {
|
5915
|
+
width: 50px;
|
5916
|
+
height: 50px;
|
5917
|
+
border: none;
|
5132
5918
|
}
|
5133
|
-
.pandora-sdk-
|
5134
|
-
|
5135
|
-
height: 60px;
|
5136
|
-
line-height: 60px;
|
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;
|
@@ -11752,24 +12536,6 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
11752
12536
|
.pandora-sdk-timeline-container .pandora-sdk-icon:hover {
|
11753
12537
|
color: #7a869a;
|
11754
12538
|
}
|
11755
|
-
.pandora-sdk-transfer-container {
|
11756
|
-
display: -webkit-box;
|
11757
|
-
display: -ms-flexbox;
|
11758
|
-
display: flex;
|
11759
|
-
-webkit-box-pack: justify;
|
11760
|
-
-ms-flex-pack: justify;
|
11761
|
-
justify-content: space-between;
|
11762
|
-
}
|
11763
|
-
.pandora-sdk-transfer-container .pandora-sdk-transfer-divider {
|
11764
|
-
height: 400px;
|
11765
|
-
}
|
11766
|
-
.pandora-sdk-transfer-container .pandora-sdk-transfer-list {
|
11767
|
-
-webkit-box-flex: 1;
|
11768
|
-
-ms-flex-positive: 1;
|
11769
|
-
flex-grow: 1;
|
11770
|
-
-ms-flex-preferred-size: 200px;
|
11771
|
-
flex-basis: 200px;
|
11772
|
-
}
|
11773
12539
|
@-webkit-keyframes ant-tree-node-fx-do-not-use {
|
11774
12540
|
0% {
|
11775
12541
|
opacity: 0;
|
@@ -12371,6 +13137,24 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
12371
13137
|
.pandora-sdk-tree-select-dropdown .ant-empty {
|
12372
13138
|
text-align: center;
|
12373
13139
|
}
|
13140
|
+
.pandora-sdk-transfer-container {
|
13141
|
+
display: -webkit-box;
|
13142
|
+
display: -ms-flexbox;
|
13143
|
+
display: flex;
|
13144
|
+
-webkit-box-pack: justify;
|
13145
|
+
-ms-flex-pack: justify;
|
13146
|
+
justify-content: space-between;
|
13147
|
+
}
|
13148
|
+
.pandora-sdk-transfer-container .pandora-sdk-transfer-divider {
|
13149
|
+
height: 400px;
|
13150
|
+
}
|
13151
|
+
.pandora-sdk-transfer-container .pandora-sdk-transfer-list {
|
13152
|
+
-webkit-box-flex: 1;
|
13153
|
+
-ms-flex-positive: 1;
|
13154
|
+
flex-grow: 1;
|
13155
|
+
-ms-flex-preferred-size: 200px;
|
13156
|
+
flex-basis: 200px;
|
13157
|
+
}
|
12374
13158
|
.ant-row {
|
12375
13159
|
display: -webkit-box;
|
12376
13160
|
display: -ms-flexbox;
|
@@ -19636,6 +20420,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19636
20420
|
.pandora-sdk-popover-list .pandora-sdk-item.pandora-sdk-disabled {
|
19637
20421
|
color: #bfbfbf;
|
19638
20422
|
}
|
20423
|
+
.pandora-sdk-prev-button {
|
20424
|
+
margin-right: 10px;
|
20425
|
+
}
|
19639
20426
|
.pandora-sdk-table-columnTag-groupTag {
|
19640
20427
|
padding: 4px;
|
19641
20428
|
height: 24px;
|
@@ -19675,9 +20462,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19675
20462
|
flex-wrap: wrap;
|
19676
20463
|
width: 400px;
|
19677
20464
|
}
|
19678
|
-
.pandora-sdk-prev-button {
|
19679
|
-
margin-right: 10px;
|
19680
|
-
}
|
19681
20465
|
.pandora-sdk-root {
|
19682
20466
|
display: inline-block;
|
19683
20467
|
line-height: 24px;
|
@@ -19845,34 +20629,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19845
20629
|
.pandora-sdk-transfer-list-body .pandora-sdk-transfer-mb10 {
|
19846
20630
|
margin-bottom: 10px;
|
19847
20631
|
}
|
19848
|
-
.pandora-sdk-panel-title {
|
19849
|
-
display: -webkit-box;
|
19850
|
-
display: -ms-flexbox;
|
19851
|
-
display: flex;
|
19852
|
-
-webkit-box-pack: justify;
|
19853
|
-
-ms-flex-pack: justify;
|
19854
|
-
justify-content: space-between;
|
19855
|
-
font-size: 12px;
|
19856
|
-
color: #42526e;
|
19857
|
-
cursor: pointer;
|
19858
|
-
padding-bottom: 16px;
|
19859
|
-
border-bottom: 1px solid #d9d9d9;
|
19860
|
-
}
|
19861
|
-
.pandora-sdk-panel-title .icon {
|
19862
|
-
font-size: 14px;
|
19863
|
-
}
|
19864
|
-
.pandora-sdk-panel-content {
|
19865
|
-
padding: 20px 0 0 0;
|
19866
|
-
}
|
19867
|
-
.pandora-sdk-panel-hidden {
|
19868
|
-
display: none;
|
19869
|
-
}
|
19870
|
-
.pandora-sdk-panel {
|
19871
|
-
margin-bottom: 20px;
|
19872
|
-
}
|
19873
|
-
.pandora-sdk-panel-disable {
|
19874
|
-
cursor: default;
|
19875
|
-
}
|
19876
20632
|
.pandora-sdk-datetime-mobile-pick-range-preset-head {
|
19877
20633
|
display: -webkit-box;
|
19878
20634
|
display: -ms-flexbox;
|
@@ -19909,3 +20665,31 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
19909
20665
|
border-radius: 2px;
|
19910
20666
|
border: 2px solid #939393;
|
19911
20667
|
}
|
20668
|
+
.pandora-sdk-panel-title {
|
20669
|
+
display: -webkit-box;
|
20670
|
+
display: -ms-flexbox;
|
20671
|
+
display: flex;
|
20672
|
+
-webkit-box-pack: justify;
|
20673
|
+
-ms-flex-pack: justify;
|
20674
|
+
justify-content: space-between;
|
20675
|
+
font-size: 12px;
|
20676
|
+
color: #42526e;
|
20677
|
+
cursor: pointer;
|
20678
|
+
padding-bottom: 16px;
|
20679
|
+
border-bottom: 1px solid #d9d9d9;
|
20680
|
+
}
|
20681
|
+
.pandora-sdk-panel-title .icon {
|
20682
|
+
font-size: 14px;
|
20683
|
+
}
|
20684
|
+
.pandora-sdk-panel-content {
|
20685
|
+
padding: 20px 0 0 0;
|
20686
|
+
}
|
20687
|
+
.pandora-sdk-panel-hidden {
|
20688
|
+
display: none;
|
20689
|
+
}
|
20690
|
+
.pandora-sdk-panel {
|
20691
|
+
margin-bottom: 20px;
|
20692
|
+
}
|
20693
|
+
.pandora-sdk-panel-disable {
|
20694
|
+
cursor: default;
|
20695
|
+
}
|