@lingxiteam/lcdp-ueditor-react 1.0.0-alpha.2 → 1.0.0-alpha.20

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