@cmstops/pro-compo 0.1.8 → 0.1.9

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 (114) hide show
  1. package/dist/index.css +857 -0
  2. package/dist/index.min.css +1 -1
  3. package/es/appCenter/script/routeMap.d.ts +1 -1
  4. package/es/config.d.ts +1 -1
  5. package/es/config.js +2 -2
  6. package/es/contentModal/component.js +5 -2
  7. package/es/contentModal/components/CompoList/index.js +12 -1
  8. package/es/contentModal/components/storeBox/index.js +1 -1
  9. package/es/index.css +857 -0
  10. package/es/index.d.ts +2 -0
  11. package/es/index.js +2 -0
  12. package/es/index.less +2 -0
  13. package/es/previousVersion/component.d.ts +0 -0
  14. package/es/previousVersion/component.js +378 -0
  15. package/es/previousVersion/index.d.ts +2 -0
  16. package/es/previousVersion/index.js +7 -0
  17. package/es/previousVersion/script/api.d.ts +15 -0
  18. package/es/previousVersion/script/api.js +39 -0
  19. package/es/previousVersion/script/tool.d.ts +6 -0
  20. package/es/previousVersion/script/tool.js +22 -0
  21. package/es/previousVersion/style/css.js +1 -0
  22. package/es/previousVersion/style/index.css +166 -0
  23. package/es/previousVersion/style/index.d.ts +1 -0
  24. package/es/previousVersion/style/index.js +1 -0
  25. package/es/previousVersion/style/index.less +208 -0
  26. package/es/resourceModal/assets/images/unknown.js +2 -0
  27. package/es/resourceModal/assets/selection/null.js +2 -0
  28. package/es/resourceModal/component.js +65 -4
  29. package/es/resourceModal/components/MediaPreviewer/index.d.ts +0 -0
  30. package/es/resourceModal/components/MediaPreviewer/index.js +69 -0
  31. package/es/resourceModal/components/MediaSelection/DocAiMediaSelected/index.d.ts +0 -0
  32. package/es/resourceModal/components/MediaSelection/DocAiMediaSelected/index.js +111 -0
  33. package/es/resourceModal/components/MediaSelection/MainContent/FileTypeThumb/index.d.ts +0 -0
  34. package/es/resourceModal/components/MediaSelection/MainContent/FileTypeThumb/index.js +85 -0
  35. package/es/resourceModal/components/MediaSelection/MainContent/index.d.ts +0 -0
  36. package/es/resourceModal/components/MediaSelection/MainContent/index.js +171 -0
  37. package/es/resourceModal/components/MediaSelection/ToolbarSearch/index.d.ts +0 -0
  38. package/es/resourceModal/components/MediaSelection/ToolbarSearch/index.js +211 -0
  39. package/es/resourceModal/components/MediaSelection/index.d.ts +0 -0
  40. package/es/resourceModal/components/MediaSelection/index.js +272 -0
  41. package/es/resourceModal/script/api.d.ts +8 -0
  42. package/es/resourceModal/script/api.js +30 -0
  43. package/es/resourceModal/script/filter.d.ts +8 -0
  44. package/es/resourceModal/script/filter.js +22 -0
  45. package/es/resourceModal/script/mediaSelection.d.ts +10 -0
  46. package/es/resourceModal/style/DocAiMediaSelected.less +56 -0
  47. package/es/resourceModal/style/FileTypeThumb.less +183 -0
  48. package/es/resourceModal/style/MainContent.less +200 -0
  49. package/es/resourceModal/style/MediaPreviewer.less +71 -0
  50. package/es/resourceModal/style/MediaSelection.less +59 -0
  51. package/es/resourceModal/style/ToolbarSearch.less +40 -0
  52. package/es/resourceModal/style/index.css +514 -3
  53. package/es/resourceModal/style/index.less +16 -3
  54. package/es/selectGategory/component.d.ts +0 -0
  55. package/es/selectGategory/component.js +95 -0
  56. package/es/selectGategory/components/ColumnSelection/index.d.ts +0 -0
  57. package/es/selectGategory/components/ColumnSelection/index.js +273 -0
  58. package/es/selectGategory/index.d.ts +2 -0
  59. package/es/selectGategory/index.js +7 -0
  60. package/es/selectGategory/script/api.d.ts +6 -0
  61. package/es/selectGategory/script/api.js +15 -0
  62. package/es/selectGategory/style/ColumnSelection.less +190 -0
  63. package/es/selectGategory/style/css.js +1 -0
  64. package/es/selectGategory/style/index.css +180 -0
  65. package/es/selectGategory/style/index.d.ts +1 -0
  66. package/es/selectGategory/style/index.js +1 -0
  67. package/es/selectGategory/style/index.less +40 -0
  68. package/es/utils/doc.d.ts +69 -0
  69. package/es/utils/typeMap.js +2 -1
  70. package/lib/config.js +2 -2
  71. package/lib/contentModal/component.js +5 -2
  72. package/lib/contentModal/components/CompoList/index.js +11 -0
  73. package/lib/contentModal/components/storeBox/index.js +1 -1
  74. package/lib/index.css +857 -0
  75. package/lib/index.js +4 -0
  76. package/lib/index.less +2 -0
  77. package/lib/previousVersion/component.js +379 -0
  78. package/lib/previousVersion/index.js +8 -0
  79. package/lib/previousVersion/script/api.js +43 -0
  80. package/lib/previousVersion/script/tool.js +24 -0
  81. package/lib/previousVersion/style/css.js +2 -0
  82. package/lib/previousVersion/style/index.css +166 -0
  83. package/lib/previousVersion/style/index.js +2 -0
  84. package/lib/previousVersion/style/index.less +208 -0
  85. package/lib/resourceModal/assets/images/unknown.js +3 -0
  86. package/lib/resourceModal/assets/selection/null.js +3 -0
  87. package/lib/resourceModal/component.js +64 -3
  88. package/lib/resourceModal/components/MediaPreviewer/index.js +70 -0
  89. package/lib/resourceModal/components/MediaSelection/DocAiMediaSelected/index.js +112 -0
  90. package/lib/resourceModal/components/MediaSelection/MainContent/FileTypeThumb/index.js +86 -0
  91. package/lib/resourceModal/components/MediaSelection/MainContent/index.js +172 -0
  92. package/lib/resourceModal/components/MediaSelection/ToolbarSearch/index.js +212 -0
  93. package/lib/resourceModal/components/MediaSelection/index.js +273 -0
  94. package/lib/resourceModal/script/api.js +35 -0
  95. package/lib/resourceModal/script/filter.js +25 -0
  96. package/lib/resourceModal/style/DocAiMediaSelected.less +56 -0
  97. package/lib/resourceModal/style/FileTypeThumb.less +183 -0
  98. package/lib/resourceModal/style/MainContent.less +200 -0
  99. package/lib/resourceModal/style/MediaPreviewer.less +71 -0
  100. package/lib/resourceModal/style/MediaSelection.less +59 -0
  101. package/lib/resourceModal/style/ToolbarSearch.less +40 -0
  102. package/lib/resourceModal/style/index.css +514 -3
  103. package/lib/resourceModal/style/index.less +16 -3
  104. package/lib/selectGategory/component.js +96 -0
  105. package/lib/selectGategory/components/ColumnSelection/index.js +274 -0
  106. package/lib/selectGategory/index.js +8 -0
  107. package/lib/selectGategory/script/api.js +18 -0
  108. package/lib/selectGategory/style/ColumnSelection.less +190 -0
  109. package/lib/selectGategory/style/css.js +2 -0
  110. package/lib/selectGategory/style/index.css +180 -0
  111. package/lib/selectGategory/style/index.js +2 -0
  112. package/lib/selectGategory/style/index.less +40 -0
  113. package/lib/utils/typeMap.js +2 -1
  114. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -319,7 +319,864 @@
