@lingxiteam/lcdp-ueditor-react 1.0.0-alpha.9 → 1.0.1

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 (111) hide show
  1. package/es/LcdpUeditor.js +64 -61
  2. package/es/const.js +4 -4
  3. package/es/defaultConfig.json +76 -76
  4. package/es/tools/UeditorResourceLoader.js +11 -16
  5. package/es/tools/filterHtmlNode.d.ts +5 -0
  6. package/es/tools/filterHtmlNode.js +41 -0
  7. package/es/tools/loadScript.js +5 -7
  8. package/es/type.d.ts +6 -0
  9. package/lib/LcdpUeditor.js +18 -8
  10. package/lib/defaultConfig.json +76 -76
  11. package/lib/tools/filterHtmlNode.d.ts +5 -0
  12. package/lib/tools/filterHtmlNode.js +61 -0
  13. package/lib/type.d.ts +6 -0
  14. package/package.json +35 -34
  15. package/ueditor-resource/dialogs/anchor/anchor.html +62 -62
  16. package/ueditor-resource/dialogs/attachment/attachment.css +716 -716
  17. package/ueditor-resource/dialogs/attachment/attachment.html +61 -61
  18. package/ueditor-resource/dialogs/attachment/attachment.js +803 -803
  19. package/ueditor-resource/dialogs/audio/audio.css +879 -879
  20. package/ueditor-resource/dialogs/audio/audio.html +93 -93
  21. package/ueditor-resource/dialogs/audio/audio.js +815 -815
  22. package/ueditor-resource/dialogs/background/background.css +193 -193
  23. package/ueditor-resource/dialogs/background/background.html +59 -59
  24. package/ueditor-resource/dialogs/background/background.js +370 -370
  25. package/ueditor-resource/dialogs/contentimport/contentimport.html +176 -176
  26. package/ueditor-resource/dialogs/contentimport/contentimport.js +91 -91
  27. package/ueditor-resource/dialogs/emotion/emotion.css +129 -129
  28. package/ueditor-resource/dialogs/emotion/emotion.html +70 -70
  29. package/ueditor-resource/dialogs/emotion/emotion.js +186 -186
  30. package/ueditor-resource/dialogs/formula/formula.html +98 -98
  31. package/ueditor-resource/dialogs/formula/formula.js +147 -147
  32. package/ueditor-resource/dialogs/help/help.css +37 -37
  33. package/ueditor-resource/dialogs/help/help.html +82 -82
  34. package/ueditor-resource/dialogs/help/help.js +57 -57
  35. package/ueditor-resource/dialogs/image/image.css +768 -768
  36. package/ueditor-resource/dialogs/image/image.html +144 -144
  37. package/ueditor-resource/dialogs/image/image.js +1060 -1060
  38. package/ueditor-resource/dialogs/insertframe/insertframe.html +135 -135
  39. package/ueditor-resource/dialogs/internal.js +81 -81
  40. package/ueditor-resource/dialogs/link/link.html +148 -148
  41. package/ueditor-resource/dialogs/preview/preview.html +45 -45
  42. package/ueditor-resource/dialogs/scrawl/scrawl.css +324 -324
  43. package/ueditor-resource/dialogs/scrawl/scrawl.html +95 -95
  44. package/ueditor-resource/dialogs/scrawl/scrawl.js +682 -682
  45. package/ueditor-resource/dialogs/searchreplace/searchreplace.html +144 -144
  46. package/ueditor-resource/dialogs/searchreplace/searchreplace.js +174 -174
  47. package/ueditor-resource/dialogs/spechars/spechars.html +42 -42
  48. package/ueditor-resource/dialogs/spechars/spechars.js +86 -86
  49. package/ueditor-resource/dialogs/table/edittable.css +85 -85
  50. package/ueditor-resource/dialogs/table/edittable.html +69 -69
  51. package/ueditor-resource/dialogs/table/edittable.js +241 -241
  52. package/ueditor-resource/dialogs/table/edittd.html +62 -62
  53. package/ueditor-resource/dialogs/table/edittip.html +33 -33
  54. package/ueditor-resource/dialogs/template/config.js +42 -42
  55. package/ueditor-resource/dialogs/template/template.css +99 -99
  56. package/ueditor-resource/dialogs/template/template.html +26 -26
  57. package/ueditor-resource/dialogs/template/template.js +53 -53
  58. package/ueditor-resource/dialogs/video/video.css +909 -909
  59. package/ueditor-resource/dialogs/video/video.html +114 -114
  60. package/ueditor-resource/dialogs/video/video.js +867 -867
  61. package/ueditor-resource/dialogs/wordimage/wordimage.html +221 -221
  62. package/ueditor-resource/dialogs/wordimage/wordimage.js +93 -93
  63. package/ueditor-resource/lang/en/en.js +686 -686
  64. package/ueditor-resource/lang/zh-cn/zh-cn.js +748 -748
  65. package/ueditor-resource/lang/zh-tw/zh-tw.js +748 -748
  66. package/ueditor-resource/plugins/demo/demo.js +3 -3
  67. package/ueditor-resource/themes/default/css/ueditor.css +2148 -2148
  68. package/ueditor-resource/themes/default/dialog.css +17 -17
  69. package/ueditor-resource/themes/default/dialogbase.css +132 -132
  70. package/ueditor-resource/themes/default/exts/ai.svg +12 -12
  71. package/ueditor-resource/themes/default/exts/apk.svg +12 -12
  72. package/ueditor-resource/themes/default/exts/chm.svg +12 -12
  73. package/ueditor-resource/themes/default/exts/css.svg +12 -12
  74. package/ueditor-resource/themes/default/exts/doc.svg +22 -22
  75. package/ueditor-resource/themes/default/exts/docx.svg +22 -22
  76. package/ueditor-resource/themes/default/exts/dwg.svg +16 -16
  77. package/ueditor-resource/themes/default/exts/folder.svg +3 -3
  78. package/ueditor-resource/themes/default/exts/gif.svg +14 -14
  79. package/ueditor-resource/themes/default/exts/html.svg +12 -12
  80. package/ueditor-resource/themes/default/exts/jpeg.svg +14 -14
  81. package/ueditor-resource/themes/default/exts/jpg.svg +14 -14
  82. package/ueditor-resource/themes/default/exts/log.svg +12 -12
  83. package/ueditor-resource/themes/default/exts/mp3.svg +14 -14
  84. package/ueditor-resource/themes/default/exts/mp4.svg +12 -12
  85. package/ueditor-resource/themes/default/exts/pdf.svg +14 -14
  86. package/ueditor-resource/themes/default/exts/png.svg +14 -14
  87. package/ueditor-resource/themes/default/exts/ppt.svg +24 -24
  88. package/ueditor-resource/themes/default/exts/pptx.svg +24 -24
  89. package/ueditor-resource/themes/default/exts/psd.svg +12 -12
  90. package/ueditor-resource/themes/default/exts/rar.svg +12 -12
  91. package/ueditor-resource/themes/default/exts/svg.svg +12 -12
  92. package/ueditor-resource/themes/default/exts/torrent.svg +14 -14
  93. package/ueditor-resource/themes/default/exts/txt.svg +14 -14
  94. package/ueditor-resource/themes/default/exts/unknown.svg +12 -12
  95. package/ueditor-resource/themes/default/exts/xls.svg +25 -25
  96. package/ueditor-resource/themes/default/exts/xlsx.svg +25 -25
  97. package/ueditor-resource/themes/default/exts/zip.svg +12 -12
  98. package/ueditor-resource/themes/iframe.css +63 -63
  99. package/ueditor-resource/third-party/SyntaxHighlighter/shCore.js +3655 -3655
  100. package/ueditor-resource/third-party/clipboard/clipboard.js +752 -752
  101. package/ueditor-resource/third-party/codemirror/codemirror.css +106 -106
  102. package/ueditor-resource/third-party/codemirror/codemirror.js +3581 -3581
  103. package/ueditor-resource/third-party/jquery-3.5.1.js +1 -1
  104. package/ueditor-resource/third-party/jquery-3.5.1_1.js +4314 -4314
  105. package/ueditor-resource/third-party/webuploader/webuploader.css +88 -88
  106. package/ueditor-resource/third-party/webuploader/webuploader.js +3 -3
  107. package/ueditor-resource/third-party/zeroclipboard/ZeroClipboard.js +1255 -1255
  108. package/ueditor-resource/{lcdp-ueditor.all.js → ueditor.all.js} +5270 -5269
  109. package/ueditor-resource/ueditor.config.js +655 -655
  110. package/ueditor-resource/{lcdp-ueditor.parse.js → ueditor.parse.js} +13 -13
  111. package/ueditor-resource/index.html +0 -146
