@seafile/seafile-editor 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/browser-tip/index.js +1 -1
- package/dist/components/modal-header/index.css +1 -1
- package/dist/components/modal-header/index.js +1 -1
- package/dist/containers/hotkeys-helper/index.js +1 -1
- package/dist/containers/outline/index.js +2 -2
- package/dist/extension/commons/dropdown-menu-item/index.css +5 -5
- package/dist/extension/commons/menu/menu-drop-down.js +1 -1
- package/dist/extension/commons/menu/menu.css +2 -2
- package/dist/extension/commons/more-menu/index.css +1 -1
- package/dist/extension/commons/select/field-setting.js +4 -4
- package/dist/extension/commons/select/index.js +1 -1
- package/dist/extension/commons/select/menu/item.js +1 -1
- package/dist/extension/commons/select/menu/style.css +1 -1
- package/dist/extension/commons/select/style.css +1 -1
- package/dist/extension/constants/menus-config.js +20 -43
- package/dist/extension/plugins/header/menu/index.js +1 -1
- package/dist/extension/plugins/header/menu/style.css +2 -2
- package/dist/extension/plugins/image/menu/index.js +1 -1
- package/dist/extension/plugins/image/render-element/index.js +1 -1
- package/dist/extension/plugins/link/render-elem/link-popover.js +2 -2
- package/dist/extension/plugins/link/render-elem/style.css +2 -2
- package/dist/extension/plugins/table/context-menu/horizontal-align-popover/index.js +3 -3
- package/dist/extension/plugins/table/context-menu/horizontal-align-popover/style.css +2 -2
- package/dist/extension/plugins/table/context-menu/index.js +1 -1
- package/dist/extension/plugins/table/context-menu/style.css +2 -2
- package/dist/extension/plugins/table/menu/index.js +1 -1
- package/dist/extension/toolbar/header-toolbar/index.js +1 -1
- package/dist/extension/toolbar/header-toolbar/insert-toolbar/index.js +2 -2
- package/dist/extension/toolbar/header-toolbar/insert-toolbar/style.css +4 -4
- package/dist/extension/toolbar/header-toolbar/style.css +3 -3
- package/dist/extension/toolbar/inline-toolbar/index.css +3 -3
- package/dist/extension/toolbar/inline-toolbar/index.js +1 -1
- package/dist/pages/longtext-editor-dialog/index.js +2 -2
- package/dist/pages/longtext-editor-dialog/style.css +4 -4
- package/dist/pages/longtext-inline-editor/index.css +5 -5
- package/package.json +1 -1
- package/public/media/seafile-editor-font/iconfont.css +150 -0
- package/public/media/seafile-editor-font/iconfont.eot +0 -0
- package/public/media/seafile-editor-font/iconfont.svg +35 -99
- package/public/media/seafile-editor-font/iconfont.ttf +0 -0
- package/public/media/seafile-editor-font/iconfont.woff +0 -0
- package/public/media/seafile-editor-font/iconfont.woff2 +0 -0
- package/public/media/seafile-editor-font.css +76 -202
|
@@ -1,278 +1,152 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: "
|
|
3
|
-
|
|
4
|
-
src: url('./seafile-editor-font/iconfont.eot?t=
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
.
|
|
12
|
-
|
|
2
|
+
font-family: "sdocfont";
|
|
3
|
+
/* Project id 5080543 */
|
|
4
|
+
src: url('./seafile-editor-font/iconfont.eot?t=1764817888962');
|
|
5
|
+
/* IE9 */
|
|
6
|
+
src: url('./seafile-editor-font/iconfont.eot?t=1764817888962#iefix') format('embedded-opentype'),
|
|
7
|
+
/* IE6-IE8 */
|
|
8
|
+
url('./seafile-editor-font/iconfont.woff2?t=1764817888962') format('woff2'),
|
|
9
|
+
url('./seafile-editor-font/iconfont.woff?t=1764817888962') format('woff'),
|
|
10
|
+
url('./seafile-editor-font/iconfont.ttf?t=1764817888962') format('truetype'),
|
|
11
|
+
url('./seafile-editor-font/iconfont.svg?t=1764817888962#sdocfont') format('svg');
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.sdocfont {
|
|
15
|
+
font-family: "sdocfont" !important;
|
|
13
16
|
font-size: 16px;
|
|
14
17
|
font-style: normal;
|
|
15
18
|
-webkit-font-smoothing: antialiased;
|
|
16
19
|
-moz-osx-font-smoothing: grayscale;
|
|
17
20
|
}
|
|
18
21
|
|
|
19
|
-
.
|
|
20
|
-
content: "\
|
|
22
|
+
.sdoc-code-block:before {
|
|
23
|
+
content: "\e6ac";
|
|
21
24
|
}
|
|
22
25
|
|
|
23
|
-
.
|
|
24
|
-
content: "\
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.icon-center-horizontally:before {
|
|
28
|
-
content: "\e69f";
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.icon-star1:before {
|
|
32
|
-
content: "\e6a0";
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.icon-drop-down:before {
|
|
36
|
-
content: "\e6a1";
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.icon-quote:before {
|
|
40
|
-
content: "\e6a2";
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.icon-image:before {
|
|
44
|
-
content: "\e6a3";
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.icon-choose-column:before {
|
|
48
|
-
content: "\e6a4";
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.icon-check-mark:before {
|
|
52
|
-
content: "\e6a5";
|
|
26
|
+
.sdoc-description:before {
|
|
27
|
+
content: "\e6ad";
|
|
53
28
|
}
|
|
54
29
|
|
|
55
|
-
.
|
|
56
|
-
content: "\
|
|
30
|
+
.sdoc-rename:before {
|
|
31
|
+
content: "\e6ae";
|
|
57
32
|
}
|
|
58
33
|
|
|
59
|
-
.
|
|
60
|
-
content: "\
|
|
34
|
+
.sdoc-drop-down:before {
|
|
35
|
+
content: "\e6af";
|
|
61
36
|
}
|
|
62
37
|
|
|
63
|
-
.
|
|
64
|
-
content: "\
|
|
38
|
+
.sdoc-table:before {
|
|
39
|
+
content: "\e6b0";
|
|
65
40
|
}
|
|
66
41
|
|
|
67
|
-
.
|
|
68
|
-
content: "\
|
|
42
|
+
.sdoc-inline-code:before {
|
|
43
|
+
content: "\e6b1";
|
|
69
44
|
}
|
|
70
45
|
|
|
71
|
-
.
|
|
72
|
-
content: "\
|
|
46
|
+
.sdoc-italic:before {
|
|
47
|
+
content: "\e6b2";
|
|
73
48
|
}
|
|
74
49
|
|
|
75
|
-
.
|
|
76
|
-
content: "\
|
|
50
|
+
.sdoc-list-ul:before {
|
|
51
|
+
content: "\e6b3";
|
|
77
52
|
}
|
|
78
53
|
|
|
79
|
-
.
|
|
80
|
-
content: "\
|
|
54
|
+
.sdoc-link:before {
|
|
55
|
+
content: "\e6b4";
|
|
81
56
|
}
|
|
82
57
|
|
|
83
|
-
.
|
|
84
|
-
content: "\
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.icon-description:before {
|
|
88
|
-
content: "\e692";
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.icon-use-help:before {
|
|
92
|
-
content: "\e693";
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.icon-unlink:before {
|
|
96
|
-
content: "\e694";
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.icon-rename:before {
|
|
100
|
-
content: "\e695";
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.icon-caret-up:before {
|
|
104
|
-
content: "\e696";
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.icon-more:before {
|
|
108
|
-
content: "\e697";
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.icon-check-circle:before {
|
|
112
|
-
content: "\e698";
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.icon-close:before {
|
|
116
|
-
content: "\e699";
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.icon-file:before {
|
|
120
|
-
content: "\e69a";
|
|
58
|
+
.sdoc-more:before {
|
|
59
|
+
content: "\e6b5";
|
|
121
60
|
}
|
|
122
61
|
|
|
123
|
-
.
|
|
62
|
+
.sdoc-format-clear:before {
|
|
124
63
|
content: "\e69b";
|
|
125
64
|
}
|
|
126
65
|
|
|
127
|
-
.
|
|
66
|
+
.sdoc-fullscreen:before {
|
|
128
67
|
content: "\e69c";
|
|
129
68
|
}
|
|
130
69
|
|
|
131
|
-
.
|
|
70
|
+
.sdoc-image:before {
|
|
132
71
|
content: "\e69d";
|
|
133
72
|
}
|
|
134
73
|
|
|
135
|
-
.
|
|
74
|
+
.sdoc-list-ol:before {
|
|
136
75
|
content: "\e69e";
|
|
137
76
|
}
|
|
138
77
|
|
|
139
|
-
.
|
|
140
|
-
content: "\
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.icon-delete:before {
|
|
144
|
-
content: "\e679";
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.icon-user:before {
|
|
148
|
-
content: "\e67a";
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.icon-row:before {
|
|
152
|
-
content: "\e67b";
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.icon-link:before {
|
|
156
|
-
content: "\e67c";
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.icon-left-alignment:before {
|
|
160
|
-
content: "\e67d";
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.icon-text-style:before {
|
|
164
|
-
content: "\e67e";
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.icon-table:before {
|
|
168
|
-
content: "\e680";
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.icon-check-square:before {
|
|
172
|
-
content: "\e681";
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.icon-delete-table:before {
|
|
176
|
-
content: "\e682";
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.icon-fullscreen:before {
|
|
180
|
-
content: "\e685";
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.icon-list-ol:before {
|
|
184
|
-
content: "\e686";
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.icon-formula:before {
|
|
188
|
-
content: "\e687";
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.icon-eye-slash:before {
|
|
192
|
-
content: "\e688";
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.icon-clear-format:before {
|
|
196
|
-
content: "\e689";
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.icon-outline:before {
|
|
200
|
-
content: "\e629";
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.icon-x:before {
|
|
204
|
-
content: "\e683";
|
|
78
|
+
.sdoc-quote-left:before {
|
|
79
|
+
content: "\e69f";
|
|
205
80
|
}
|
|
206
81
|
|
|
207
|
-
.
|
|
208
|
-
content: "\
|
|
82
|
+
.sdoc-choose-column:before {
|
|
83
|
+
content: "\e6a0";
|
|
209
84
|
}
|
|
210
85
|
|
|
211
|
-
.
|
|
212
|
-
content: "\
|
|
86
|
+
.sdoc-bold:before {
|
|
87
|
+
content: "\e6a1";
|
|
213
88
|
}
|
|
214
89
|
|
|
215
|
-
.
|
|
216
|
-
content: "\
|
|
90
|
+
.sdoc-sm-close:before {
|
|
91
|
+
content: "\e6a2";
|
|
217
92
|
}
|
|
218
93
|
|
|
219
|
-
.
|
|
220
|
-
content: "\
|
|
94
|
+
.sdoc-insert:before {
|
|
95
|
+
content: "\e6a3";
|
|
221
96
|
}
|
|
222
97
|
|
|
223
|
-
.
|
|
224
|
-
content: "\
|
|
98
|
+
.sdoc-underline:before {
|
|
99
|
+
content: "\e6a4";
|
|
225
100
|
}
|
|
226
101
|
|
|
227
|
-
.
|
|
228
|
-
content: "\
|
|
102
|
+
.sdoc-check-mark:before {
|
|
103
|
+
content: "\e6a5";
|
|
229
104
|
}
|
|
230
105
|
|
|
231
|
-
.
|
|
232
|
-
content: "\
|
|
106
|
+
.sdoc-text-style:before {
|
|
107
|
+
content: "\e6a6";
|
|
233
108
|
}
|
|
234
109
|
|
|
235
|
-
.
|
|
236
|
-
content: "\
|
|
110
|
+
.sdoc-full-screen:before {
|
|
111
|
+
content: "\e6a7";
|
|
237
112
|
}
|
|
238
113
|
|
|
239
|
-
.
|
|
240
|
-
content: "\
|
|
114
|
+
.sdoc-unlink:before {
|
|
115
|
+
content: "\e6a8";
|
|
241
116
|
}
|
|
242
117
|
|
|
243
|
-
.
|
|
244
|
-
content: "\
|
|
118
|
+
.sdoc-align-center:before {
|
|
119
|
+
content: "\e6a9";
|
|
245
120
|
}
|
|
246
121
|
|
|
247
|
-
.
|
|
248
|
-
content: "\
|
|
122
|
+
.sdoc-align-right:before {
|
|
123
|
+
content: "\e6aa";
|
|
249
124
|
}
|
|
250
125
|
|
|
251
|
-
.
|
|
252
|
-
content: "\
|
|
126
|
+
.sdoc-table-of-content-outline:before {
|
|
127
|
+
content: "\e6ab";
|
|
253
128
|
}
|
|
254
129
|
|
|
255
|
-
.
|
|
256
|
-
content: "\
|
|
130
|
+
.sdoc-align-left:before {
|
|
131
|
+
content: "\e696";
|
|
257
132
|
}
|
|
258
133
|
|
|
259
|
-
.
|
|
260
|
-
content: "\
|
|
134
|
+
.sdoc-use-help:before {
|
|
135
|
+
content: "\e695";
|
|
261
136
|
}
|
|
262
137
|
|
|
263
|
-
.
|
|
264
|
-
content: "\
|
|
138
|
+
.sdoc-formula:before {
|
|
139
|
+
content: "\e697";
|
|
265
140
|
}
|
|
266
141
|
|
|
267
|
-
.
|
|
268
|
-
content: "\
|
|
142
|
+
.sdoc-check-square:before {
|
|
143
|
+
content: "\e698";
|
|
269
144
|
}
|
|
270
145
|
|
|
271
|
-
.
|
|
272
|
-
content: "\
|
|
146
|
+
.sdoc-right-slide:before {
|
|
147
|
+
content: "\e699";
|
|
273
148
|
}
|
|
274
149
|
|
|
275
|
-
.
|
|
276
|
-
content: "\
|
|
150
|
+
.sdoc-caret-up:before {
|
|
151
|
+
content: "\e69a";
|
|
277
152
|
}
|
|
278
|
-
|