@cmstops/pro-compo 0.3.18 → 0.3.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.
- package/dist/index.css +470 -39
- package/dist/index.min.css +1 -1
- package/es/colorPalette/style/index.css +10 -10
- package/es/colorPalette/style/index.less +29 -25
- package/es/contentModal/components/ViewAllColumn/MediaFilter/index.js +51 -7
- package/es/contentModal/components/ViewAllColumn/index.js +1 -0
- package/es/contentModal/style/MediaFilter.less +4 -0
- package/es/contentModal/style/index.css +3 -0
- package/es/index.css +470 -39
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/es/index.less +2 -0
- package/es/mediaGridList/component.d.ts +0 -0
- package/es/mediaGridList/component.js +222 -0
- package/es/mediaGridList/components/FileTypeThumb/index.d.ts +0 -0
- package/es/mediaGridList/components/FileTypeThumb/index.js +127 -0
- package/es/mediaGridList/index.d.ts +2 -0
- package/es/mediaGridList/index.js +7 -0
- package/es/mediaGridList/style/FileTypeThumb.less +204 -0
- package/es/mediaGridList/style/css.js +1 -0
- package/es/mediaGridList/style/index.css +364 -0
- package/es/mediaGridList/style/index.d.ts +1 -0
- package/es/mediaGridList/style/index.js +1 -0
- package/es/mediaGridList/style/index.less +230 -0
- package/es/mediaView/component.d.ts +0 -0
- package/es/mediaView/component.js +65 -0
- package/es/mediaView/index.d.ts +2 -0
- package/es/mediaView/index.js +7 -0
- package/es/mediaView/style/css.js +1 -0
- package/es/mediaView/style/index.css +64 -0
- package/es/mediaView/style/index.d.ts +1 -0
- package/es/mediaView/style/index.js +1 -0
- package/es/mediaView/style/index.less +71 -0
- package/es/resourceModal/components/MediaPreviewer/index.js +1 -1
- package/es/resourceModal/components/MediaSelection/MainContent/index.js +2 -2
- package/es/resourceModal/components/MediaSelection/SystemResourceSelected/components/SystemResourceFilter.js +1 -1
- package/es/resourceModal/components/MediaSelection/SystemResourceSelected/components/SystemResourceList.js +1 -1
- package/es/resourceModal/components/MediaSelection/SystemResourceSelected/index.js +1 -1
- package/es/resourceModal/components/MediaSelection/ToolbarSearch/index.js +1 -1
- package/es/resourceModal/style/FileTypeThumb.less +26 -26
- package/es/resourceModal/style/MainContent.less +3 -3
- package/es/resourceModal/style/SystemResourceSelected.less +1 -1
- package/es/resourceModal/style/index.css +29 -29
- package/es/uploadBefore/script/fileTypeAdapter.d.ts +1 -1
- package/lib/colorPalette/style/index.css +10 -10
- package/lib/colorPalette/style/index.less +29 -25
- package/lib/contentModal/components/ViewAllColumn/MediaFilter/index.js +48 -4
- package/lib/contentModal/components/ViewAllColumn/index.js +1 -0
- package/lib/contentModal/style/MediaFilter.less +4 -0
- package/lib/contentModal/style/index.css +3 -0
- package/lib/index.css +470 -39
- package/lib/index.js +4 -0
- package/lib/index.less +2 -0
- package/lib/mediaGridList/component.js +223 -0
- package/lib/mediaGridList/components/FileTypeThumb/index.js +128 -0
- package/lib/mediaGridList/index.js +8 -0
- package/lib/mediaGridList/style/FileTypeThumb.less +204 -0
- package/lib/mediaGridList/style/css.js +2 -0
- package/lib/mediaGridList/style/index.css +364 -0
- package/lib/mediaGridList/style/index.js +2 -0
- package/lib/mediaGridList/style/index.less +230 -0
- package/lib/mediaView/component.js +66 -0
- package/lib/mediaView/index.js +8 -0
- package/lib/mediaView/style/css.js +2 -0
- package/lib/mediaView/style/index.css +64 -0
- package/lib/mediaView/style/index.js +2 -0
- package/lib/mediaView/style/index.less +71 -0
- package/lib/resourceModal/components/MediaPreviewer/index.js +1 -1
- package/lib/resourceModal/components/MediaSelection/MainContent/index.js +2 -2
- package/lib/resourceModal/components/MediaSelection/SystemResourceSelected/components/SystemResourceFilter.js +1 -1
- package/lib/resourceModal/components/MediaSelection/SystemResourceSelected/components/SystemResourceList.js +1 -1
- package/lib/resourceModal/components/MediaSelection/SystemResourceSelected/index.js +1 -1
- package/lib/resourceModal/components/MediaSelection/ToolbarSearch/index.js +1 -1
- package/lib/resourceModal/style/FileTypeThumb.less +26 -26
- package/lib/resourceModal/style/MainContent.less +3 -3
- package/lib/resourceModal/style/SystemResourceSelected.less +1 -1
- package/lib/resourceModal/style/index.css +29 -29
- package/package.json +1 -1
- /package/es/{resourceModal/assets → assets}/images/sys_load_more.js +0 -0
- /package/es/{resourceModal/assets → assets}/images/unknown.js +0 -0
- /package/es/{resourceModal/assets → assets}/selection/null.js +0 -0
- /package/es/{resourceModal/script → utils}/filter.d.ts +0 -0
- /package/es/{resourceModal/script → utils}/filter.js +0 -0
- /package/lib/{resourceModal/assets → assets}/images/sys_load_more.js +0 -0
- /package/lib/{resourceModal/assets → assets}/images/unknown.js +0 -0
- /package/lib/{resourceModal/assets → assets}/selection/null.js +0 -0
- /package/lib/{resourceModal/script → utils}/filter.js +0 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.media-view-component {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
z-index: 100;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
9
|
+
}
|
|
10
|
+
.media-view-component .viewer-close {
|
|
11
|
+
position: absolute;
|
|
12
|
+
top: 36px;
|
|
13
|
+
right: 36px;
|
|
14
|
+
z-index: 99999;
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
width: 32px;
|
|
19
|
+
height: 32px;
|
|
20
|
+
color: #fff;
|
|
21
|
+
font-size: 14px;
|
|
22
|
+
line-height: 32px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
background: rgba(0, 0, 0, 0.5);
|
|
25
|
+
border-radius: 50%;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
.media-view-component .viewer-canvas {
|
|
29
|
+
display: -webkit-box;
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
-webkit-box-pack: center;
|
|
36
|
+
-webkit-box-align: center;
|
|
37
|
+
}
|
|
38
|
+
.media-view-component .viewer-canvas .video {
|
|
39
|
+
z-index: 101;
|
|
40
|
+
width: 1000px;
|
|
41
|
+
max-height: 90vh;
|
|
42
|
+
object-fit: contain;
|
|
43
|
+
overflow: clip;
|
|
44
|
+
overflow-clip-margin: content-box;
|
|
45
|
+
}
|
|
46
|
+
.media-view-component .viewer-canvas .audio {
|
|
47
|
+
width: 400px;
|
|
48
|
+
height: 54px;
|
|
49
|
+
}
|
|
50
|
+
.media-view-component .viewer-canvas .other {
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
align-items: center;
|
|
54
|
+
width: 240px;
|
|
55
|
+
height: 200px;
|
|
56
|
+
}
|
|
57
|
+
.media-view-component .viewer-canvas .other img {
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
}
|
|
61
|
+
.media-view-component .viewer-canvas .other .text {
|
|
62
|
+
color: #fff;
|
|
63
|
+
font-size: 18px;
|
|
64
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.media-view-component {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
z-index: 100;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
9
|
+
|
|
10
|
+
.viewer-close {
|
|
11
|
+
position: absolute;
|
|
12
|
+
top: 36px;
|
|
13
|
+
right: 36px;
|
|
14
|
+
z-index: 99999;
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
width: 32px;
|
|
19
|
+
height: 32px;
|
|
20
|
+
color: #fff;
|
|
21
|
+
font-size: 14px;
|
|
22
|
+
line-height: 32px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
background: rgba(0, 0, 0, 0.5);
|
|
25
|
+
border-radius: 50%;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.viewer-canvas {
|
|
30
|
+
display: -webkit-box;
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
width: 100%;
|
|
35
|
+
height: 100%;
|
|
36
|
+
-webkit-box-pack: center;
|
|
37
|
+
-webkit-box-align: center;
|
|
38
|
+
|
|
39
|
+
.video {
|
|
40
|
+
z-index: 101;
|
|
41
|
+
width: 1000px;
|
|
42
|
+
max-height: 90vh;
|
|
43
|
+
object-fit: contain;
|
|
44
|
+
overflow: clip;
|
|
45
|
+
overflow-clip-margin: content-box;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.audio {
|
|
49
|
+
width: 400px;
|
|
50
|
+
height: 54px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.other {
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
align-items: center;
|
|
57
|
+
width: 240px;
|
|
58
|
+
height: 200px;
|
|
59
|
+
|
|
60
|
+
img {
|
|
61
|
+
width: 100%;
|
|
62
|
+
height: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.text {
|
|
66
|
+
color: #fff;
|
|
67
|
+
font-size: 18px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var vue = require("vue");
|
|
3
|
-
var unknown = require("
|
|
3
|
+
var unknown = require("../../../assets/images/unknown.js");
|
|
4
4
|
var webVue = require("@arco-design/web-vue");
|
|
5
5
|
var icon = require("@arco-design/web-vue/es/icon");
|
|
6
6
|
const _hoisted_1 = { class: "media-previewer" };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var vue = require("vue");
|
|
3
|
-
var _null = require("
|
|
3
|
+
var _null = require("../../../../assets/selection/null.js");
|
|
4
4
|
var webVue = require("@arco-design/web-vue");
|
|
5
5
|
var vueCmstopIcons = require("@arco-iconbox/vue-cmstop-icons");
|
|
6
6
|
var component = require("../../../../typeIcons/component.js");
|
|
7
7
|
var index = require("./FileTypeThumb/index.js");
|
|
8
|
-
var filter = require("
|
|
8
|
+
var filter = require("../../../../utils/filter.js");
|
|
9
9
|
const _hoisted_1 = { class: "file-wrap" };
|
|
10
10
|
const _hoisted_2 = { class: "folder-list clearfix" };
|
|
11
11
|
const _hoisted_3 = ["onClick"];
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
var vue = require("vue");
|
|
3
3
|
var webVue = require("@arco-design/web-vue");
|
|
4
4
|
var icon = require("@arco-design/web-vue/es/icon");
|
|
5
|
-
var filter = require("
|
|
5
|
+
var filter = require("../../../../../utils/filter.js");
|
|
6
6
|
var api = require("../../../../script/api.js");
|
|
7
7
|
const _hoisted_1 = { class: "toolbar-search-container sysfile-filter-container" };
|
|
8
8
|
const _hoisted_2 = { class: "top-container" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var vue = require("vue");
|
|
3
|
-
var sys_load_more = require("
|
|
3
|
+
var sys_load_more = require("../../../../../assets/images/sys_load_more.js");
|
|
4
4
|
var webVue = require("@arco-design/web-vue");
|
|
5
5
|
var index = require("../../MainContent/FileTypeThumb/index.js");
|
|
6
6
|
var api = require("../../../../script/api.js");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var vue = require("vue");
|
|
3
|
-
var _null = require("
|
|
3
|
+
var _null = require("../../../../assets/selection/null.js");
|
|
4
4
|
var webVue = require("@arco-design/web-vue");
|
|
5
5
|
var SystemResourceFilter = require("./components/SystemResourceFilter.js");
|
|
6
6
|
var SystemResourceList = require("./components/SystemResourceList.js");
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
var vue = require("vue");
|
|
3
3
|
var webVue = require("@arco-design/web-vue");
|
|
4
4
|
var icon = require("@arco-design/web-vue/es/icon");
|
|
5
|
-
var filter = require("
|
|
5
|
+
var filter = require("../../../../utils/filter.js");
|
|
6
6
|
var api = require("../../../script/api.js");
|
|
7
7
|
const _hoisted_1 = { class: "toolbar-search-container" };
|
|
8
8
|
const _hoisted_2 = { class: "top-container" };
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
width: 100%;
|
|
83
83
|
padding-top: 56.25%;
|
|
84
84
|
background-color: #fff;
|
|
85
|
-
background-image: url('
|
|
85
|
+
background-image: url('../../assets/images/unknown.png');
|
|
86
86
|
background-repeat: no-repeat;
|
|
87
87
|
background-repeat: repeat-x;
|
|
88
88
|
background-position: top;
|
|
@@ -95,99 +95,99 @@
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.audio {
|
|
98
|
-
background-image: url('
|
|
98
|
+
background-image: url('../../assets/images/music.png') !important;
|
|
99
99
|
|
|
100
100
|
&.doc {
|
|
101
|
-
background-image: url('
|
|
101
|
+
background-image: url('../../assets/images/draf.png') !important;
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.project {
|
|
106
|
-
background-image: url('
|
|
106
|
+
background-image: url('../../assets/images/project1.png') !important;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.doc {
|
|
110
|
-
background-image: url('
|
|
110
|
+
background-image: url('../../assets/images/draf.png');
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
.link {
|
|
114
|
-
background-image: url('
|
|
114
|
+
background-image: url('../../assets/images/link.png');
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.sp_topic {
|
|
118
|
-
background-image: url('
|
|
118
|
+
background-image: url('../../assets/images/link.png');
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
.live {
|
|
122
|
-
background-image: url('
|
|
122
|
+
background-image: url('../../assets/images/live.png');
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
.pdf {
|
|
126
|
-
background-image: url('
|
|
126
|
+
background-image: url('../../assets/images/pdf.png') !important;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.officeexcel {
|
|
130
|
-
background-image: url('
|
|
130
|
+
background-image: url('../../assets/images/excel.png') !important;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
.officeppt {
|
|
134
|
-
background-image: url('
|
|
134
|
+
background-image: url('../../assets/images/ppt.png') !important;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.zip {
|
|
138
|
-
background-image: url('
|
|
138
|
+
background-image: url('../../assets/images/zip.png') !important;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
.rar {
|
|
142
|
-
background-image: url('
|
|
142
|
+
background-image: url('../../assets/images/rar.png') !important;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.txt {
|
|
146
|
-
background-image: url('
|
|
146
|
+
background-image: url('../../assets/images/txt.png') !important;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
.exe {
|
|
150
|
-
background-image: url('
|
|
150
|
+
background-image: url('../../assets/images/exe.png') !important;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.html {
|
|
154
|
-
background-image: url('
|
|
154
|
+
background-image: url('../../assets/images/html.png') !important;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.officedoc {
|
|
158
|
-
background-image: url('
|
|
158
|
+
background-image: url('../../assets/images/word.png') !important;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
.wechat {
|
|
162
|
-
background-image: url('
|
|
162
|
+
background-image: url('../../assets/images/wechat.png') !important;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
.h5 {
|
|
166
|
-
background-image: url('
|
|
166
|
+
background-image: url('../../assets/images/h5.png') !important;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
.ad {
|
|
170
|
-
background-image: url('
|
|
170
|
+
background-image: url('../../assets/images/ad.png') !important;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
.booklink {
|
|
174
|
-
background-image: url('
|
|
174
|
+
background-image: url('../../assets/images/booklink.png') !important;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
.activity {
|
|
178
|
-
background-image: url('
|
|
178
|
+
background-image: url('../../assets/images/activity.png') !important;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
.svideo {
|
|
182
|
-
background-image: url('
|
|
182
|
+
background-image: url('../../assets/images/svideo.png') !important;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.cloud_lottery {
|
|
186
|
-
background-image: url('
|
|
186
|
+
background-image: url('../../assets/images/cloud_lottery.png') !important;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
.cloud_form {
|
|
190
|
-
background-image: url('
|
|
190
|
+
background-image: url('../../assets/images/cloud_form.png') !important;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.illegal-media-warning {
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
width: 100%;
|
|
197
197
|
height: 100%;
|
|
198
198
|
background-color: rgba(0, 0, 0, 0.65);
|
|
199
|
-
background-image: url('
|
|
199
|
+
background-image: url('../../assets/images/unknown.png');
|
|
200
200
|
background-repeat: no-repeat;
|
|
201
201
|
background-position: center;
|
|
202
202
|
background-size: 30%;
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
height: 46px;
|
|
41
41
|
overflow: hidden;
|
|
42
42
|
font-size: 0;
|
|
43
|
-
background: url('
|
|
44
|
-
center;
|
|
43
|
+
background: url('../../assets/selection/folder.png') no-repeat
|
|
44
|
+
13px center;
|
|
45
45
|
background-size: 17px auto;
|
|
46
46
|
border: solid 1px transparent;
|
|
47
47
|
border-radius: 4px;
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
.thumb-wrap {
|
|
137
137
|
position: relative;
|
|
138
138
|
width: 100%;
|
|
139
|
-
background: url('
|
|
139
|
+
background: url('../../assets/selection/picBg.png');
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
h4,
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
height: 46px;
|
|
179
179
|
overflow: hidden;
|
|
180
180
|
font-size: 0;
|
|
181
|
-
background: url('
|
|
181
|
+
background: url('../../assets/selection/folder.png') no-repeat 13px center;
|
|
182
182
|
background-size: 17px auto;
|
|
183
183
|
border: solid 1px transparent;
|
|
184
184
|
border-radius: 4px;
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
.simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap .thumb-wrap {
|
|
258
258
|
position: relative;
|
|
259
259
|
width: 100%;
|
|
260
|
-
background: url('
|
|
260
|
+
background: url('../../assets/selection/picBg.png');
|
|
261
261
|
}
|
|
262
262
|
.simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap h4,
|
|
263
263
|
.simple-resources .arco-scrollbar .dialog-media-selection-scroll .file-wrap .file-list .item .shadow-wrap p {
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
width: 100%;
|
|
400
400
|
padding-top: 56.25%;
|
|
401
401
|
background-color: #fff;
|
|
402
|
-
background-image: url('
|
|
402
|
+
background-image: url('../../assets/images/unknown.png');
|
|
403
403
|
background-repeat: no-repeat;
|
|
404
404
|
background-repeat: repeat-x;
|
|
405
405
|
background-position: top;
|
|
@@ -410,76 +410,76 @@
|
|
|
410
410
|
transition: ease-out 0.4s;
|
|
411
411
|
}
|
|
412
412
|
.file-type-thumb .audio {
|
|
413
|
-
background-image: url('
|
|
413
|
+
background-image: url('../../assets/images/music.png') !important;
|
|
414
414
|
}
|
|
415
415
|
.file-type-thumb .audio.doc {
|
|
416
|
-
background-image: url('
|
|
416
|
+
background-image: url('../../assets/images/draf.png') !important;
|
|
417
417
|
}
|
|
418
418
|
.file-type-thumb .project {
|
|
419
|
-
background-image: url('
|
|
419
|
+
background-image: url('../../assets/images/project1.png') !important;
|
|
420
420
|
}
|
|
421
421
|
.file-type-thumb .doc {
|
|
422
|
-
background-image: url('
|
|
422
|
+
background-image: url('../../assets/images/draf.png');
|
|
423
423
|
}
|
|
424
424
|
.file-type-thumb .link {
|
|
425
|
-
background-image: url('
|
|
425
|
+
background-image: url('../../assets/images/link.png');
|
|
426
426
|
}
|
|
427
427
|
.file-type-thumb .sp_topic {
|
|
428
|
-
background-image: url('
|
|
428
|
+
background-image: url('../../assets/images/link.png');
|
|
429
429
|
}
|
|
430
430
|
.file-type-thumb .live {
|
|
431
|
-
background-image: url('
|
|
431
|
+
background-image: url('../../assets/images/live.png');
|
|
432
432
|
}
|
|
433
433
|
.file-type-thumb .pdf {
|
|
434
|
-
background-image: url('
|
|
434
|
+
background-image: url('../../assets/images/pdf.png') !important;
|
|
435
435
|
}
|
|
436
436
|
.file-type-thumb .officeexcel {
|
|
437
|
-
background-image: url('
|
|
437
|
+
background-image: url('../../assets/images/excel.png') !important;
|
|
438
438
|
}
|
|
439
439
|
.file-type-thumb .officeppt {
|
|
440
|
-
background-image: url('
|
|
440
|
+
background-image: url('../../assets/images/ppt.png') !important;
|
|
441
441
|
}
|
|
442
442
|
.file-type-thumb .zip {
|
|
443
|
-
background-image: url('
|
|
443
|
+
background-image: url('../../assets/images/zip.png') !important;
|
|
444
444
|
}
|
|
445
445
|
.file-type-thumb .rar {
|
|
446
|
-
background-image: url('
|
|
446
|
+
background-image: url('../../assets/images/rar.png') !important;
|
|
447
447
|
}
|
|
448
448
|
.file-type-thumb .txt {
|
|
449
|
-
background-image: url('
|
|
449
|
+
background-image: url('../../assets/images/txt.png') !important;
|
|
450
450
|
}
|
|
451
451
|
.file-type-thumb .exe {
|
|
452
|
-
background-image: url('
|
|
452
|
+
background-image: url('../../assets/images/exe.png') !important;
|
|
453
453
|
}
|
|
454
454
|
.file-type-thumb .html {
|
|
455
|
-
background-image: url('
|
|
455
|
+
background-image: url('../../assets/images/html.png') !important;
|
|
456
456
|
}
|
|
457
457
|
.file-type-thumb .officedoc {
|
|
458
|
-
background-image: url('
|
|
458
|
+
background-image: url('../../assets/images/word.png') !important;
|
|
459
459
|
}
|
|
460
460
|
.file-type-thumb .wechat {
|
|
461
|
-
background-image: url('
|
|
461
|
+
background-image: url('../../assets/images/wechat.png') !important;
|
|
462
462
|
}
|
|
463
463
|
.file-type-thumb .h5 {
|
|
464
|
-
background-image: url('
|
|
464
|
+
background-image: url('../../assets/images/h5.png') !important;
|
|
465
465
|
}
|
|
466
466
|
.file-type-thumb .ad {
|
|
467
|
-
background-image: url('
|
|
467
|
+
background-image: url('../../assets/images/ad.png') !important;
|
|
468
468
|
}
|
|
469
469
|
.file-type-thumb .booklink {
|
|
470
|
-
background-image: url('
|
|
470
|
+
background-image: url('../../assets/images/booklink.png') !important;
|
|
471
471
|
}
|
|
472
472
|
.file-type-thumb .activity {
|
|
473
|
-
background-image: url('
|
|
473
|
+
background-image: url('../../assets/images/activity.png') !important;
|
|
474
474
|
}
|
|
475
475
|
.file-type-thumb .svideo {
|
|
476
|
-
background-image: url('
|
|
476
|
+
background-image: url('../../assets/images/svideo.png') !important;
|
|
477
477
|
}
|
|
478
478
|
.file-type-thumb .cloud_lottery {
|
|
479
|
-
background-image: url('
|
|
479
|
+
background-image: url('../../assets/images/cloud_lottery.png') !important;
|
|
480
480
|
}
|
|
481
481
|
.file-type-thumb .cloud_form {
|
|
482
|
-
background-image: url('
|
|
482
|
+
background-image: url('../../assets/images/cloud_form.png') !important;
|
|
483
483
|
}
|
|
484
484
|
.file-type-thumb .illegal-media-warning {
|
|
485
485
|
position: absolute;
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
width: 100%;
|
|
488
488
|
height: 100%;
|
|
489
489
|
background-color: rgba(0, 0, 0, 0.65);
|
|
490
|
-
background-image: url('
|
|
490
|
+
background-image: url('../../assets/images/unknown.png');
|
|
491
491
|
background-repeat: no-repeat;
|
|
492
492
|
background-position: center;
|
|
493
493
|
background-size: 30%;
|
|
@@ -647,7 +647,7 @@
|
|
|
647
647
|
.sys-res-file-list .item .shadow-wrap .thumb-wrap {
|
|
648
648
|
position: relative;
|
|
649
649
|
width: 100%;
|
|
650
|
-
background: url('
|
|
650
|
+
background: url('../../assets/selection/picBg.png');
|
|
651
651
|
}
|
|
652
652
|
.sys-res-file-list .item .shadow-wrap h4,
|
|
653
653
|
.sys-res-file-list .item .shadow-wrap p {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|