@@ -1,879 +1,879 @@
1
- @charset "utf-8";
2
- .wrapper {
3
- width: 100%;
4
- _width: 100%;
5
- zoom: 1;
6
- position: relative
7
- }
8
-
9
- #audio {
10
- border-bottom: 1px solid #F0F0F0;
11
- }
12
-
13
- #audio .padding-8 {
14
- box-sizing: border-box;
15
- padding: 8px;
16
- width: 100%;
17
- }
18
- #audio .padding-8 input {
19
- box-sizing: border-box;
20
- width: 100%;
21
- height: 24px;
22
- margin-top: 4px;
23
- }
24
-
25
- .tabbody {
26
- height: 345px;
27
- box-sizing: border-box;
28
- }
29
-
30
- .tabbody .panel {
31
- position: absolute;
32
- width: 0;
33
- height: 0;
34
- background: #fff;
35
- overflow: hidden;
36
- display: none;
37
- }
38
-
39
- .tabbody .panel.focus {
40
- width: 100%;
41
- height: 355px;
42
- display: block;
43
- }
44
-
45
- .tabbody .panel table td {
46
- vertical-align: middle;
47
- }
48
-
49
- #audioUrl {
50
- width: 100%;
51
- box-sizing: border-box;
52
- height: 26px;
53
- line-height: 26px;
54
- margin: 8px 5px;
55
- background: #FFF;
56
- border: 1px solid #d7d7d7;
57
- outline: none;
58
- border-radius: 3px;
59
- padding: 0 5px;
60
- }
61
-
62
- #audioSelect {
63
- width: 100px;
64
- display: inline-block;
65
- background: #FFF;
66
- border: 1px solid #EEE;
67
- line-height: 26px;
68
- text-align: center;
69
- color: #333;
70
- text-decoration: none;
71
- border-radius: 3px;
72
- vertical-align: middle;
73
- }
74
-
75
- #audioSearchTxt {
76
- margin-left: 15px;
77
- background: #FFF;
78
- width: 200px;
79
- height: 21px;
80
- line-height: 21px;
81
- border: 1px solid #d7d7d7;
82
- }
83
-
84
- #searchList {
85
- width: 570px;
86
- overflow: auto;
87
- zoom: 1;
88
- height: 270px;
89
- }
90
-
91
- #searchList div {
92
- float: left;
93
- width: 120px;
94
- height: 135px;
95
- margin: 5px 15px;
96
- }
97
-
98
- #searchList img {
99
- margin: 2px 8px;
100
- cursor: pointer;
101
- border: 2px solid #fff
102
- }
103
-
104
- /*不用缩略图*/
105
- #searchList p {
106
- margin-left: 10px;
107
- }
108
-
109
- #audioType {
110
- width: 65px;
111
- height: 23px;
112
- line-height: 22px;
113
- border: 1px solid #d7d7d7;
114
- }
115
-
116
- #audioSearchBtn, #audioSearchReset {
117
- /*width: 80px;*/
118
- height: 25px;
119
- line-height: 25px;
120
- background: #eee;
121
- border: 1px solid #d7d7d7;
122
- cursor: pointer;
123
- padding: 0 5px;
124
- }
125
-
126
-
127
- #preview {
128
- position: relative;
129
- width: 100%;
130
- box-sizing: border-box;
131
- padding: 0;
132
- overflow: hidden;
133
- height: 280px;
134
- border-right: 1px solid #F2F3F5;
135
- background-image: url('./icon/img.png');
136
- background-size: 32px 32px;
137
- background-repeat: no-repeat;
138
- background-position: center center;
139
- }
140
-
141
- #preview .previewMsg {
142
- position: absolute;
143
- top: 0;
144
- margin: 0;
145
- padding: 0;
146
- height: 280px;
147
- width: 100%;
148
- background-color: #666;
149
- }
150
-
151
- #preview .previewMsg span {
152
- display: block;
153
- margin: 125px auto 0 auto;
154
- text-align: center;
155
- font-size: 18px;
156
- color: #fff;
157
- }
158
-
159
- #preview .previewaudio {
160
- position: absolute;
161
- top: 0;
162
- margin: 0;
163
- padding: 0;
164
- height: 280px;
165
- width: 100%;
166
- }
167
-
168
- .edui-audio-wrapper fieldset {
169
- border: 1px solid #ddd;
170
- padding-left: 5px;
171
- margin-bottom: 20px;
172
- padding-bottom: 5px;
173
- width: 115px;
174
- }
175
-
176
- #audioInfo {
177
- width: 120px;
178
- float: left;
179
- margin-left: 10px;
180
- _margin-left: 7px;
181
- }
182
-
183
- fieldset {
184
- border: 1px solid #ddd;
185
- padding-left: 5px;
186
- margin-bottom: 20px;
187
- padding-bottom: 5px;
188
- width: 115px;
189
- }
190
-
191
- fieldset legend {
192
- font-weight: bold;
193
- }
194
-
195
- fieldset p {
196
- line-height: 30px;
197
- }
198
-
199
- fieldset input.txt {
200
- width: 65px;
201
- height: 21px;
202
- line-height: 21px;
203
- margin: 8px 5px;
204
- background: #FFF;
205
- border: 1px solid #d7d7d7;
206
- }
207
-
208
- label.url {
209
- font-weight: bold;
210
- margin-left: 5px;
211
- }
212
-
213
- .container-box {
214
- margin: 8px 16px;
215
- }
216
-
217
- .left {
218
- flex: 1;
219
- box-sizing: border-box;
220
-
221
- }
222
- .right {
223
- width: 130px;
224
- box-sizing: border-box;
225
- }
226
-
227
- /* 图片对齐方式 */
228
- .alignBar {
229
- position: relative;
230
- }
231
-
232
-
233
- .alignBar #audioFloat {
234
- zoom: 1;
235
- position: relative;
236
- width: 100%;
237
- border-radius: 4px;
238
- height: 24px;
239
- display: flex;
240
- flex-direction: row;
241
- justify-content: flex-start;
242
- align-items: center;
243
- margin-top: 4px;
244
- }
245
-
246
- .alignBar #audioFloat div {
247
- box-sizing: border-box;
248
- cursor: pointer;
249
- display: block;
250
- flex: 1;
251
- height: 24px;
252
- background-repeat: no-repeat;
253
- background-size: 16px 16px;
254
- background-position: center center;
255
- border: 1px solid #DCDDE5;
256
- }
257
-
258
- .alignBar #audioFloat div:nth-child(1) {
259
- border-top-left-radius: 4px;
260
- border-bottom-left-radius: 4px;
261
- }
262
-
263
- .alignBar #audioFloat div:nth-child(4) {
264
- border-top-right-radius: 4px;
265
- border-bottom-right-radius: 4px;
266
- }
267
-
268
- .alignBar #audioFloat div.focus{
269
- border-color: #417FFB;
270
- }
271
- span.view {
272
- display: inline-block;
273
- width: 30px;
274
- float: right;
275
- cursor: pointer;
276
- color: blue
277
- }
278
-
279
-
280
- /* upload audio */
281
- .tabbody #upload.panel {
282
- width: 0;
283
- height: 0;
284
- overflow: hidden;
285
- position: absolute !important;
286
- clip: rect(1px, 1px, 1px, 1px);
287
- background: #fff;
288
- display: block;
289
- }
290
-
291
- .tabbody #upload.panel.focus {
292
- width: 100%;
293
- height: 335px;
294
- display: block;
295
- clip: auto;
296
- }
297
-
298
- #upload_alignment div {
299
- cursor: pointer;
300
- opacity: 0.5;
301
- filter: alpha(opacity=50);
302
- margin: 9px;
303
- _margin: 5px;
304
- width: 38px;
305
- height: 36px;
306
- float: left;
307
- }
308
-
309
- #upload_alignment .focus {
310
- opacity: 1;
311
- filter: alpha(opacity=100)
312
- }
313
-
314
- #upload_left {
315
- width: 427px;
316
- float: left;
317
- }
318
-
319
- #upload_left .controller {
320
- height: 30px;
321
- clear: both;
322
- }
323
-
324
- #uploadaudioInfo {
325
- margin-top: 10px;
326
- float: right;
327
- padding-right: 8px;
328
- }
329
-
330
- #upload .queueList {
331
- margin: 0;
332
- }
333
-
334
- #upload p {
335
- margin: 0;
336
- }
337
-
338
- .element-invisible {
339
- width: 0 !important;
340
- height: 0 !important;
341
- border: 0;
342
- padding: 0;
343
- margin: 0;
344
- overflow: hidden;
345
- position: absolute !important;
346
- clip: rect(1px, 1px, 1px, 1px);
347
- }
348
-
349
- #upload .placeholder {
350
- margin: 10px;
351
- margin-right: 0;
352
- border: 2px dashed #e6e6e6;
353
- *border: 0px dashed #e6e6e6;
354
- height: 161px;
355
- padding-top: 150px;
356
- text-align: center;
357
- width: 97%;
358
- float: left;
359
- background: url(./images/image.png) center 70px no-repeat;
360
- color: #cccccc;
361
- font-size: 18px;
362
- position: relative;
363
- top: 0;
364
- *margin-left: 0;
365
- *left: 10px;
366
- }
367
-
368
- #upload .placeholder .webuploader-pick {
369
- font-size: 18px;
370
- background: #00b7ee;
371
- border-radius: 3px;
372
- line-height: 44px;
373
- padding: 0 30px;
374
- *width: 120px;
375
- color: #fff;
376
- display: inline-block;
377
- margin: 0 auto 20px auto;
378
- cursor: pointer;
379
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
380
- }
381
-
382
- #upload .placeholder .webuploader-pick-hover {
383
- background: #00a2d4;
384
- }
385
-
386
-
387
- #filePickerContainer {
388
- text-align: center;
389
- }
390
-
391
- #upload .placeholder .flashTip {
392
- color: #666666;
393
- font-size: 12px;
394
- position: absolute;
395
- width: 100%;
396
- text-align: center;
397
- bottom: 20px;
398
- }
399
-
400
- #upload .placeholder .flashTip a {
401
- color: #0785d1;
402
- text-decoration: none;
403
- }
404
-
405
- #upload .placeholder .flashTip a:hover {
406
- text-decoration: underline;
407
- }
408
-
409
- #upload .placeholder.webuploader-dnd-over {
410
- border-color: #999999;
411
- }
412
-
413
- #upload .filelist {
414
- list-style: none;
415
- margin: 0;
416
- padding: 0;
417
- overflow-x: hidden;
418
- overflow-y: auto;
419
- position: relative;
420
- height: 285px;
421
- }
422
-
423
- #upload .filelist:after {
424
- content: '';
425
- display: block;
426
- width: 0;
427
- height: 0;
428
- overflow: hidden;
429
- clear: both;
430
- }
431
-
432
- #upload .filelist li {
433
- width: 113px;
434
- height: 113px;
435
- background: url(./images/bg.png);
436
- text-align: center;
437
- margin: 15px 0 0 20px;
438
- *margin: 15px 0 0 15px;
439
- position: relative;
440
- display: block;
441
- float: left;
442
- overflow: hidden;
443
- font-size: 12px;
444
- }
445
-
446
- #upload .filelist li p.log {
447
- position: relative;
448
- top: -45px;
449
- }
450
-
451
- #upload .filelist li p.title {
452
- position: absolute;
453
- top: 0;
454
- left: 0;
455
- width: 100%;
456
- overflow: hidden;
457
- white-space: nowrap;
458
- text-overflow: ellipsis;
459
- top: 5px;
460
- text-indent: 5px;
461
- text-align: left;
462
- }
463
-
464
- #upload .filelist li p.progress {
465
- position: absolute;
466
- width: 100%;
467
- bottom: 0;
468
- left: 0;
469
- height: 8px;
470
- overflow: hidden;
471
- z-index: 50;
472
- margin: 0;
473
- border-radius: 0;
474
- background: none;
475
- -webkit-box-shadow: 0 0 0;
476
- }
477
-
478
- #upload .filelist li p.progress span {
479
- display: none;
480
- overflow: hidden;
481
- width: 0;
482
- height: 100%;
483
- background: #1483d8 url(./images/progress.png) repeat-x;
484
-
485
- -webit-transition: width 200ms linear;
486
- -moz-transition: width 200ms linear;
487
- -o-transition: width 200ms linear;
488
- -ms-transition: width 200ms linear;
489
- transition: width 200ms linear;
490
-
491
- -webkit-animation: progressmove 2s linear infinite;
492
- -moz-animation: progressmove 2s linear infinite;
493
- -o-animation: progressmove 2s linear infinite;
494
- -ms-animation: progressmove 2s linear infinite;
495
- animation: progressmove 2s linear infinite;
496
-
497
- -webkit-transform: translateZ(0);
498
- }
499
-
500
- @-webkit-keyframes progressmove {
501
- 0% {
502
- background-position: 0 0;
503
- }
504
- 100% {
505
- background-position: 17px 0;
506
- }
507
- }
508
-
509
- @-moz-keyframes progressmove {
510
- 0% {
511
- background-position: 0 0;
512
- }
513
- 100% {
514
- background-position: 17px 0;
515
- }
516
- }
517
-
518
- @keyframes progressmove {
519
- 0% {
520
- background-position: 0 0;
521
- }
522
- 100% {
523
- background-position: 17px 0;
524
- }
525
- }
526
-
527
- #upload .filelist li p.imgWrap {
528
- position: relative;
529
- z-index: 2;
530
- line-height: 113px;
531
- vertical-align: middle;
532
- overflow: hidden;
533
- width: 113px;
534
- height: 113px;
535
-
536
- -webkit-transform-origin: 50% 50%;
537
- -moz-transform-origin: 50% 50%;
538
- -o-transform-origin: 50% 50%;
539
- -ms-transform-origin: 50% 50%;
540
- transform-origin: 50% 50%;
541
-
542
- -webit-transition: 200ms ease-out;
543
- -moz-transition: 200ms ease-out;
544
- -o-transition: 200ms ease-out;
545
- -ms-transition: 200ms ease-out;
546
- transition: 200ms ease-out;
547
- }
548
-
549
- #upload .filelist li p.imgWrap.notimage {
550
- margin-top: 0;
551
- width: 111px;
552
- height: 111px;
553
- border: 1px #eeeeee solid;
554
- }
555
-
556
- #upload .filelist li p.imgWrap.notimage i.file-preview {
557
- margin-top: 15px;
558
- }
559
-
560
- #upload .filelist li img {
561
- width: 100%;
562
- }
563
-
564
- #upload .filelist li p.error {
565
- background: #f43838;
566
- color: #fff;
567
- position: absolute;
568
- bottom: 0;
569
- left: 0;
570
- height: 28px;
571
- line-height: 28px;
572
- width: 100%;
573
- z-index: 100;
574
- display: none;
575
- }
576
-
577
- #upload .filelist li .success {
578
- display: block;
579
- position: absolute;
580
- left: 0;
581
- bottom: 0;
582
- height: 40px;
583
- width: 100%;
584
- z-index: 200;
585
- background: url(./images/success.png) no-repeat right bottom;
586
- background-image: url(./images/success.gif) \9;
587
- }
588
-
589
- #upload .filelist li.filePickerBlock {
590
- width: 113px;
591
- height: 113px;
592
- background: url(./images/image.png) no-repeat center 12px;
593
- border: 1px solid #eeeeee;
594
- border-radius: 0;
595
- }
596
-
597
- #upload .filelist li.filePickerBlock div.webuploader-pick {
598
- width: 100%;
599
- height: 100%;
600
- margin: 0;
601
- padding: 0;
602
- opacity: 0;
603
- background: none;
604
- font-size: 0;
605
- }
606
-
607
- #upload .filelist div.file-panel {
608
- position: absolute;
609
- height: 0;
610
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#80000000', endColorstr='#80000000') \0;
611
- background: rgba(0, 0, 0, 0.5);
612
- width: 100%;
613
- top: 0;
614
- left: 0;
615
- overflow: hidden;
616
- z-index: 300;
617
- }
618
-
619
- #upload .filelist div.file-panel span {
620
- width: 24px;
621
- height: 24px;
622
- display: inline;
623
- float: right;
624
- text-indent: -9999px;
625
- overflow: hidden;
626
- background: url(./images/icons.png) no-repeat;
627
- background: url(./images/icons.gif) no-repeat \9;
628
- margin: 5px 1px 1px;
629
- cursor: pointer;
630
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
631
- -webkit-user-select: none;
632
- -moz-user-select: none;
633
- -ms-user-select: none;
634
- user-select: none;
635
- }
636
-
637
- #upload .filelist div.file-panel span.rotateLeft {
638
- display: none;
639
- background-position: 0 -24px;
640
- }
641
-
642
- #upload .filelist div.file-panel span.rotateLeft:hover {
643
- background-position: 0 0;
644
- }
645
-
646
- #upload .filelist div.file-panel span.rotateRight {
647
- display: none;
648
- background-position: -24px -24px;
649
- }
650
-
651
- #upload .filelist div.file-panel span.rotateRight:hover {
652
- background-position: -24px 0;
653
- }
654
-
655
- #upload .filelist div.file-panel span.cancel {
656
- background-position: -48px -24px;
657
- }
658
-
659
- #upload .filelist div.file-panel span.cancel:hover {
660
- background-position: -48px 0;
661
- }
662
-
663
- #upload .statusBar {
664
- height: 45px;
665
- border-bottom: 1px solid #dadada;
666
- margin: 0 10px;
667
- padding: 0;
668
- line-height: 45px;
669
- vertical-align: middle;
670
- position: relative;
671
- }
672
-
673
- #upload .statusBar .progress {
674
- border: 1px solid #1483d8;
675
- width: 198px;
676
- background: #fff;
677
- height: 18px;
678
- position: absolute;
679
- top: 12px;
680
- display: none;
681
- text-align: center;
682
- line-height: 18px;
683
- color: #6dbfff;
684
- margin: 0 10px 0 0;
685
- }
686
-
687
- #upload .statusBar .progress span.percentage {
688
- width: 0;
689
- height: 100%;
690
- left: 0;
691
- top: 0;
692
- background: #1483d8;
693
- position: absolute;
694
- }
695
-
696
- #upload .statusBar .progress span.text {
697
- position: relative;
698
- z-index: 10;
699
- }
700
-
701
- #upload .statusBar .info {
702
- display: inline-block;
703
- font-size: 14px;
704
- color: #666666;
705
- }
706
-
707
- #upload .statusBar .btns {
708
- position: absolute;
709
- top: 7px;
710
- right: 0;
711
- line-height: 30px;
712
- }
713
-
714
- #filePickerBtn {
715
- display: inline-block;
716
- float: left;
717
- }
718
-
719
- #upload .statusBar .btns .webuploader-pick,
720
- #upload .statusBar .btns .uploadBtn,
721
- #upload .statusBar .btns .uploadBtn.state-uploading,
722
- #upload .statusBar .btns .uploadBtn.state-paused {
723
- background: #ffffff;
724
- border: 1px solid #cfcfcf;
725
- color: #565656;
726
- padding: 0 18px;
727
- display: inline-block;
728
- border-radius: 3px;
729
- margin-left: 10px;
730
- cursor: pointer;
731
- font-size: 14px;
732
- float: left;
733
- -webkit-user-select: none;
734
- -moz-user-select: none;
735
- -ms-user-select: none;
736
- user-select: none;
737
- }
738
-
739
- #upload .statusBar .btns .webuploader-pick-hover,
740
- #upload .statusBar .btns .uploadBtn:hover,
741
- #upload .statusBar .btns .uploadBtn.state-uploading:hover,
742
- #upload .statusBar .btns .uploadBtn.state-paused:hover {
743
- background: #f0f0f0;
744
- }
745
-
746
- #upload .statusBar .btns .uploadBtn,
747
- #upload .statusBar .btns .uploadBtn.state-paused {
748
- background: #00b7ee;
749
- color: #fff;
750
- border-color: transparent;
751
- }
752
-
753
- #upload .statusBar .btns .uploadBtn:hover,
754
- #upload .statusBar .btns .uploadBtn.state-paused:hover {
755
- background: #00a2d4;
756
- }
757
-
758
- #upload .statusBar .btns .uploadBtn.disabled {
759
- pointer-events: none;
760
- filter: alpha(opacity=60);
761
- -moz-opacity: 0.6;
762
- -khtml-opacity: 0.6;
763
- opacity: 0.6;
764
- }
765
-
766
-
767
- /* 在线文件的文件预览图标 */
768
- i.file-preview {
769
- display: block;
770
- margin: 10px auto;
771
- width: 70px;
772
- height: 70px;
773
- background-image: url("./images/file-icons.png");
774
- background-image: url("./images/file-icons.gif") \9;
775
- background-position: -140px center;
776
- background-repeat: no-repeat;
777
- }
778
-
779
- i.file-preview.file-type-dir {
780
- background-position: 0 center;
781
- }
782
-
783
- i.file-preview.file-type-file {
784
- background-position: -140px center;
785
- }
786
-
787
- i.file-preview.file-type-filelist {
788
- background-position: -210px center;
789
- }
790
-
791
- i.file-preview.file-type-zip,
792
- i.file-preview.file-type-rar,
793
- i.file-preview.file-type-7z,
794
- i.file-preview.file-type-tar,
795
- i.file-preview.file-type-gz,
796
- i.file-preview.file-type-bz2 {
797
- background-position: -280px center;
798
- }
799
-
800
- i.file-preview.file-type-xls,
801
- i.file-preview.file-type-xlsx {
802
- background-position: -350px center;
803
- }
804
-
805
- i.file-preview.file-type-doc,
806
- i.file-preview.file-type-docx {
807
- background-position: -420px center;
808
- }
809
-
810
- i.file-preview.file-type-ppt,
811
- i.file-preview.file-type-pptx {
812
- background-position: -490px center;
813
- }
814
-
815
- i.file-preview.file-type-vsd {
816
- background-position: -560px center;
817
- }
818
-
819
- i.file-preview.file-type-pdf {
820
- background-position: -630px center;
821
- }
822
-
823
- i.file-preview.file-type-txt,
824
- i.file-preview.file-type-md,
825
- i.file-preview.file-type-json,
826
- i.file-preview.file-type-htm,
827
- i.file-preview.file-type-xml,
828
- i.file-preview.file-type-html,
829
- i.file-preview.file-type-js,
830
- i.file-preview.file-type-css,
831
- i.file-preview.file-type-php,
832
- i.file-preview.file-type-jsp,
833
- i.file-preview.file-type-asp {
834
- background-position: -700px center;
835
- }
836
-
837
- i.file-preview.file-type-apk {
838
- background-position: -770px center;
839
- }
840
-
841
- i.file-preview.file-type-exe {
842
- background-position: -840px center;
843
- }
844
-
845
- i.file-preview.file-type-ipa {
846
- background-position: -910px center;
847
- }
848
-
849
- i.file-preview.file-type-mp4,
850
- i.file-preview.file-type-swf,
851
- i.file-preview.file-type-mkv,
852
- i.file-preview.file-type-avi,
853
- i.file-preview.file-type-flv,
854
- i.file-preview.file-type-mov,
855
- i.file-preview.file-type-mpg,
856
- i.file-preview.file-type-mpeg,
857
- i.file-preview.file-type-ogv,
858
- i.file-preview.file-type-webm,
859
- i.file-preview.file-type-rm,
860
- i.file-preview.file-type-rmvb {
861
- background-position: -980px center;
862
- }
863
-
864
- i.file-preview.file-type-ogg,
865
- i.file-preview.file-type-wav,
866
- i.file-preview.file-type-wmv,
867
- i.file-preview.file-type-mid,
868
- i.file-preview.file-type-mp3 {
869
- background-position: -1050px center;
870
- }
871
-
872
- i.file-preview.file-type-jpg,
873
- i.file-preview.file-type-jpeg,
874
- i.file-preview.file-type-gif,
875
- i.file-preview.file-type-bmp,
876
- i.file-preview.file-type-png,
877
- i.file-preview.file-type-psd {
878
- background-position: -140px center;
879
- }
1
+ @charset "utf-8";
2
+ .wrapper {
3
+ width: 100%;
4
+ _width: 100%;
5
+ zoom: 1;
6
+ position: relative
7
+ }
8
+
9
+ #audio {
10
+ border-bottom: 1px solid #F0F0F0;
11
+ }
12
+
13
+ #audio .padding-8 {
14
+ box-sizing: border-box;
15
+ padding: 8px;
16
+ width: 100%;
17
+ }
18
+ #audio .padding-8 input {
19
+ box-sizing: border-box;
20
+ width: 100%;
21
+ height: 24px;
22
+ margin-top: 4px;
23
+ }
24
+
25
+ .tabbody {
26
+ height: 345px;
27
+ box-sizing: border-box;
28
+ }
29
+
30
+ .tabbody .panel {
31
+ position: absolute;
32
+ width: 0;
33
+ height: 0;
34
+ background: #fff;
35
+ overflow: hidden;
36
+ display: none;
37
+ }
38
+
39
+ .tabbody .panel.focus {
40
+ width: 100%;
41
+ height: 355px;
42
+ display: block;
43
+ }
44
+
45
+ .tabbody .panel table td {
46
+ vertical-align: middle;
47
+ }
48
+
49
+ #audioUrl {
50
+ width: 100%;
51
+ box-sizing: border-box;
52
+ height: 26px;
53
+ line-height: 26px;
54
+ margin: 8px 5px;
55
+ background: #FFF;
56
+ border: 1px solid #d7d7d7;
57
+ outline: none;
58
+ border-radius: 3px;
59
+ padding: 0 5px;
60
+ }
61
+
62
+ #audioSelect {
63
+ width: 100px;
64
+ display: inline-block;
65
+ background: #FFF;
66
+ border: 1px solid #EEE;
67
+ line-height: 26px;
68
+ text-align: center;
69
+ color: #333;
70
+ text-decoration: none;
71
+ border-radius: 3px;
72
+ vertical-align: middle;
73
+ }
74
+
75
+ #audioSearchTxt {
76
+ margin-left: 15px;
77
+ background: #FFF;
78
+ width: 200px;
79
+ height: 21px;
80
+ line-height: 21px;
81
+ border: 1px solid #d7d7d7;
82
+ }
83
+
84
+ #searchList {
85
+ width: 570px;
86
+ overflow: auto;
87
+ zoom: 1;
88
+ height: 270px;
89
+ }
90
+
91
+ #searchList div {
92
+ float: left;
93
+ width: 120px;
94
+ height: 135px;
95
+ margin: 5px 15px;
96
+ }
97
+
98
+ #searchList img {
99
+ margin: 2px 8px;
100
+ cursor: pointer;
101
+ border: 2px solid #fff
102
+ }
103
+
104
+ /*不用缩略图*/
105
+ #searchList p {
106
+ margin-left: 10px;
107
+ }
108
+
109
+ #audioType {
110
+ width: 65px;
111
+ height: 23px;
112
+ line-height: 22px;
113
+ border: 1px solid #d7d7d7;
114
+ }
115
+
116
+ #audioSearchBtn, #audioSearchReset {
117
+ /*width: 80px;*/
118
+ height: 25px;
119
+ line-height: 25px;
120
+ background: #eee;
121
+ border: 1px solid #d7d7d7;
122
+ cursor: pointer;
123
+ padding: 0 5px;
124
+ }
125
+
126
+
127
+ #preview {
128
+ position: relative;
129
+ width: 100%;
130
+ box-sizing: border-box;
131
+ padding: 0;
132
+ overflow: hidden;
133
+ height: 280px;
134
+ border-right: 1px solid #F2F3F5;
135
+ background-image: url('./icon/img.png');
136
+ background-size: 32px 32px;
137
+ background-repeat: no-repeat;
138
+ background-position: center center;
139
+ }
140
+
141
+ #preview .previewMsg {
142
+ position: absolute;
143
+ top: 0;
144
+ margin: 0;
145
+ padding: 0;
146
+ height: 280px;
147
+ width: 100%;
148
+ background-color: #666;
149
+ }
150
+
151
+ #preview .previewMsg span {
152
+ display: block;
153
+ margin: 125px auto 0 auto;
154
+ text-align: center;
155
+ font-size: 18px;
156
+ color: #fff;
157
+ }
158
+
159
+ #preview .previewaudio {
160
+ position: absolute;
161
+ top: 0;
162
+ margin: 0;
163
+ padding: 0;
164
+ height: 280px;
165
+ width: 100%;
166
+ }
167
+
168
+ .edui-audio-wrapper fieldset {
169
+ border: 1px solid #ddd;
170
+ padding-left: 5px;
171
+ margin-bottom: 20px;
172
+ padding-bottom: 5px;
173
+ width: 115px;
174
+ }
175
+
176
+ #audioInfo {
177
+ width: 120px;
178
+ float: left;
179
+ margin-left: 10px;
180
+ _margin-left: 7px;
181
+ }
182
+
183
+ fieldset {
184
+ border: 1px solid #ddd;
185
+ padding-left: 5px;
186
+ margin-bottom: 20px;
187
+ padding-bottom: 5px;
188
+ width: 115px;
189
+ }
190
+
191
+ fieldset legend {
192
+ font-weight: bold;
193
+ }
194
+
195
+ fieldset p {
196
+ line-height: 30px;
197
+ }
198
+
199
+ fieldset input.txt {
200
+ width: 65px;
201
+ height: 21px;
202
+ line-height: 21px;
203
+ margin: 8px 5px;
204
+ background: #FFF;
205
+ border: 1px solid #d7d7d7;
206
+ }
207
+
208
+ label.url {
209
+ font-weight: bold;
210
+ margin-left: 5px;
211
+ }
212
+
213
+ .container-box {
214
+ margin: 8px 16px;
215
+ }
216
+
217
+ .left {
218
+ flex: 1;
219
+ box-sizing: border-box;
220
+
221
+ }
222
+ .right {
223
+ width: 130px;
224
+ box-sizing: border-box;
225
+ }
226
+
227
+ /* 图片对齐方式 */
228
+ .alignBar {
229
+ position: relative;
230
+ }
231
+
232
+
233
+ .alignBar #audioFloat {
234
+ zoom: 1;
235
+ position: relative;
236
+ width: 100%;
237
+ border-radius: 4px;
238
+ height: 24px;
239
+ display: flex;
240
+ flex-direction: row;
241
+ justify-content: flex-start;
242
+ align-items: center;
243
+ margin-top: 4px;
244
+ }
245
+
246
+ .alignBar #audioFloat div {
247
+ box-sizing: border-box;
248
+ cursor: pointer;
249
+ display: block;
250
+ flex: 1;
251
+ height: 24px;
252
+ background-repeat: no-repeat;
253
+ background-size: 16px 16px;
254
+ background-position: center center;
255
+ border: 1px solid #DCDDE5;
256
+ }
257
+
258
+ .alignBar #audioFloat div:nth-child(1) {
259
+ border-top-left-radius: 4px;
260
+ border-bottom-left-radius: 4px;
261
+ }
262
+
263
+ .alignBar #audioFloat div:nth-child(4) {
264
+ border-top-right-radius: 4px;
265
+ border-bottom-right-radius: 4px;
266
+ }
267
+
268
+ .alignBar #audioFloat div.focus{
269
+ border-color: #417FFB;
270
+ }
271
+ span.view {
272
+ display: inline-block;
273
+ width: 30px;
274
+ float: right;
275
+ cursor: pointer;
276
+ color: blue
277
+ }
278
+
279
+
280
+ /* upload audio */
281
+ .tabbody #upload.panel {
282
+ width: 0;
283
+ height: 0;
284
+ overflow: hidden;
285
+ position: absolute !important;
286
+ clip: rect(1px, 1px, 1px, 1px);
287
+ background: #fff;
288
+ display: block;
289
+ }
290
+
291
+ .tabbody #upload.panel.focus {
292
+ width: 100%;
293
+ height: 335px;
294
+ display: block;
295
+ clip: auto;
296
+ }
297
+
298
+ #upload_alignment div {
299
+ cursor: pointer;
300
+ opacity: 0.5;
301
+ filter: alpha(opacity=50);
302
+ margin: 9px;
303
+ _margin: 5px;
304
+ width: 38px;
305
+ height: 36px;
306
+ float: left;
307
+ }
308
+
309
+ #upload_alignment .focus {
310
+ opacity: 1;
311
+ filter: alpha(opacity=100)
312
+ }
313
+
314
+ #upload_left {
315
+ width: 427px;
316
+ float: left;
317
+ }
318
+
319
+ #upload_left .controller {
320
+ height: 30px;
321
+ clear: both;
322
+ }
323
+
324
+ #uploadaudioInfo {
325
+ margin-top: 10px;
326
+ float: right;
327
+ padding-right: 8px;
328
+ }
329
+
330
+ #upload .queueList {
331
+ margin: 0;
332
+ }
333
+
334
+ #upload p {
335
+ margin: 0;
336
+ }
337
+
338
+ .element-invisible {
339
+ width: 0 !important;
340
+ height: 0 !important;
341
+ border: 0;
342
+ padding: 0;
343
+ margin: 0;
344
+ overflow: hidden;
345
+ position: absolute !important;
346
+ clip: rect(1px, 1px, 1px, 1px);
347
+ }
348
+
349
+ #upload .placeholder {
350
+ margin: 10px;
351
+ margin-right: 0;
352
+ border: 2px dashed #e6e6e6;
353
+ *border: 0px dashed #e6e6e6;
354
+ height: 161px;
355
+ padding-top: 150px;
356
+ text-align: center;
357
+ width: 97%;
358
+ float: left;
359
+ background: url(./images/image.png) center 70px no-repeat;
360
+ color: #cccccc;
361
+ font-size: 18px;
362
+ position: relative;
363
+ top: 0;
364
+ *margin-left: 0;
365
+ *left: 10px;
366
+ }
367
+
368
+ #upload .placeholder .webuploader-pick {
369
+ font-size: 18px;
370
+ background: #00b7ee;
371
+ border-radius: 3px;
372
+ line-height: 44px;
373
+ padding: 0 30px;
374
+ *width: 120px;
375
+ color: #fff;
376
+ display: inline-block;
377
+ margin: 0 auto 20px auto;
378
+ cursor: pointer;
379
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
380
+ }
381
+
382
+ #upload .placeholder .webuploader-pick-hover {
383
+ background: #00a2d4;
384
+ }
385
+
386
+
387
+ #filePickerContainer {
388
+ text-align: center;
389
+ }
390
+
391
+ #upload .placeholder .flashTip {
392
+ color: #666666;
393
+ font-size: 12px;
394
+ position: absolute;
395
+ width: 100%;
396
+ text-align: center;
397
+ bottom: 20px;
398
+ }
399
+
400
+ #upload .placeholder .flashTip a {
401
+ color: #0785d1;
402
+ text-decoration: none;
403
+ }
404
+
405
+ #upload .placeholder .flashTip a:hover {
406
+ text-decoration: underline;
407
+ }
408
+
409
+ #upload .placeholder.webuploader-dnd-over {
410
+ border-color: #999999;
411
+ }
412
+
413
+ #upload .filelist {
414
+ list-style: none;
415
+ margin: 0;
416
+ padding: 0;
417
+ overflow-x: hidden;
418
+ overflow-y: auto;
419
+ position: relative;
420
+ height: 285px;
421
+ }
422
+
423
+ #upload .filelist:after {
424
+ content: '';
425
+ display: block;
426
+ width: 0;
427
+ height: 0;
428
+ overflow: hidden;
429
+ clear: both;
430
+ }
431
+
432
+ #upload .filelist li {
433
+ width: 113px;
434
+ height: 113px;
435
+ background: url(./images/bg.png);
436
+ text-align: center;
437
+ margin: 15px 0 0 20px;
438
+ *margin: 15px 0 0 15px;
439
+ position: relative;
440
+ display: block;
441
+ float: left;
442
+ overflow: hidden;
443
+ font-size: 12px;
444
+ }
445
+
446
+ #upload .filelist li p.log {
447
+ position: relative;
448
+ top: -45px;
449
+ }
450
+
451
+ #upload .filelist li p.title {
452
+ position: absolute;
453
+ top: 0;
454
+ left: 0;
455
+ width: 100%;
456
+ overflow: hidden;
457
+ white-space: nowrap;
458
+ text-overflow: ellipsis;
459
+ top: 5px;
460
+ text-indent: 5px;
461
+ text-align: left;
462
+ }
463
+
464
+ #upload .filelist li p.progress {
465
+ position: absolute;
466
+ width: 100%;
467
+ bottom: 0;
468
+ left: 0;
469
+ height: 8px;
470
+ overflow: hidden;
471
+ z-index: 50;
472
+ margin: 0;
473
+ border-radius: 0;
474
+ background: none;
475
+ -webkit-box-shadow: 0 0 0;
476
+ }
477
+
478
+ #upload .filelist li p.progress span {
479
+ display: none;
480
+ overflow: hidden;
481
+ width: 0;
482
+ height: 100%;
483
+ background: #1483d8 url(./images/progress.png) repeat-x;
484
+
485
+ -webit-transition: width 200ms linear;
486
+ -moz-transition: width 200ms linear;
487
+ -o-transition: width 200ms linear;
488
+ -ms-transition: width 200ms linear;
489
+ transition: width 200ms linear;
490
+
491
+ -webkit-animation: progressmove 2s linear infinite;
492
+ -moz-animation: progressmove 2s linear infinite;
493
+ -o-animation: progressmove 2s linear infinite;
494
+ -ms-animation: progressmove 2s linear infinite;
495
+ animation: progressmove 2s linear infinite;
496
+
497
+ -webkit-transform: translateZ(0);
498
+ }
499
+
500
+ @-webkit-keyframes progressmove {
501
+ 0% {
502
+ background-position: 0 0;
503
+ }
504
+ 100% {
505
+ background-position: 17px 0;
506
+ }
507
+ }
508
+
509
+ @-moz-keyframes progressmove {
510
+ 0% {
511
+ background-position: 0 0;
512
+ }
513
+ 100% {
514
+ background-position: 17px 0;
515
+ }
516
+ }
517
+
518
+ @keyframes progressmove {
519
+ 0% {
520
+ background-position: 0 0;
521
+ }
522
+ 100% {
523
+ background-position: 17px 0;
524
+ }
525
+ }
526
+
527
+ #upload .filelist li p.imgWrap {
528
+ position: relative;
529
+ z-index: 2;
530
+ line-height: 113px;
531
+ vertical-align: middle;
532
+ overflow: hidden;
533
+ width: 113px;
534
+ height: 113px;
535
+
536
+ -webkit-transform-origin: 50% 50%;
537
+ -moz-transform-origin: 50% 50%;
538
+ -o-transform-origin: 50% 50%;
539
+ -ms-transform-origin: 50% 50%;
540
+ transform-origin: 50% 50%;
541
+
542
+ -webit-transition: 200ms ease-out;
543
+ -moz-transition: 200ms ease-out;
544
+ -o-transition: 200ms ease-out;
545
+ -ms-transition: 200ms ease-out;
546
+ transition: 200ms ease-out;
547
+ }
548
+
549
+ #upload .filelist li p.imgWrap.notimage {
550
+ margin-top: 0;
551
+ width: 111px;
552
+ height: 111px;
553
+ border: 1px #eeeeee solid;
554
+ }
555
+
556
+ #upload .filelist li p.imgWrap.notimage i.file-preview {
557
+ margin-top: 15px;
558
+ }
559
+
560
+ #upload .filelist li img {
561
+ width: 100%;
562
+ }
563
+
564
+ #upload .filelist li p.error {
565
+ background: #f43838;
566
+ color: #fff;
567
+ position: absolute;
568
+ bottom: 0;
569
+ left: 0;
570
+ height: 28px;
571
+ line-height: 28px;
572
+ width: 100%;
573
+ z-index: 100;
574
+ display: none;
575
+ }
576
+
577
+ #upload .filelist li .success {
578
+ display: block;
579
+ position: absolute;
580
+ left: 0;
581
+ bottom: 0;
582
+ height: 40px;
583
+ width: 100%;
584
+ z-index: 200;
585
+ background: url(./images/success.png) no-repeat right bottom;
586
+ background-image: url(./images/success.gif) \9;
587
+ }
588
+
589
+ #upload .filelist li.filePickerBlock {
590
+ width: 113px;
591
+ height: 113px;
592
+ background: url(./images/image.png) no-repeat center 12px;
593
+ border: 1px solid #eeeeee;
594
+ border-radius: 0;
595
+ }
596
+
597
+ #upload .filelist li.filePickerBlock div.webuploader-pick {
598
+ width: 100%;
599
+ height: 100%;
600
+ margin: 0;
601
+ padding: 0;
602
+ opacity: 0;
603
+ background: none;
604
+ font-size: 0;
605
+ }
606
+
607
+ #upload .filelist div.file-panel {
608
+ position: absolute;
609
+ height: 0;
610
+ filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#80000000', endColorstr='#80000000') \0;
611
+ background: rgba(0, 0, 0, 0.5);
612
+ width: 100%;
613
+ top: 0;
614
+ left: 0;
615
+ overflow: hidden;
616
+ z-index: 300;
617
+ }
618
+
619
+ #upload .filelist div.file-panel span {
620
+ width: 24px;
621
+ height: 24px;
622
+ display: inline;
623
+ float: right;
624
+ text-indent: -9999px;
625
+ overflow: hidden;
626
+ background: url(./images/icons.png) no-repeat;
627
+ background: url(./images/icons.gif) no-repeat \9;
628
+ margin: 5px 1px 1px;
629
+ cursor: pointer;
630
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
631
+ -webkit-user-select: none;
632
+ -moz-user-select: none;
633
+ -ms-user-select: none;
634
+ user-select: none;
635
+ }
636
+
637
+ #upload .filelist div.file-panel span.rotateLeft {
638
+ display: none;
639
+ background-position: 0 -24px;
640
+ }
641
+
642
+ #upload .filelist div.file-panel span.rotateLeft:hover {
643
+ background-position: 0 0;
644
+ }
645
+
646
+ #upload .filelist div.file-panel span.rotateRight {
647
+ display: none;
648
+ background-position: -24px -24px;
649
+ }
650
+
651
+ #upload .filelist div.file-panel span.rotateRight:hover {
652
+ background-position: -24px 0;
653
+ }
654
+
655
+ #upload .filelist div.file-panel span.cancel {
656
+ background-position: -48px -24px;
657
+ }
658
+
659
+ #upload .filelist div.file-panel span.cancel:hover {
660
+ background-position: -48px 0;
661
+ }
662
+
663
+ #upload .statusBar {
664
+ height: 45px;
665
+ border-bottom: 1px solid #dadada;
666
+ margin: 0 10px;
667
+ padding: 0;
668
+ line-height: 45px;
669
+ vertical-align: middle;
670
+ position: relative;
671
+ }
672
+
673
+ #upload .statusBar .progress {
674
+ border: 1px solid #1483d8;
675
+ width: 198px;
676
+ background: #fff;
677
+ height: 18px;
678
+ position: absolute;
679
+ top: 12px;
680
+ display: none;
681
+ text-align: center;
682
+ line-height: 18px;
683
+ color: #6dbfff;
684
+ margin: 0 10px 0 0;
685
+ }
686
+
687
+ #upload .statusBar .progress span.percentage {
688
+ width: 0;
689
+ height: 100%;
690
+ left: 0;
691
+ top: 0;
692
+ background: #1483d8;
693
+ position: absolute;
694
+ }
695
+
696
+ #upload .statusBar .progress span.text {
697
+ position: relative;
698
+ z-index: 10;
699
+ }
700
+
701
+ #upload .statusBar .info {
702
+ display: inline-block;
703
+ font-size: 14px;
704
+ color: #666666;
705
+ }
706
+
707
+ #upload .statusBar .btns {
708
+ position: absolute;
709
+ top: 7px;
710
+ right: 0;
711
+ line-height: 30px;
712
+ }
713
+
714
+ #filePickerBtn {
715
+ display: inline-block;
716
+ float: left;
717
+ }
718
+
719
+ #upload .statusBar .btns .webuploader-pick,
720
+ #upload .statusBar .btns .uploadBtn,
721
+ #upload .statusBar .btns .uploadBtn.state-uploading,
722
+ #upload .statusBar .btns .uploadBtn.state-paused {
723
+ background: #ffffff;
724
+ border: 1px solid #cfcfcf;
725
+ color: #565656;
726
+ padding: 0 18px;
727
+ display: inline-block;
728
+ border-radius: 3px;
729
+ margin-left: 10px;
730
+ cursor: pointer;
731
+ font-size: 14px;
732
+ float: left;
733
+ -webkit-user-select: none;
734
+ -moz-user-select: none;
735
+ -ms-user-select: none;
736
+ user-select: none;
737
+ }
738
+
739
+ #upload .statusBar .btns .webuploader-pick-hover,
740
+ #upload .statusBar .btns .uploadBtn:hover,
741
+ #upload .statusBar .btns .uploadBtn.state-uploading:hover,
742
+ #upload .statusBar .btns .uploadBtn.state-paused:hover {
743
+ background: #f0f0f0;
744
+ }
745
+
746
+ #upload .statusBar .btns .uploadBtn,
747
+ #upload .statusBar .btns .uploadBtn.state-paused {
748
+ background: #00b7ee;
749
+ color: #fff;
750
+ border-color: transparent;
751
+ }
752
+
753
+ #upload .statusBar .btns .uploadBtn:hover,
754
+ #upload .statusBar .btns .uploadBtn.state-paused:hover {
755
+ background: #00a2d4;
756
+ }
757
+
758
+ #upload .statusBar .btns .uploadBtn.disabled {
759
+ pointer-events: none;
760
+ filter: alpha(opacity=60);
761
+ -moz-opacity: 0.6;
762
+ -khtml-opacity: 0.6;
763
+ opacity: 0.6;
764
+ }
765
+
766
+
767
+ /* 在线文件的文件预览图标 */
768
+ i.file-preview {
769
+ display: block;
770
+ margin: 10px auto;
771
+ width: 70px;
772
+ height: 70px;
773
+ background-image: url("./images/file-icons.png");
774
+ background-image: url("./images/file-icons.gif") \9;
775
+ background-position: -140px center;
776
+ background-repeat: no-repeat;
777
+ }
778
+
779
+ i.file-preview.file-type-dir {
780
+ background-position: 0 center;
781
+ }
782
+
783
+ i.file-preview.file-type-file {
784
+ background-position: -140px center;
785
+ }
786
+
787
+ i.file-preview.file-type-filelist {
788
+ background-position: -210px center;
789
+ }
790
+
791
+ i.file-preview.file-type-zip,
792
+ i.file-preview.file-type-rar,
793
+ i.file-preview.file-type-7z,
794
+ i.file-preview.file-type-tar,
795
+ i.file-preview.file-type-gz,
796
+ i.file-preview.file-type-bz2 {
797
+ background-position: -280px center;
798
+ }
799
+
800
+ i.file-preview.file-type-xls,
801
+ i.file-preview.file-type-xlsx {
802
+ background-position: -350px center;
803
+ }
804
+
805
+ i.file-preview.file-type-doc,
806
+ i.file-preview.file-type-docx {
807
+ background-position: -420px center;
808
+ }
809
+
810
+ i.file-preview.file-type-ppt,
811
+ i.file-preview.file-type-pptx {
812
+ background-position: -490px center;
813
+ }
814
+
815
+ i.file-preview.file-type-vsd {
816
+ background-position: -560px center;
817
+ }
818
+
819
+ i.file-preview.file-type-pdf {
820
+ background-position: -630px center;
821
+ }
822
+
823
+ i.file-preview.file-type-txt,
824
+ i.file-preview.file-type-md,
825
+ i.file-preview.file-type-json,
826
+ i.file-preview.file-type-htm,
827
+ i.file-preview.file-type-xml,
828
+ i.file-preview.file-type-html,
829
+ i.file-preview.file-type-js,
830
+ i.file-preview.file-type-css,
831
+ i.file-preview.file-type-php,
832
+ i.file-preview.file-type-jsp,
833
+ i.file-preview.file-type-asp {
834
+ background-position: -700px center;
835
+ }
836
+
837
+ i.file-preview.file-type-apk {
838
+ background-position: -770px center;
839
+ }
840
+
841
+ i.file-preview.file-type-exe {
842
+ background-position: -840px center;
843
+ }
844
+
845
+ i.file-preview.file-type-ipa {
846
+ background-position: -910px center;
847
+ }
848
+
849
+ i.file-preview.file-type-mp4,
850
+ i.file-preview.file-type-swf,
851
+ i.file-preview.file-type-mkv,
852
+ i.file-preview.file-type-avi,
853
+ i.file-preview.file-type-flv,
854
+ i.file-preview.file-type-mov,
855
+ i.file-preview.file-type-mpg,
856
+ i.file-preview.file-type-mpeg,
857
+ i.file-preview.file-type-ogv,
858
+ i.file-preview.file-type-webm,
859
+ i.file-preview.file-type-rm,
860
+ i.file-preview.file-type-rmvb {
861
+ background-position: -980px center;
862
+ }
863
+
864
+ i.file-preview.file-type-ogg,
865
+ i.file-preview.file-type-wav,
866
+ i.file-preview.file-type-wmv,
867
+ i.file-preview.file-type-mid,
868
+ i.file-preview.file-type-mp3 {
869
+ background-position: -1050px center;
870
+ }
871
+
872
+ i.file-preview.file-type-jpg,
873
+ i.file-preview.file-type-jpeg,
874
+ i.file-preview.file-type-gif,
875
+ i.file-preview.file-type-bmp,
876
+ i.file-preview.file-type-png,
877
+ i.file-preview.file-type-psd {
878
+ background-position: -140px center;
879
+ }