319
319
  .add-content-modal-body .arco-tabs-content {
320
320
  padding-top: 0;
321
321
  }
322
+ .media-selection {
323
+ width: 100%;
324
+ height: 100%;
325
+ -webkit-user-select: none;
326
+ -moz-user-select: none;
327
+ }
328
+ .media-selection .media-selection-section {
329
+ width: 100%;
330
+ height: 100%;
331
+ }
332
+ .media-selection .media-selection-section .components-title {
333
+ display: flex;
334
+ align-items: center;
335
+ justify-content: space-between;
336
+ height: 40px;
337
+ }
338
+ .media-selection .media-selection-section .components-title .media-tabs {
339
+ width: 100%;
340
+ min-width: 350px;
341
+ margin-top: 15px;
342
+ }
343
+ .media-selection .media-selection-section .components-title .media-tabs .arco-tabs-nav-tab {
344
+ padding-left: 5px;
345
+ }
346
+ .media-selection .media-selection-section .resources .simple-resources {
347
+ height: 100%;
348
+ }
349
+ .media-selection .media-selection-section .resources .simple-resources .directory-breadcrumb {
350
+ display: flex;
351
+ align-items: center;
352
+ justify-content: space-between;
353
+ }
354
+ .media-selection .media-selection-section .resources .simple-resources .directory-breadcrumb .tool-search-box {
355
+ width: 100%;
356
+ padding: 10px 20px 20px;
357
+ }
358
+ .media-selection .media-selection-section .resources .simple-resources .directory-breadcrumb .tool-search-box .back {
359
+ margin-right: 10px;
360
+ }
361
+ .media-selection .media-selection-section .resources .simple-resources .breadcrumb {
362
+ margin: 10px 20px;
363
+ font-size: 14px;
364
+ }
365
+ .media-selection .media-selection-section .resources .simple-resources .breadcrumb .breadcrumbItem {
366
+ cursor: pointer;
367
+ }
368
+ .doc-ai-media-selected {
369
+ height: 100%;
370
+ }
371
+ .doc-ai-media-selected .arco-scrollbar {
372
+ height: 100%;
373
+ }
374
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar {
375
+ height: 100%;
376
+ overflow: auto;
377
+ }
378
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb_type {
379
+ margin: 20px 0 10px 20px;
380
+ }
381
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list {
382
+ display: flex;
383
+ flex-wrap: wrap;
384
+ align-items: center;
385
+ margin-left: 18px;
386
+ }
387
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list .thumb-wrap {
388
+ width: 20%;
389
+ height: 100px;
390
+ margin-bottom: 20px;
391
+ }
392
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list .thumb-wrap .thumb-item {
393
+ height: 100%;
394
+ margin-right: 20px;
395
+ }
396
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list .thumb-wrap .thumb-item .pic {
397
+ position: relative;
398
+ width: 100%;
399
+ height: 100%;
400
+ overflow: hidden;
401
+ border: solid 3px transparent;
402
+ border-radius: 4px;
403
+ }
404
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list .thumb-wrap .thumb-item .pic.active {
405
+ border: solid 3px #4886ff;
406
+ border-radius: 4px;
407
+ }
408
+ .doc-ai-media-selected .arco-scrollbar .doc-ai-media-selected-scrollbar .thumb-list .thumb-wrap .thumb-item .pic img {
409
+ display: block;
410
+ width: 100%;
411
+ height: 100%;
412
+ object-fit: cover;
413
+ }
414
+ .toolbar-search-container {
415
+ width: 100%;
416
+ }
417
+ .toolbar-search-container .top-container {
418
+ display: flex;
419
+ }
420
+ .toolbar-search-container .top-container .filter-content {
421
+ display: flex;
422
+ align-items: center;
423
+ justify-content: space-between;
424
+ width: 100%;
425
+ }
426
+ .toolbar-search-container .top-container .filter-content .filter-item {
427
+ width: auto;
428
+ margin-right: 10px;
429
+ }
430
+ .keywordsSelection {
431
+ display: flex;
432
+ justify-content: space-between;
433
+ width: 100%;
434
+ padding-top: 10px;
435
+ }
436
+ .keywordsSelection .selection-item {
437
+ padding: 8px 20px;
438
+ }
439
+ .keywordsSelection .selection-item:hover {
440
+ cursor: pointer;
441
+ }
442
+ .keywordsSelection .selection-item.active {
443
+ color: #3a65ff;
444
+ background: #f2f3f8;
445
+ border-radius: 15px;
446
+ }
447
+ .simple-resources .arco-scrollbar {
448
+ height: 100%;
449
+ }
450
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll {
451
+ height: 100%;
452
+ overflow: auto;
453
+ }
454
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list {
455
+ display: flex;
456
+ flex-wrap: wrap;
457
+ padding-left: 20px;
458
+ }
459
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item {
460
+ width: 20%;
461
+ cursor: pointer;
462
+ }
463
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap {
464
+ margin: 0 20px 10px 0;
465
+ background: #fff;
466
+ border: 1px solid #ebeef5;
467
+ border-radius: 4px;
468
+ }
469
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap:hover,
470
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap.active {
471
+ background: #ecf2ff;
472
+ }
473
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap:hover .thumb,
474
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap.active .thumb {
475
+ border-color: #4886ff;
476
+ transition: ease-out 0.3s;
477
+ }
478
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap:hover h4,
479
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap.active h4 {
480
+ color: #1a67d2;
481
+ }
482
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap .thumb {
483
+ height: 46px;
484
+ overflow: hidden;
485
+ font-size: 0;
486
+ background: url('../assets/selection/folder.png') no-repeat 13px center;
487
+ background-size: 17px auto;
488
+ border: solid 2px transparent;
489
+ border-radius: 4px;
490
+ }
491
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .folder-list .folder-item .wrap h4 {
492
+ margin: 0;
493
+ padding-left: 43px;
494
+ overflow: hidden;
495
+ color: #000;
496
+ font-weight: normal;
497
+ font-size: 14px;
498
+ line-height: 42px;
499
+ white-space: nowrap;
500
+ text-overflow: ellipsis;
501
+ word-wrap: normal;
502
+ opacity: 0.85;
503
+ }
504
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list {
505
+ display: flex;
506
+ flex-wrap: wrap;
507
+ padding-left: 20px;
508
+ }
509
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item {
510
+ position: relative;
511
+ width: 20%;
512
+ overflow: hidden;
513
+ cursor: pointer;
514
+ }
515
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .move-action {
516
+ opacity: 0.5;
517
+ }
518
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap {
519
+ position: relative;
520
+ margin: 0 20px 18px 0;
521
+ overflow: hidden;
522
+ background: #fff;
523
+ border: 1px solid #ebeef5;
524
+ border-radius: 4px;
525
+ }
526
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap:hover {
527
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
528
+ }
529
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap.active {
530
+ border: 2px solid #4886ff;
531
+ }
532
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap.active h4 {
533
+ color: #1a67d2;
534
+ }
535
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap .transcoding-in-progress {
536
+ position: absolute;
537
+ top: 0;
538
+ display: flex;
539
+ align-items: center;
540
+ justify-content: center;
541
+ width: 100%;
542
+ height: 100%;
543
+ color: floralwhite;
544
+ background: rgba(0, 0, 0, 0.3);
545
+ }
546
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap .thumb-wrap {
547
+ position: relative;
548
+ width: 100%;
549
+ background: url('../assets/selection/picBg.png');
550
+ }
551
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4,
552
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p {
553
+ margin-top: 4px;
554
+ margin-bottom: 2px;
555
+ padding: 0 10px;
556
+ overflow: hidden;
557
+ color: rgba(0, 0, 0, 0.85);
558
+ font-size: 14px;
559
+ white-space: nowrap;
560
+ text-overflow: ellipsis;
561
+ word-wrap: normal;
562
+ }
563
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4 i,
564
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p i,
565
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4 svg,
566
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p svg {
567
+ margin-right: 4px;
568
+ color: #e75258;
569
+ font-size: 16px;
570
+ vertical-align: middle;
571
+ }
572
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4 svg,
573
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p svg {
574
+ margin-right: 4px;
575
+ font-size: 16px;
576
+ vertical-align: middle;
577
+ }
578
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4 span,
579
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p span {
580
+ vertical-align: middle;
581
+ }
582
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p {
583
+ margin-bottom: 4px;
584
+ font-weight: normal;
585
+ font-size: 12px;
586
+ line-height: 1em;
587
+ opacity: 0.65;
588
+ }
589
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list::after {
590
+ height: 50px;
591
+ }
592
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .load_more_title {
593
+ display: flex;
594
+ align-items: center;
595
+ justify-content: center;
596
+ width: 100%;
597
+ height: 40px;
598
+ }
599
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .load_more_title .loadmore_tips,
600
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .load_more_title .nomore_tips {
601
+ color: #949494;
602
+ }
603
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .null-file {
604
+ position: absolute;
605
+ top: 50%;
606
+ left: 50%;
607
+ transform: translate(-50%, -70%);
608
+ }
609
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .null-file .null-pic {
610
+ display: block;
611
+ width: 30%;
612
+ margin: 20px auto;
613
+ }
614
+ .simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .null-file p {
615
+ color: #a2a3a7;
616
+ font-size: 14px;
617
+ text-align: center;
618
+ }
619
+ .file-type-thumb {
620
+ position: relative;
621
+ width: 100%;
622
+ }
623
+ .file-type-thumb:hover .mask {
624
+ display: flex;
625
+ }
626
+ .file-type-thumb .mask {
627
+ position: absolute;
628
+ top: 0;
629
+ display: none;
630
+ align-items: center;
631
+ justify-content: center;
632
+ width: 100%;
633
+ height: 100%;
634
+ color: #eaeaea;
635
+ font-size: 18px;
636
+ background: rgba(0, 0, 0, 0.3);
637
+ }
638
+ .file-type-thumb .mask i {
639
+ display: inline-block;
640
+ cursor: pointer;
641
+ }
642
+ .file-type-thumb .mask i:active {
643
+ opacity: 0.4;
644
+ }
645
+ .file-type-thumb .mask .half {
646
+ display: flex;
647
+ align-items: center;
648
+ justify-content: center;
649
+ width: 48%;
650
+ height: 100%;
651
+ }
652
+ .file-type-thumb .mask .half:hover {
653
+ cursor: pointer;
654
+ opacity: 0.7;
655
+ }
656
+ .file-type-thumb .mask .el-divider {
657
+ margin: 0;
658
+ opacity: 0.4;
659
+ }
660
+ .file-type-thumb .transparent {
661
+ position: absolute;
662
+ top: 0;
663
+ width: 100%;
664
+ height: 100%;
665
+ }
666
+ .file-type-thumb .transparent:hover {
667
+ cursor: pointer;
668
+ }
669
+ .file-type-thumb .pic {
670
+ width: 100%;
671
+ padding-top: 56.25%;
672
+ background-color: #fff;
673
+ background-image: url('../assets/images/unknown.png');
674
+ background-repeat: no-repeat;
675
+ background-repeat: repeat-x;
676
+ background-position: top;
677
+ background-size: cover;
678
+ }
679
+ .file-type-thumb .pic:hover {
680
+ transform: scale(1.02);
681
+ transition: ease-out 0.4s;
682
+ }
683
+ .file-type-thumb .audio {
684
+ background-image: url('../assets/images/music.png') !important;
685
+ }
686
+ .file-type-thumb .audio.doc {
687
+ background-image: url('../assets/images/draf.png') !important;
688
+ }
689
+ .file-type-thumb .project {
690
+ background-image: url('../assets/images/project1.png') !important;
691
+ }
692
+ .file-type-thumb .doc {
693
+ background-image: url('../assets/images/draf.png');
694
+ }
695
+ .file-type-thumb .link {
696
+ background-image: url('../assets/images/link.png');
697
+ }
698
+ .file-type-thumb .sp_topic {
699
+ background-image: url('../assets/images/link.png');
700
+ }
701
+ .file-type-thumb .live {
702
+ background-image: url('../assets/images/live.png');
703
+ }
704
+ .file-type-thumb .pdf {
705
+ background-image: url('../assets/images/pdf.png') !important;
706
+ }
707
+ .file-type-thumb .officeexcel {
708
+ background-image: url('../assets/images/excel.png') !important;
709
+ }
710
+ .file-type-thumb .officeppt {
711
+ background-image: url('../assets/images/ppt.png') !important;
712
+ }
713
+ .file-type-thumb .zip {
714
+ background-image: url('../assets/images/zip.png') !important;
715
+ }
716
+ .file-type-thumb .rar {
717
+ background-image: url('../assets/images/rar.png') !important;
718
+ }
719
+ .file-type-thumb .txt {
720
+ background-image: url('../assets/images/txt.png') !important;
721
+ }
722
+ .file-type-thumb .exe {
723
+ background-image: url('../assets/images/exe.png') !important;
724
+ }
725
+ .file-type-thumb .html {
726
+ background-image: url('../assets/images/html.png') !important;
727
+ }
728
+ .file-type-thumb .officedoc {
729
+ background-image: url('../assets/images/word.png') !important;
730
+ }
731
+ .file-type-thumb .wechat {
732
+ background-image: url('../assets/images/wechat.png') !important;
733
+ }
734
+ .file-type-thumb .h5 {
735
+ background-image: url('../assets/images/h5.png') !important;
736
+ }
737
+ .file-type-thumb .ad {
738
+ background-image: url('../assets/images/ad.png') !important;
739
+ }
740
+ .file-type-thumb .booklink {
741
+ background-image: url('../assets/images/booklink.png') !important;
742
+ }
743
+ .file-type-thumb .activity {
744
+ background-image: url('../assets/images/activity.png') !important;
745
+ }
746
+ .file-type-thumb .svideo {
747
+ background-image: url('../assets/images/svideo.png') !important;
748
+ }
749
+ .file-type-thumb .cloud_lottery {
750
+ background-image: url('../assets/images/cloud_lottery.png') !important;
751
+ }
752
+ .file-type-thumb .cloud_form {
753
+ background-image: url('../assets/images/cloud_form.png') !important;
754
+ }
755
+ .file-type-thumb .illegal-media-warning {
756
+ position: absolute;
757
+ top: 0;
758
+ width: 100%;
759
+ height: 100%;
760
+ background-color: rgba(0, 0, 0, 0.65);
761
+ background-image: url('../assets/images/unknown.png');
762
+ background-repeat: no-repeat;
763
+ background-position: center;
764
+ background-size: 30%;
765
+ }
766
+ .media-previewer {
767
+ position: fixed;
768
+ top: 0;
769
+ left: 0;
770
+ z-index: 100;
771
+ width: 100%;
772
+ height: 100%;
773
+ background-color: rgba(0, 0, 0, 0.3);
774
+ }
775
+ .media-previewer .viewer-close {
776
+ position: absolute;
777
+ top: 36px;
778
+ right: 36px;
779
+ z-index: 99999;
780
+ display: flex;
781
+ align-items: center;
782
+ justify-content: center;
783
+ width: 32px;
784
+ height: 32px;
785
+ color: #fff;
786
+ font-size: 14px;
787
+ line-height: 32px;
788
+ text-align: center;
789
+ background: rgba(0, 0, 0, 0.5);
790
+ border-radius: 50%;
791
+ cursor: pointer;
792
+ }
793
+ .media-previewer .viewer-canvas {
794
+ display: -webkit-box;
795
+ display: flex;
796
+ align-items: center;
797
+ justify-content: center;
798
+ width: 100%;
799
+ height: 100%;
800
+ -webkit-box-pack: center;
801
+ -webkit-box-align: center;
802
+ }
803
+ .media-previewer .viewer-canvas .video {
804
+ z-index: 101;
805
+ width: 1000px;
806
+ max-height: 90vh;
807
+ object-fit: contain;
808
+ overflow: clip;
809
+ overflow-clip-margin: content-box;
810
+ }
811
+ .media-previewer .viewer-canvas .audio {
812
+ width: 400px;
813
+ height: 54px;
814
+ }
815
+ .media-previewer .viewer-canvas .other {
816
+ display: flex;
817
+ flex-direction: column;
818
+ align-items: center;
819
+ width: 240px;
820
+ height: 200px;
821
+ }
822
+ .media-previewer .viewer-canvas .other img {
823
+ width: 100%;
824
+ height: 100%;
825
+ }
826
+ .media-previewer .viewer-canvas .other .text {
827
+ color: #fff;
828
+ font-size: 18px;
829
+ }
830
+ .select-resources-modal-wrapper .arco-modal-header {
831
+ border-bottom: none;
832
+ }
833
+ .select-resources-modal-body {
834
+ height: 70vh;
835
+ padding: 0;
836
+ }
837
+ .previous-version-modal-body {
838
+ padding: 0;
839
+ }
322
840
  .tooltip-button {
323
841
  height: auto;
324
842
  padding: 20px;
325
843
  }
844
+ .content-main {
845
+ display: flex;
846
+ flex-direction: column;
847
+ }
848
+ .content-main .select-view {
849
+ display: flex;
850
+ flex-wrap: nowrap;
851
+ height: calc(60vh - 106px);
852
+ overflow-x: auto;
853
+ }
854
+ .content-main .select-view .col-view {
855
+ flex-shrink: 0;
856
+ height: 100%;
857
+ overflow: auto;
858
+ border-right: 1px solid #ebeef5;
859
+ }
860
+ .content-main .select-view .col-view .row {
861
+ display: flex;
862
+ align-items: center;
863
+ justify-content: space-between;
864
+ padding: 14px 20px 14px 24px;
865
+ cursor: pointer;
866
+ }
867
+ .content-main .select-view .col-view .row.active,
868
+ .content-main .select-view .col-view .row:hover {
869
+ background-color: #f2f3f5;
870
+ }
871
+ .content-main .select-view .col-view .row .left,
872
+ .content-main .select-view .col-view .row .right {
873
+ display: flex;
874
+ align-items: center;
875
+ }
876
+ .content-main .select-view .col-view .row .left {
877
+ margin-right: 20px;
878
+ }
879
+ .content-main .select-view .col-view .row .img-icon {
880
+ width: 20px;
881
+ margin-right: 10px;
882
+ border-radius: 50%;
883
+ }
884
+ .content-main .select-view .col-view .row .icon {
885
+ margin-right: 10px;
886
+ }
887
+ .content-main .select-view .col-view .row .alias {
888
+ display: inline-block;
889
+ max-width: 150px;
890
+ overflow: hidden;
891
+ white-space: nowrap;
892
+ text-overflow: ellipsis;
893
+ }
894
+ .content-main .temp-view {
895
+ flex-shrink: 0;
896
+ max-height: 150px;
897
+ padding: 16px 24px;
898
+ border-top: 1px solid #ebeef5;
899
+ }
900
+ .content-main .temp-view .title {
901
+ padding-bottom: 12px;
902
+ font-weight: 500;
903
+ }
904
+ .content-main .temp-view .select-ul {
905
+ display: flex;
906
+ flex-wrap: wrap;
907
+ align-items: center;
908
+ }
909
+ .content-main .temp-view .select-ul .select-li {
910
+ margin-bottom: 12px;
911
+ padding: 2px 8px;
912
+ color: #1d2129;
913
+ background-color: #f2f3f5;
914
+ }
915
+ .content-main .temp-view .select-ul .select-li + .select-li {
916
+ margin-left: 15px;
917
+ }
918
+ .previous-version .select-view {
919
+ display: flex;
920
+ flex-wrap: nowrap;
921
+ height: calc(60vh - 106px);
922
+ overflow-x: auto;
923
+ }
924
+ .previous-version .select-view .view-line {
925
+ flex-shrink: 0;
926
+ height: 100%;
927
+ overflow-y: auto;
928
+ border-right: 1px solid #ebeef5;
929
+ }
930
+ .previous-version .select-view .view-line.line1 {
931
+ width: 150px;
932
+ }
933
+ .previous-version .select-view .view-line.line2 {
934
+ width: 170px;
935
+ }
936
+ .previous-version .select-view .view-line.line3 {
937
+ width: 196px;
938
+ }
939
+ .previous-version .select-view .view-line .row {
940
+ display: flex;
941
+ align-items: center;
942
+ justify-content: space-between;
943
+ padding: 14px 20px 14px 24px;
944
+ cursor: pointer;
945
+ }
946
+ .previous-version .select-view .view-line .row.active,
947
+ .previous-version .select-view .view-line .row:hover {
948
+ background-color: #f2f3f5;
949
+ }
950
+ .previous-version .select-view .view-line .row .left,
951
+ .previous-version .select-view .view-line .row .right {
952
+ display: flex;
953
+ align-items: center;
954
+ }
955
+ .previous-version .select-view .view-line .row .left {
956
+ margin-right: 20px;
957
+ }
958
+ .previous-version .select-view .view-line .row .right {
959
+ font-size: 18px;
960
+ }
961
+ .previous-version .select-view .view-line .row .img-icon {
962
+ width: 20px;
963
+ margin-right: 10px;
964
+ border-radius: 50%;
965
+ }
966
+ .previous-version .select-view .view-line .row .icon {
967
+ margin-right: 10px;
968
+ }
969
+ .previous-version .select-view .view-line .row .alias {
970
+ display: inline-block;
971
+ max-width: 150px;
972
+ overflow: hidden;
973
+ white-space: nowrap;
974
+ text-overflow: ellipsis;
975
+ }
976
+ .previous-version .select-view .view-line .row .alias .icon {
977
+ margin-right: 5px;
978
+ }
979
+ .previous-version .temp-view {
980
+ flex-shrink: 0;
981
+ max-height: 150px;
982
+ padding: 16px 24px;
983
+ border-top: 1px solid #ebeef5;
984
+ }
985
+ .previous-version .temp-view .title {
986
+ padding-bottom: 12px;
987
+ font-weight: 500;
988
+ }
989
+ .previous-version .temp-view .select-ul {
990
+ display: flex;
991
+ flex-wrap: wrap;
992
+ align-items: center;
993
+ }
994
+ .previous-version .temp-view .select-ul .select-li {
995
+ margin-bottom: 12px;
996
+ padding: 2px 8px;
997
+ color: #1d2129;
998
+ background-color: #f2f3f5;
999
+ }
1000
+ .previous-version .temp-view .select-ul .select-li + .select-li {
1001
+ margin-left: 15px;
1002
+ }
1003
+ .column-selection-container {
1004
+ padding: 0;
1005
+ cursor: pointer;
1006
+ }
1007
+ @mixin ellipsis {
1008
+ overflow: hidden;
1009
+ white-space: nowrap;
1010
+ text-overflow: ellipsis;
1011
+ }
1012
+ .column-selection-container.single .column-select {
1013
+ position: relative;
1014
+ max-width: 250px;
1015
+ padding-right: 35px;
1016
+ font-weight: 500;
1017
+ }
1018
+ .column-selection-container.single .column-select .right-icon {
1019
+ position: absolute;
1020
+ top: 7px;
1021
+ right: 15px;
1022
+ }
1023
+ .column-selection-container.single .column-select.add {
1024
+ color: #86909c;
1025
+ text-align: center;
1026
+ background: #f3f4f5;
1027
+ border: none;
1028
+ }
1029
+ .column-selection-container.single .column-select.value {
1030
+ color: #4886ff;
1031
+ background: #edf3ff;
1032
+ }
1033
+ .column-selection-container.single .column-select.long {
1034
+ padding-right: 90px;
1035
+ }
1036
+ .column-selection-container.single .column-select.long .longTip {
1037
+ position: absolute;
1038
+ right: 35px;
1039
+ }
1040
+ .column-selection-container .column-select {
1041
+ height: 28px;
1042
+ padding: 0 10px;
1043
+ font-size: 14px;
1044
+ line-height: 28px;
1045
+ border: 1px solid #e8e8e8;
1046
+ border-bottom: none;
1047
+ }
1048
+ .column-selection-container .column-select .space {
1049
+ display: flex;
1050
+ align-items: center;
1051
+ justify-content: space-between;
1052
+ color: #4e5969;
1053
+ }
1054
+ .column-selection-container .column-select .space.disabled {
1055
+ opacity: 0.3;
1056
+ pointer-events: none;
1057
+ }
1058
+ .column-selection-container .column-select .label {
1059
+ @include ellipsis;
1060
+ }
1061
+ .column-selection-container .column-select.add {
1062
+ @include ellipsis;
1063
+ color: #86909c;
1064
+ text-align: center;
1065
+ background: #f3f4f5;
1066
+ border: 1px solid #e8e8e8;
1067
+ border-radius: 2px;
1068
+ }
1069
+ .column-selection-container .column-select.add .label {
1070
+ font-weight: 700;
1071
+ }
1072
+ .column-selection-popover {
1073
+ width: 300px;
1074
+ padding: 0;
1075
+ }
1076
+ .column-selection-popover.single {
1077
+ width: 180px;
1078
+ }
1079
+ .column-selection-popover .column-selection-main {
1080
+ transition: all 0.3s;
1081
+ }
1082
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll {
1083
+ overflow: auto;
1084
+ }
1085
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node {
1086
+ position: relative;
1087
+ height: 36px;
1088
+ line-height: 36px;
1089
+ }
1090
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node .custom-tree-node {
1091
+ width: 100%;
1092
+ }
1093
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node span {
1094
+ vertical-align: middle;
1095
+ }
1096
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node .add-icon {
1097
+ position: absolute;
1098
+ right: 10px;
1099
+ color: #4886ff;
1100
+ }
1101
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node .add-icon i {
1102
+ font-size: 16px;
1103
+ }
1104
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node:hover {
1105
+ background-color: rgba(0, 0, 0, 0.05) !important;
1106
+ }
1107
+ .column-selection-popover .column-selection-main .arco-scrollbar .column-selection-scroll .arco-tree .arco-tree-node:hover .add-icon i {
1108
+ display: inline-block;
1109
+ }
1110
+ .column-selection-popover .column-selection-main .selected-list {
1111
+ position: relative;
1112
+ width: 100%;
1113
+ margin: 0;
1114
+ padding: 0;
1115
+ list-style: none;
1116
+ border-top: 1px solid #f3f4f5;
1117
+ }
1118
+ .column-selection-popover .column-selection-main .selected-list .title {
1119
+ height: 28px;
1120
+ padding: 0 40px 0 24px;
1121
+ color: #86909c;
1122
+ line-height: 28px;
1123
+ background: #f3f4f5;
1124
+ }
1125
+ .column-selection-popover .column-selection-main .selected-list .truncate {
1126
+ display: flex;
1127
+ align-items: center;
1128
+ justify-content: space-between;
1129
+ }
1130
+ .column-selection-popover .column-selection-main .selected-list li {
1131
+ height: 36px;
1132
+ padding: 0 40px 0 24px;
1133
+ line-height: 36px;
1134
+ }
1135
+ .column-selection-popover .column-selection-main .selected-list li .item {
1136
+ width: calc(100% - 10px);
1137
+ overflow: hidden;
1138
+ white-space: nowrap;
1139
+ text-overflow: ellipsis;
1140
+ }
1141
+ .column-selection-popover .column-selection-main .selected-list li i {
1142
+ position: absolute;
1143
+ right: 10px;
1144
+ display: inline-block;
1145
+ color: rgba(0, 0, 0, 0.56);
1146
+ font-size: 14px;
1147
+ font-family: PingFangSC-Regular;
1148
+ cursor: pointer;
1149
+ }
1150
+ .column-selection-popover .column-selection-main .selected-list li:hover {
1151
+ background: rgba(0, 0, 0, 0.05);
1152
+ }
1153
+ .add-category-modal-wrapper .arco-modal-header {
1154
+ border-bottom: none;
1155
+ }
1156
+ .add-category-modal-wrapper .arco-modal-body {
1157
+ min-height: 200px;
1158
+ padding: 20px;
1159
+ padding-bottom: 0;
1160
+ }
1161
+ .add-category-modal-wrapper .arco-modal-body .form-view {
1162
+ padding: 0 20px;
1163
+ }
1164
+ .add-category-modal-wrapper .arco-modal-body .form-view .title {
1165
+ padding: 20px 0;
1166
+ font-weight: bold;
1167
+ font-size: 14px;
1168
+ }
1169
+ .add-category-modal-wrapper .arco-modal-body .form-view .item-title {
1170
+ display: inline-block;
1171
+ color: #4e5969;
1172
+ font-weight: 700;
1173
+ font-size: 14px;
1174
+ line-height: 40px;
1175
+ text-align: left;
1176
+ }
1177
+ .add-category-modal-wrapper .arco-modal-body .form-view .item-title.big {
1178
+ line-height: 60px;
1179
+ }
1180
+ .add-category-modal-wrapper .arco-modal-footer {
1181
+ border-top: 0;
1182
+ }