lakelib 0.3.0 → 0.3.2
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/README.md +2 -2
- package/dist/lake.min.css +30 -0
- package/dist/lake.min.js +11 -11
- package/dist/lake.min.js.map +1 -1
- package/lib/editor.d.ts +19 -19
- package/lib/i18n/en-US/index.d.ts +8 -0
- package/lib/i18n/ja/index.d.ts +8 -0
- package/lib/i18n/ko/index.d.ts +8 -0
- package/lib/i18n/types.d.ts +64 -0
- package/lib/i18n/zh-CN/index.d.ts +8 -0
- package/lib/lake.js +353 -239
- package/lib/lake.js.map +1 -1
- package/lib/models/box.d.ts +5 -5
- package/lib/models/fragment.d.ts +2 -2
- package/lib/models/nodes.d.ts +5 -5
- package/lib/models/range.d.ts +1 -1
- package/lib/parsers/html-parser.d.ts +2 -2
- package/lib/parsers/text-parser.d.ts +1 -1
- package/lib/ui/button.d.ts +3 -3
- package/lib/ui/dropdown.d.ts +7 -7
- package/lib/ui/toolbar.d.ts +1 -1
- package/package.json +18 -16
- package/dist/lake.css +0 -1863
package/dist/lake.css
DELETED
|
@@ -1,1863 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
/* common */
|
|
3
|
-
--lake-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
|
|
4
|
-
--lake-font-size: 16px;
|
|
5
|
-
--lake-text-color: #000000e0;
|
|
6
|
-
--lake-secondary-text-color: #000000a6;
|
|
7
|
-
--lake-border-color: #d9d9d9;
|
|
8
|
-
--lake-background-hover-color: #0000000a;
|
|
9
|
-
--lake-background-active-color: #0000000d;
|
|
10
|
-
--lake-success-color: #52c41a;
|
|
11
|
-
--lake-warning-color: #faad14;
|
|
12
|
-
--lake-error-color: #ff4d4f;
|
|
13
|
-
/* selection */
|
|
14
|
-
--lake-selection-background-color: #1ba2e333;
|
|
15
|
-
/* link */
|
|
16
|
-
--lake-link-color: #1677ff;
|
|
17
|
-
--lake-link-hover-color: #69b1ff;
|
|
18
|
-
/* box */
|
|
19
|
-
--lake-box-border-color: #d9d9d9;
|
|
20
|
-
--lake-box-border-focus-color: #1677ff;
|
|
21
|
-
--lake-box-background-color: #f6f8fa;
|
|
22
|
-
/* popup */
|
|
23
|
-
--lake-popup-z-index: 822;
|
|
24
|
-
--lake-popup-font-size: 14px;
|
|
25
|
-
--lake-popup-border-color: #d9d9d9;
|
|
26
|
-
--lake-popup-shadow: 0 6px 16px 0 #00000014, 0 3px 6px -4px #0000001f, 0 9px 28px 8px #0000000d;
|
|
27
|
-
/* button */
|
|
28
|
-
--lake-button-font-size: 14px;
|
|
29
|
-
--lake-button-shadow: 0 2px 0 #00000005;
|
|
30
|
-
--lake-button-outline: 2px solid #69b1ff;
|
|
31
|
-
/* input element, text field */
|
|
32
|
-
--lake-input-border-color: #d9d9d9;
|
|
33
|
-
--lake-input-border-hover-color: #69b1ff;
|
|
34
|
-
--lake-input-outline: 2px solid #69b1ff;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@keyframes lakerotate {
|
|
38
|
-
0% {
|
|
39
|
-
transform: rotate(0);
|
|
40
|
-
}
|
|
41
|
-
100% {
|
|
42
|
-
transform: rotate(360deg);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.lake-container-wrapper {
|
|
47
|
-
position: relative;
|
|
48
|
-
}
|
|
49
|
-
.lake-container {
|
|
50
|
-
box-sizing: border-box;
|
|
51
|
-
font-family: var(--lake-font-family);
|
|
52
|
-
font-size: var(--lake-font-size);
|
|
53
|
-
font-weight: normal;
|
|
54
|
-
line-height: 1.45;
|
|
55
|
-
padding: 16px 24px;
|
|
56
|
-
}
|
|
57
|
-
.lake-container:focus {
|
|
58
|
-
outline: none;
|
|
59
|
-
}
|
|
60
|
-
.lake-container::selection,
|
|
61
|
-
.lake-container ::selection {
|
|
62
|
-
color: inherit;
|
|
63
|
-
background: var(--lake-selection-background-color);
|
|
64
|
-
}
|
|
65
|
-
.lake-container *,
|
|
66
|
-
.lake-container ::before,
|
|
67
|
-
.lake-container ::after {
|
|
68
|
-
box-sizing: border-box;
|
|
69
|
-
}
|
|
70
|
-
.lake-container.lake-placeholder::before {
|
|
71
|
-
position: absolute;
|
|
72
|
-
top: 8px;
|
|
73
|
-
left: 12px;
|
|
74
|
-
color: var(--lake-secondary-text-color);
|
|
75
|
-
content: attr(placeholder);
|
|
76
|
-
pointer-events: none;
|
|
77
|
-
}
|
|
78
|
-
.lake-container bookmark {
|
|
79
|
-
display: inline;
|
|
80
|
-
}
|
|
81
|
-
.lake-container p {
|
|
82
|
-
margin: 0;
|
|
83
|
-
padding: 0;
|
|
84
|
-
margin-bottom: 8px;
|
|
85
|
-
}
|
|
86
|
-
.lake-container a {
|
|
87
|
-
color: var(--lake-link-color);
|
|
88
|
-
text-decoration: none;
|
|
89
|
-
}
|
|
90
|
-
.lake-container a:hover {
|
|
91
|
-
color: var(--lake-link-hover-color);
|
|
92
|
-
text-decoration: underline;
|
|
93
|
-
}
|
|
94
|
-
.lake-drop-indication {
|
|
95
|
-
position: absolute;
|
|
96
|
-
height: 2px;
|
|
97
|
-
background-color: #1677ff;
|
|
98
|
-
z-index: 1;
|
|
99
|
-
pointer-events: none;
|
|
100
|
-
display: none;
|
|
101
|
-
}
|
|
102
|
-
.lake-drop-indication svg {
|
|
103
|
-
position: absolute;
|
|
104
|
-
top: -7.5px;
|
|
105
|
-
left: -10px;
|
|
106
|
-
width: 16px;
|
|
107
|
-
height: 16px;
|
|
108
|
-
fill: #1677ff;
|
|
109
|
-
pointer-events: none;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.lake-container strong {
|
|
113
|
-
font-weight: 600;
|
|
114
|
-
}
|
|
115
|
-
.lake-container i {
|
|
116
|
-
font-style: italic;
|
|
117
|
-
}
|
|
118
|
-
.lake-container u {
|
|
119
|
-
text-decoration: underline;
|
|
120
|
-
}
|
|
121
|
-
.lake-container s {
|
|
122
|
-
text-decoration: line-through;
|
|
123
|
-
}
|
|
124
|
-
.lake-container sub {
|
|
125
|
-
vertical-align: sub;
|
|
126
|
-
font-size: 0.85em;
|
|
127
|
-
}
|
|
128
|
-
.lake-container sup {
|
|
129
|
-
vertical-align: super;
|
|
130
|
-
font-size: 0.85em;
|
|
131
|
-
}
|
|
132
|
-
.lake-container code {
|
|
133
|
-
font-family: Consolas, Courier, monospace;
|
|
134
|
-
font-size: 0.9em;
|
|
135
|
-
border-radius: 3px;
|
|
136
|
-
padding: 0.2em 0.4em;
|
|
137
|
-
background-color: #0000000a;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
lake-box {
|
|
141
|
-
margin: 0;
|
|
142
|
-
padding: 0;
|
|
143
|
-
text-indent: 0;
|
|
144
|
-
}
|
|
145
|
-
lake-box[type="inline"] {
|
|
146
|
-
display: inline flex;
|
|
147
|
-
}
|
|
148
|
-
lake-box[type="block"] {
|
|
149
|
-
display: block grid;
|
|
150
|
-
grid-template-columns: 1px calc(100% - 2px) 1px;
|
|
151
|
-
}
|
|
152
|
-
lake-box .lake-box-strip {
|
|
153
|
-
display: block;
|
|
154
|
-
min-width: 1px;
|
|
155
|
-
}
|
|
156
|
-
lake-box[type="inline"] .lake-box-strip {
|
|
157
|
-
align-self: flex-end;
|
|
158
|
-
}
|
|
159
|
-
lake-box[type="block"] .lake-box-strip {
|
|
160
|
-
align-self: stretch;
|
|
161
|
-
}
|
|
162
|
-
lake-box .lake-box-strip ::selection {
|
|
163
|
-
background: transparent;
|
|
164
|
-
}
|
|
165
|
-
lake-box .lake-box-container {
|
|
166
|
-
display: block;
|
|
167
|
-
align-self: center;
|
|
168
|
-
}
|
|
169
|
-
lake-box .lake-box-hovered .lake-corner-toolbar,
|
|
170
|
-
lake-box .lake-box-focused .lake-corner-toolbar,
|
|
171
|
-
lake-box .lake-box-activated .lake-corner-toolbar {
|
|
172
|
-
display: flex;
|
|
173
|
-
}
|
|
174
|
-
lake-box .lake-box-focused .lake-resizer {
|
|
175
|
-
display: block;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
button.lake-button {
|
|
179
|
-
border-radius: 5px;
|
|
180
|
-
border: 0;
|
|
181
|
-
font-family: Arial;
|
|
182
|
-
font-size: var(--lake-button-font-size);
|
|
183
|
-
color: var(--lake-text-color);
|
|
184
|
-
background-color: #fff;
|
|
185
|
-
padding: 0;
|
|
186
|
-
margin: 0 1px;
|
|
187
|
-
line-height: 0;
|
|
188
|
-
white-space: nowrap;
|
|
189
|
-
cursor: pointer;
|
|
190
|
-
user-select: none;
|
|
191
|
-
}
|
|
192
|
-
button.lake-button:focus-visible {
|
|
193
|
-
outline: var(--lake-button-outline);
|
|
194
|
-
}
|
|
195
|
-
button.lake-button[disabled] {
|
|
196
|
-
opacity: 0.25;
|
|
197
|
-
cursor: default;
|
|
198
|
-
}
|
|
199
|
-
button.lake-button svg,
|
|
200
|
-
button.lake-button img {
|
|
201
|
-
display: inline-block;
|
|
202
|
-
width: 16px;
|
|
203
|
-
height: 16px;
|
|
204
|
-
margin: 6px;
|
|
205
|
-
}
|
|
206
|
-
button.lake-icon-button.lake-button-hovered {
|
|
207
|
-
background-color: var(--lake-background-hover-color);
|
|
208
|
-
}
|
|
209
|
-
button.lake-icon-button.lake-button-selected {
|
|
210
|
-
background-color: var(--lake-background-active-color);
|
|
211
|
-
}
|
|
212
|
-
button.lake-text-button {
|
|
213
|
-
background-color: transparent;
|
|
214
|
-
border: 1px solid var(--lake-border-color);
|
|
215
|
-
padding: 8px 16px;
|
|
216
|
-
line-height: normal;
|
|
217
|
-
}
|
|
218
|
-
button.lake-text-button.lake-button-hovered {
|
|
219
|
-
background-color: var(--lake-background-hover-color);
|
|
220
|
-
}
|
|
221
|
-
button.lake-text-button.lake-button-selected {
|
|
222
|
-
background-color: var(--lake-background-active-color);
|
|
223
|
-
}
|
|
224
|
-
button.lake-text-button svg {
|
|
225
|
-
background-color: transparent;
|
|
226
|
-
margin: 0 6px 0 0;
|
|
227
|
-
vertical-align: middle;
|
|
228
|
-
}
|
|
229
|
-
button.lake-text-button span {
|
|
230
|
-
display: inline-block;
|
|
231
|
-
line-height: 16px;
|
|
232
|
-
vertical-align: middle;
|
|
233
|
-
}
|
|
234
|
-
button.lake-primary-button {
|
|
235
|
-
color: #fff;
|
|
236
|
-
border-color: transparent;
|
|
237
|
-
background-color: #5672cd;
|
|
238
|
-
}
|
|
239
|
-
button.lake-primary-button.lake-button-hovered {
|
|
240
|
-
background-color: #3a5ccc;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.lake-dropdown {
|
|
244
|
-
position: relative;
|
|
245
|
-
font-family: var(--lake-font-family);
|
|
246
|
-
color: var(--lake-text-color);
|
|
247
|
-
font-size: var(--lake-button-font-size);
|
|
248
|
-
user-select: none;
|
|
249
|
-
}
|
|
250
|
-
.lake-dropdown button.lake-dropdown-title {
|
|
251
|
-
border-radius: 5px;
|
|
252
|
-
border: 0;
|
|
253
|
-
font-family: Arial;
|
|
254
|
-
font-size: var(--lake-button-font-size);
|
|
255
|
-
color: var(--lake-text-color);
|
|
256
|
-
background-color: #fff;
|
|
257
|
-
padding: 0;
|
|
258
|
-
display: flex;
|
|
259
|
-
align-items: center;
|
|
260
|
-
justify-content: space-between;
|
|
261
|
-
margin-right: 4px;
|
|
262
|
-
cursor: pointer;
|
|
263
|
-
}
|
|
264
|
-
.lake-dropdown[disabled] button.lake-dropdown-title {
|
|
265
|
-
opacity: 0.25;
|
|
266
|
-
cursor: default;
|
|
267
|
-
}
|
|
268
|
-
.lake-dropdown.lake-list-dropdown button.lake-dropdown-title-hovered,
|
|
269
|
-
.lake-dropdown.lake-icon-dropdown button.lake-dropdown-title-hovered,
|
|
270
|
-
.lake-dropdown.lake-character-dropdown button.lake-dropdown-title-hovered {
|
|
271
|
-
background-color: var(--lake-background-hover-color);
|
|
272
|
-
}
|
|
273
|
-
.lake-dropdown button.lake-dropdown-title.lake-dropdown-title-no-down {
|
|
274
|
-
margin-right: 0;
|
|
275
|
-
}
|
|
276
|
-
.lake-dropdown .lake-dropdown-text {
|
|
277
|
-
height: 16px;
|
|
278
|
-
line-height: normal;
|
|
279
|
-
margin: 6px;
|
|
280
|
-
overflow: hidden;
|
|
281
|
-
white-space: nowrap;
|
|
282
|
-
color: var(--lake-text-color);
|
|
283
|
-
}
|
|
284
|
-
.lake-dropdown .lake-dropdown-icon {
|
|
285
|
-
position: relative;
|
|
286
|
-
line-height: 0;
|
|
287
|
-
border-radius: 5px 0 0 5px;
|
|
288
|
-
}
|
|
289
|
-
.lake-dropdown .lake-dropdown-icon-hovered {
|
|
290
|
-
background-color: var(--lake-background-hover-color);
|
|
291
|
-
}
|
|
292
|
-
.lake-dropdown .lake-dropdown-icon svg,
|
|
293
|
-
.lake-dropdown .lake-dropdown-icon img {
|
|
294
|
-
width: 16px;
|
|
295
|
-
height: 16px;
|
|
296
|
-
margin: 6px 2px 6px 4px;
|
|
297
|
-
}
|
|
298
|
-
.lake-dropdown.lake-color-dropdown .lake-dropdown-icon svg:last-child {
|
|
299
|
-
position: absolute;
|
|
300
|
-
left: 0;
|
|
301
|
-
bottom: 0;
|
|
302
|
-
}
|
|
303
|
-
.lake-dropdown button.lake-dropdown-title-no-down .lake-dropdown-icon svg,
|
|
304
|
-
.lake-dropdown button.lake-dropdown-title-no-down .lake-dropdown-icon img {
|
|
305
|
-
margin: 6px;
|
|
306
|
-
}
|
|
307
|
-
.lake-dropdown .lake-dropdown-down-icon {
|
|
308
|
-
line-height: 0;
|
|
309
|
-
border-radius: 0 5px 5px 0;
|
|
310
|
-
}
|
|
311
|
-
.lake-dropdown .lake-dropdown-down-icon-hovered {
|
|
312
|
-
background-color: var(--lake-background-hover-color);
|
|
313
|
-
}
|
|
314
|
-
.lake-dropdown .lake-dropdown-down-icon svg {
|
|
315
|
-
width: 12px;
|
|
316
|
-
height: 12px;
|
|
317
|
-
margin: 8px 2px;
|
|
318
|
-
fill: var(--lake-secondary-text-color);
|
|
319
|
-
}
|
|
320
|
-
/* menu */
|
|
321
|
-
.lake-dropdown .lake-dropdown-menu,
|
|
322
|
-
.lake-dropdown-menu {
|
|
323
|
-
position: absolute;
|
|
324
|
-
top: 30px;
|
|
325
|
-
left: 0;
|
|
326
|
-
z-index: var(--lake-popup-z-index);
|
|
327
|
-
list-style: none;
|
|
328
|
-
margin: 0;
|
|
329
|
-
padding: 6px 0;
|
|
330
|
-
border: 1px solid var(--lake-popup-border-color);
|
|
331
|
-
border-radius: 5px;
|
|
332
|
-
background-color: #fff;
|
|
333
|
-
box-shadow: var(--lake-popup-shadow);
|
|
334
|
-
user-select: none;
|
|
335
|
-
display: none;
|
|
336
|
-
}
|
|
337
|
-
.lake-dropdown-menu.lake-dropdown-menu-with-scroll {
|
|
338
|
-
overflow-y: scroll;
|
|
339
|
-
scrollbar-width: thin;
|
|
340
|
-
}
|
|
341
|
-
.lake-dropdown .lake-dropdown-menu li,
|
|
342
|
-
.lake-dropdown-menu li {
|
|
343
|
-
display: flex;
|
|
344
|
-
align-items: center;
|
|
345
|
-
cursor: pointer;
|
|
346
|
-
margin: 0;
|
|
347
|
-
}
|
|
348
|
-
/* list type */
|
|
349
|
-
.lake-list-dropdown-menu li {
|
|
350
|
-
padding: 6px 24px 6px 10px;
|
|
351
|
-
}
|
|
352
|
-
.lake-list-dropdown-menu li.lake-dropdown-item-hovered {
|
|
353
|
-
background-color: var(--lake-background-hover-color);
|
|
354
|
-
}
|
|
355
|
-
.lake-list-dropdown-menu li.lake-dropdown-item-selected {
|
|
356
|
-
background-color: var(--lake-background-active-color);
|
|
357
|
-
}
|
|
358
|
-
.lake-list-dropdown-menu li .lake-dropdown-menu-check {
|
|
359
|
-
line-height: 0;
|
|
360
|
-
visibility: hidden;
|
|
361
|
-
}
|
|
362
|
-
.lake-list-dropdown-menu li .lake-dropdown-menu-check svg {
|
|
363
|
-
width: 12px;
|
|
364
|
-
height: 12px;
|
|
365
|
-
}
|
|
366
|
-
.lake-list-dropdown-menu li .lake-dropdown-menu-icon {
|
|
367
|
-
line-height: 0;
|
|
368
|
-
margin-left: 10px;
|
|
369
|
-
}
|
|
370
|
-
.lake-list-dropdown-menu li .lake-dropdown-menu-icon svg {
|
|
371
|
-
width: 16px;
|
|
372
|
-
height: 16px;
|
|
373
|
-
}
|
|
374
|
-
.lake-list-dropdown-menu li .lake-dropdown-menu-text {
|
|
375
|
-
margin-left: 10px;
|
|
376
|
-
white-space: nowrap;
|
|
377
|
-
}
|
|
378
|
-
/* icon type */
|
|
379
|
-
.lake-icon-dropdown-menu {
|
|
380
|
-
flex-wrap: wrap;
|
|
381
|
-
justify-content: center;
|
|
382
|
-
}
|
|
383
|
-
.lake-icon-dropdown-menu li {
|
|
384
|
-
padding: 0;
|
|
385
|
-
border-radius: 2px;
|
|
386
|
-
}
|
|
387
|
-
.lake-icon-dropdown-menu li.lake-dropdown-item-hovered {
|
|
388
|
-
background-color: var(--lake-background-hover-color);
|
|
389
|
-
}
|
|
390
|
-
.lake-icon-dropdown-menu li.lake-dropdown-item-selected {
|
|
391
|
-
background-color: var(--lake-background-active-color);
|
|
392
|
-
}
|
|
393
|
-
.lake-icon-dropdown-menu li .lake-dropdown-menu-check {
|
|
394
|
-
display: none;
|
|
395
|
-
}
|
|
396
|
-
.lake-icon-dropdown-menu li .lake-dropdown-menu-icon {
|
|
397
|
-
line-height: 0;
|
|
398
|
-
margin: 5px;
|
|
399
|
-
}
|
|
400
|
-
.lake-icon-dropdown-menu li .lake-dropdown-menu-icon svg,
|
|
401
|
-
.lake-icon-dropdown-menu li .lake-dropdown-menu-icon img {
|
|
402
|
-
width: 32px;
|
|
403
|
-
height: 32px;
|
|
404
|
-
}
|
|
405
|
-
.lake-icon-dropdown-menu li .lake-dropdown-menu-text {
|
|
406
|
-
display: none;
|
|
407
|
-
}
|
|
408
|
-
/* character type */
|
|
409
|
-
.lake-character-dropdown-menu {
|
|
410
|
-
flex-wrap: wrap;
|
|
411
|
-
justify-content: center;
|
|
412
|
-
}
|
|
413
|
-
.lake-character-dropdown-menu li {
|
|
414
|
-
padding: 0;
|
|
415
|
-
border-radius: 2px;
|
|
416
|
-
}
|
|
417
|
-
.lake-character-dropdown-menu li.lake-dropdown-item-hovered {
|
|
418
|
-
background-color: var(--lake-background-hover-color);
|
|
419
|
-
}
|
|
420
|
-
.lake-character-dropdown-menu li.lake-dropdown-item-selected {
|
|
421
|
-
background-color: var(--lake-background-active-color);
|
|
422
|
-
}
|
|
423
|
-
.lake-character-dropdown-menu li .lake-dropdown-menu-check {
|
|
424
|
-
display: none;
|
|
425
|
-
}
|
|
426
|
-
.lake-character-dropdown-menu li .lake-dropdown-menu-icon {
|
|
427
|
-
display: none;
|
|
428
|
-
}
|
|
429
|
-
.lake-character-dropdown-menu li .lake-dropdown-menu-text {
|
|
430
|
-
text-align: center;
|
|
431
|
-
font-size: 24px;
|
|
432
|
-
width: 42px;
|
|
433
|
-
height: 42px;
|
|
434
|
-
line-height: 42px;
|
|
435
|
-
}
|
|
436
|
-
/* color type */
|
|
437
|
-
.lake-color-dropdown-menu {
|
|
438
|
-
flex-wrap: wrap;
|
|
439
|
-
justify-content: center;
|
|
440
|
-
}
|
|
441
|
-
.lake-color-dropdown-menu li {
|
|
442
|
-
position: relative;
|
|
443
|
-
padding: 0;
|
|
444
|
-
}
|
|
445
|
-
.lake-color-dropdown-menu li.lake-dropdown-item-hovered {
|
|
446
|
-
background-color: var(--lake-background-hover-color);
|
|
447
|
-
}
|
|
448
|
-
.lake-color-dropdown-menu li.lake-dropdown-item-selected {
|
|
449
|
-
background-color: var(--lake-background-active-color);
|
|
450
|
-
}
|
|
451
|
-
.lake-color-dropdown-menu li .lake-dropdown-menu-check {
|
|
452
|
-
position: absolute;
|
|
453
|
-
top: 6px;
|
|
454
|
-
left: 6px;
|
|
455
|
-
z-index: 1;
|
|
456
|
-
line-height: 0;
|
|
457
|
-
visibility: hidden;
|
|
458
|
-
}
|
|
459
|
-
.lake-color-dropdown-menu li .lake-dropdown-menu-check svg {
|
|
460
|
-
width: 12px;
|
|
461
|
-
height: 12px;
|
|
462
|
-
fill: #fff;
|
|
463
|
-
}
|
|
464
|
-
.lake-color-dropdown-menu li[value^="#f" i] .lake-dropdown-menu-check svg,
|
|
465
|
-
.lake-color-dropdown-menu li[value^="#e6" i] .lake-dropdown-menu-check svg {
|
|
466
|
-
fill: #000;
|
|
467
|
-
}
|
|
468
|
-
.lake-color-dropdown-menu li .lake-dropdown-menu-icon {
|
|
469
|
-
line-height: 0;
|
|
470
|
-
}
|
|
471
|
-
.lake-color-dropdown-menu li .lake-dropdown-menu-icon svg {
|
|
472
|
-
width: 16px;
|
|
473
|
-
height: 16px;
|
|
474
|
-
margin: 3px 4px;
|
|
475
|
-
}
|
|
476
|
-
.lake-color-dropdown-menu li .lake-dropdown-menu-text {
|
|
477
|
-
font-size: 0;
|
|
478
|
-
box-sizing: content-box;
|
|
479
|
-
border: 1px solid var(--lake-background-hover-color);
|
|
480
|
-
border-radius: 2px;
|
|
481
|
-
width: 16px;
|
|
482
|
-
height: 16px;
|
|
483
|
-
margin: 3px;
|
|
484
|
-
}
|
|
485
|
-
.lake-color-dropdown-menu li:first-child {
|
|
486
|
-
width: 100%;
|
|
487
|
-
margin-left: 10px;
|
|
488
|
-
margin-right: 10px;
|
|
489
|
-
margin-bottom: 4px;
|
|
490
|
-
}
|
|
491
|
-
.lake-color-dropdown-menu li:first-child .lake-dropdown-menu-check {
|
|
492
|
-
display: none;
|
|
493
|
-
}
|
|
494
|
-
.lake-color-dropdown-menu li:first-child .lake-dropdown-menu-text {
|
|
495
|
-
width: 100%;
|
|
496
|
-
font-size: var(--lake-button-font-size);
|
|
497
|
-
border: 1px solid transparent;
|
|
498
|
-
height: auto;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.lake-popup {
|
|
502
|
-
box-sizing: border-box;
|
|
503
|
-
font-family: var(--lake-font-family);
|
|
504
|
-
font-size: var(--lake-popup-font-size);
|
|
505
|
-
font-weight: normal;
|
|
506
|
-
line-height: normal;
|
|
507
|
-
color: var(--lake-text-color);
|
|
508
|
-
}
|
|
509
|
-
.lake-popup *,
|
|
510
|
-
.lake-popup ::before,
|
|
511
|
-
.lake-popup ::after {
|
|
512
|
-
box-sizing: border-box;
|
|
513
|
-
}
|
|
514
|
-
.lake-popup .lake-text-button {
|
|
515
|
-
box-shadow: var(--lake-button-shadow);
|
|
516
|
-
}
|
|
517
|
-
.lake-popup input[type="text"] {
|
|
518
|
-
font-family: var(--lake-font-family);
|
|
519
|
-
font-size: var(--lake-popup-font-size);
|
|
520
|
-
color: var(--lake-text-color);
|
|
521
|
-
border-radius: 5px;
|
|
522
|
-
border: 1px solid var(--lake-input-border-color);
|
|
523
|
-
padding: 4px 10px;
|
|
524
|
-
}
|
|
525
|
-
.lake-popup input[type="text"]:hover {
|
|
526
|
-
border: 1px solid var(--lake-input-border-hover-color);
|
|
527
|
-
}
|
|
528
|
-
.lake-popup input[type="text"]:focus-visible {
|
|
529
|
-
outline: var(--lake-input-outline);
|
|
530
|
-
outline-offset: -2px;
|
|
531
|
-
}
|
|
532
|
-
.lake-popup .lake-row {
|
|
533
|
-
padding-bottom: 8px;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.lake-menu {
|
|
537
|
-
position: absolute;
|
|
538
|
-
top: 0;
|
|
539
|
-
left: 0;
|
|
540
|
-
z-index: var(--lake-popup-z-index);
|
|
541
|
-
list-style: none;
|
|
542
|
-
border: 1px solid var(--lake-popup-border-color);
|
|
543
|
-
border-radius: 5px;
|
|
544
|
-
margin: 0;
|
|
545
|
-
padding: 4px 8px;
|
|
546
|
-
width: fit-content;
|
|
547
|
-
background-color: #fff;
|
|
548
|
-
box-shadow: var(--lake-popup-shadow);
|
|
549
|
-
display: none;
|
|
550
|
-
max-height: 180px;
|
|
551
|
-
overflow-y: scroll;
|
|
552
|
-
scrollbar-width: thin;
|
|
553
|
-
user-select: none;
|
|
554
|
-
}
|
|
555
|
-
.lake-menu .lake-menu-item {
|
|
556
|
-
display: flex;
|
|
557
|
-
align-items: center;
|
|
558
|
-
cursor: pointer;
|
|
559
|
-
margin: 0;
|
|
560
|
-
padding: 4px 8px;
|
|
561
|
-
border-radius: 5px;
|
|
562
|
-
scroll-margin: 4px 0;
|
|
563
|
-
}
|
|
564
|
-
.lake-menu .lake-menu-item-selected {
|
|
565
|
-
background-color: var(--lake-background-active-color);
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.lake-resizer {
|
|
569
|
-
user-select: none;
|
|
570
|
-
display: none;
|
|
571
|
-
}
|
|
572
|
-
.lake-resizer-top-left,
|
|
573
|
-
.lake-resizer-top-right,
|
|
574
|
-
.lake-resizer-bottom-left,
|
|
575
|
-
.lake-resizer-bottom-right {
|
|
576
|
-
position: absolute;
|
|
577
|
-
width: 12px;
|
|
578
|
-
height: 12px;
|
|
579
|
-
line-height: 0;
|
|
580
|
-
z-index: 1;
|
|
581
|
-
border: 1px solid #fff;
|
|
582
|
-
border-radius: 6px;
|
|
583
|
-
background-color: var(--lake-box-border-focus-color);
|
|
584
|
-
}
|
|
585
|
-
.lake-resizer-top-left {
|
|
586
|
-
top: -5px;
|
|
587
|
-
left: -5px;
|
|
588
|
-
cursor: nwse-resize;
|
|
589
|
-
}
|
|
590
|
-
.lake-resizer-top-right {
|
|
591
|
-
top: -5px;
|
|
592
|
-
right: -5px;
|
|
593
|
-
cursor: nesw-resize;
|
|
594
|
-
}
|
|
595
|
-
.lake-resizer-bottom-left {
|
|
596
|
-
bottom: -5px;
|
|
597
|
-
left: -5px;
|
|
598
|
-
cursor: nesw-resize;
|
|
599
|
-
}
|
|
600
|
-
.lake-resizer-bottom-right {
|
|
601
|
-
bottom: -5px;
|
|
602
|
-
right: -5px;
|
|
603
|
-
cursor: nwse-resize;
|
|
604
|
-
}
|
|
605
|
-
.lake-resizer-info {
|
|
606
|
-
position: absolute;
|
|
607
|
-
bottom: 8px;
|
|
608
|
-
right: 8px;
|
|
609
|
-
z-index: 1;
|
|
610
|
-
border-radius: 4px;
|
|
611
|
-
background-color: rgba(0, 0, 0, .4);
|
|
612
|
-
padding: 2px 8px;
|
|
613
|
-
font-size: 14px;
|
|
614
|
-
line-height: normal;
|
|
615
|
-
color: #fff;
|
|
616
|
-
white-space: nowrap;
|
|
617
|
-
display: none;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
.lake-corner-toolbar {
|
|
621
|
-
position: absolute;
|
|
622
|
-
top: 8px;
|
|
623
|
-
right: 8px;
|
|
624
|
-
z-index: 2;
|
|
625
|
-
border-radius: 4px;
|
|
626
|
-
background-color: rgba(0, 0, 0, .4);
|
|
627
|
-
line-height: 0;
|
|
628
|
-
display: flex;
|
|
629
|
-
align-items: center;
|
|
630
|
-
padding: 0 6px;
|
|
631
|
-
display: none;
|
|
632
|
-
}
|
|
633
|
-
.lake-corner-toolbar button {
|
|
634
|
-
border-radius: 5px;
|
|
635
|
-
border: 0;
|
|
636
|
-
color: var(--lake-text-color);
|
|
637
|
-
background-color: transparent;
|
|
638
|
-
padding: 0;
|
|
639
|
-
margin: 0;
|
|
640
|
-
line-height: 0;
|
|
641
|
-
cursor: pointer;
|
|
642
|
-
user-select: none;
|
|
643
|
-
}
|
|
644
|
-
.lake-corner-toolbar button svg {
|
|
645
|
-
fill: #fff;
|
|
646
|
-
width: 16px;
|
|
647
|
-
height: 16px;
|
|
648
|
-
margin: 6px;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.lake-container.lake-format-painter {
|
|
652
|
-
/* file: ../svg/format-painter-cursor.svg */
|
|
653
|
-
cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 600 400'%3E%3Cpath fill='none' d='M397 401H1V1h600v400H397m27.39-160.456v-37.606h5.963c41.821 0 83.642.024 125.463-.016 10.848-.01 17.325-6 17.358-16.286.096-30.823.1-61.648 0-92.471-.034-10.554-5.94-16.103-16.674-16.16-6.45-.035-12.899-.007-19.657-.007 0-8.783.063-17.08-.018-25.374-.079-7.94-3.319-11.204-11.29-11.207-73.81-.03-147.621-.034-221.432.004-8.106.004-11.091 3.142-11.096 11.293-.02 32.99-.02 65.98-.003 98.97.005 8.202 3.26 11.461 11.504 11.463 73.644.015 147.289.016 220.933-.002 8.157-.002 11.373-3.312 11.393-11.649.036-14.662.003-29.324.02-43.986.002-1.608.14-3.216.215-4.84h11.502v75.804h-5.843c-41.487 0-82.975-.005-124.462.003-12.796.002-18.147 5.394-18.162 18.306-.017 14.662.002 29.324-.015 43.987-.002 1.432-.153 2.865-.249 4.53-5.076 0-9.73.089-14.38-.027-3.776-.095-5.384 1.436-5.371 5.34.099 29.489-.097 58.98.155 88.468.142 16.617 14.312 30.632 30.552 30.954 17.736.352 32.858-12.285 33.16-29.098.542-30.313.202-60.641.302-90.963.011-3.525-1.706-4.728-4.922-4.686-3.832.05-7.676-.172-11.493.067-3.036.19-3.824-1.148-3.452-4.81M98.997 123.5v81.255H76.999v22.088h21.982c0 2.045.005 3.674 0 5.303-.087 25.83-.49 51.664-.091 77.487.143 9.23-2.38 16.953-7.836 24.049-.913 1.187-1.723 2.452-2.59 3.675-9.838 13.893-23.103 21.722-40.24 22.51-4.767.218-9.553.032-14.914.032v22.282c32.478 3.01 58.566-8.283 76.789-36.428 17.756 26.721 48.899 40.773 78.248 36.027l-1.083-21.66c-2.256 0-3.75-.08-5.232.012-21.104 1.302-37.87-6.871-50.84-23.287-6.506-8.233-10.772-16.802-10.401-28.137.833-25.47.26-50.985.26-76.482v-5.482h21.96v-22.25h-21.96v-5.966c0-32.329.294-64.663-.185-96.985-.141-9.484 1.949-17.494 7.541-25.066 12.268-16.61 27.766-26.975 49.095-26.868 3.12.015 6.24.002 10.04.002V27.314c-15.008-.802-29.72-.048-43.6 7.157-13.625 7.073-25.309 16.192-33.954 29.838-8.595-13.434-19.139-23.646-33.21-30.154-14.041-6.495-28.642-7.867-43.307-6.781V49.62c4.253 0 7.742.003 11.23 0 7.756-.006 14.966 1.724 22.189 4.873 10.95 4.774 18.144 12.992 24.784 22.4 5.426 7.69 8.207 15.646 7.43 25.118-.555 6.787-.107 13.657-.107 21.489z'/%3E%3Cpath fill='%23020202' d='M424.39 241.051c-.371 3.156.417 4.494 3.453 4.304 3.817-.239 7.661-.017 11.493-.067 3.216-.042 4.933 1.161 4.922 4.686-.1 30.322.24 60.65-.303 90.963-.3 16.813-15.423 29.45-33.159 29.098-16.24-.322-30.41-14.337-30.552-30.954-.252-29.488-.056-58.98-.155-88.469-.013-3.903 1.595-5.434 5.371-5.34 4.65.117 9.304.028 14.38.028.096-1.665.247-3.098.249-4.53.017-14.663-.002-29.325.015-43.987.015-12.912 5.366-18.304 18.162-18.306 41.487-.008 82.975-.003 124.462-.003h5.843V102.67H537.07c-.075 1.624-.213 3.232-.215 4.84-.017 14.662.016 29.324-.02 43.986-.02 8.337-3.236 11.647-11.393 11.649-73.644.018-147.289.017-220.933.002-8.244-.002-11.5-3.261-11.504-11.462-.016-32.99-.017-65.98.003-98.97.005-8.152 2.99-11.29 11.096-11.294 73.81-.038 147.622-.034 221.433-.004 7.97.003 11.21 3.266 11.289 11.207.081 8.295.018 16.59.018 25.374 6.758 0 13.208-.028 19.657.006 10.734.058 16.64 5.607 16.674 16.16.1 30.824.096 61.649 0 92.472-.033 10.286-6.51 16.275-17.358 16.286-41.821.04-83.642.016-125.463.016h-5.962v38.113z'/%3E%3Cpath fill='%23040404' d='M98.997 123c0-7.332-.448-14.202.108-20.989.776-9.472-2.005-17.429-7.431-25.118-6.64-9.408-13.834-17.626-24.784-22.4-7.223-3.15-14.433-4.879-22.189-4.873-3.488.003-6.977 0-11.23 0V27.374c14.665-1.086 29.266.286 43.307 6.78 14.071 6.51 24.615 16.72 33.21 30.155 8.645-13.646 20.33-22.765 33.954-29.838 13.88-7.205 28.592-7.959 43.6-7.157V49.61c-3.8 0-6.92.013-10.04-.002-21.329-.107-36.827 10.259-49.095 26.868-5.592 7.572-7.682 15.582-7.541 25.066.479 32.322.185 64.656.186 96.985v5.966h21.958v22.25h-21.958v5.482c0 25.497.572 51.013-.261 76.482-.37 11.335 3.895 19.904 10.4 28.137 12.97 16.416 29.737 24.589 50.84 23.287 1.483-.092 2.977-.012 5.233-.012l1.083 21.66c-29.349 4.746-60.492-9.306-78.248-36.027-18.223 28.145-44.31 39.438-76.79 36.428v-22.282c5.362 0 10.148.186 14.914-.033 17.138-.787 30.403-8.616 40.242-22.509.866-1.223 1.676-2.488 2.589-3.675 5.455-7.096 7.979-14.82 7.836-24.05-.4-25.822.004-51.656.09-77.486.006-1.63 0-3.258 0-5.303H77v-22.088h21.997V123z'/%3E%3C/svg%3E") 2 2, text;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
.lake-container h1,
|
|
657
|
-
.lake-container h2,
|
|
658
|
-
.lake-container h3,
|
|
659
|
-
.lake-container h4,
|
|
660
|
-
.lake-container h5,
|
|
661
|
-
.lake-container h6 {
|
|
662
|
-
font-weight: bold;
|
|
663
|
-
line-height: normal;
|
|
664
|
-
border: 0;
|
|
665
|
-
margin: 0;
|
|
666
|
-
padding: 0;
|
|
667
|
-
}
|
|
668
|
-
.lake-container h1 {
|
|
669
|
-
font-size: 36px;
|
|
670
|
-
margin-bottom: 16px;
|
|
671
|
-
}
|
|
672
|
-
.lake-container h2 {
|
|
673
|
-
font-size: 30px;
|
|
674
|
-
margin-bottom: 14px;
|
|
675
|
-
}
|
|
676
|
-
.lake-container h3 {
|
|
677
|
-
font-size: 24px;
|
|
678
|
-
margin-bottom: 14px;
|
|
679
|
-
}
|
|
680
|
-
.lake-container h4 {
|
|
681
|
-
font-size: 20px;
|
|
682
|
-
margin-bottom: 12px;
|
|
683
|
-
}
|
|
684
|
-
.lake-container h5 {
|
|
685
|
-
font-size: 18px;
|
|
686
|
-
margin-bottom: 10px;
|
|
687
|
-
}
|
|
688
|
-
.lake-container h6 {
|
|
689
|
-
font-size: 16px;
|
|
690
|
-
margin-bottom: 8px;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.lake-container ol,
|
|
694
|
-
.lake-container ul {
|
|
695
|
-
list-style: none;
|
|
696
|
-
margin: 0;
|
|
697
|
-
margin-bottom: 4px;
|
|
698
|
-
padding: 0;
|
|
699
|
-
}
|
|
700
|
-
.lake-container ol lake-box[name="emoji"],
|
|
701
|
-
.lake-container ul lake-box[name="emoji"] {
|
|
702
|
-
vertical-align: middle;
|
|
703
|
-
}
|
|
704
|
-
.lake-container ol[indent="1"],
|
|
705
|
-
.lake-container ul[indent="1"] {
|
|
706
|
-
padding-left: 2em;
|
|
707
|
-
}
|
|
708
|
-
.lake-container ol[indent="2"],
|
|
709
|
-
.lake-container ul[indent="2"] {
|
|
710
|
-
padding-left: 4em;
|
|
711
|
-
}
|
|
712
|
-
.lake-container ol[indent="3"],
|
|
713
|
-
.lake-container ul[indent="3"] {
|
|
714
|
-
padding-left: 6em;
|
|
715
|
-
}
|
|
716
|
-
.lake-container ol[indent="4"],
|
|
717
|
-
.lake-container ul[indent="4"] {
|
|
718
|
-
padding-left: 8em;
|
|
719
|
-
}
|
|
720
|
-
.lake-container ol[indent="5"],
|
|
721
|
-
.lake-container ul[indent="5"] {
|
|
722
|
-
padding-left: 10em;
|
|
723
|
-
}
|
|
724
|
-
.lake-container ol[indent="6"],
|
|
725
|
-
.lake-container ul[indent="6"] {
|
|
726
|
-
padding-left: 12em;
|
|
727
|
-
}
|
|
728
|
-
.lake-container ol[indent="7"],
|
|
729
|
-
.lake-container ul[indent="7"] {
|
|
730
|
-
padding-left: 14em;
|
|
731
|
-
}
|
|
732
|
-
.lake-container ol[indent="8"],
|
|
733
|
-
.lake-container ul[indent="8"] {
|
|
734
|
-
padding-left: 16em;
|
|
735
|
-
}
|
|
736
|
-
.lake-container ol[indent="9"],
|
|
737
|
-
.lake-container ul[indent="9"] {
|
|
738
|
-
padding-left: 18em;
|
|
739
|
-
}
|
|
740
|
-
.lake-container ol[indent="10"],
|
|
741
|
-
.lake-container ul[indent="10"] {
|
|
742
|
-
padding-left: 20em;
|
|
743
|
-
}
|
|
744
|
-
.lake-container ol li,
|
|
745
|
-
.lake-container ul li {
|
|
746
|
-
margin-left: 20px;
|
|
747
|
-
padding-left: 4px;
|
|
748
|
-
}
|
|
749
|
-
.lake-container ol li {
|
|
750
|
-
list-style: decimal;
|
|
751
|
-
}
|
|
752
|
-
.lake-container ul li {
|
|
753
|
-
list-style: disc;
|
|
754
|
-
}
|
|
755
|
-
.lake-container ol[indent="1"] li,
|
|
756
|
-
.lake-container ol[indent="4"] li,
|
|
757
|
-
.lake-container ol[indent="7"] li,
|
|
758
|
-
.lake-container ol[indent="10"] li {
|
|
759
|
-
list-style-type: lower-alpha;
|
|
760
|
-
}
|
|
761
|
-
.lake-container ol[indent="2"] li,
|
|
762
|
-
.lake-container ol[indent="5"] li,
|
|
763
|
-
.lake-container ol[indent="8"] li {
|
|
764
|
-
list-style-type: lower-roman;
|
|
765
|
-
}
|
|
766
|
-
.lake-container ul[indent="1"] li,
|
|
767
|
-
.lake-container ul[indent="4"] li,
|
|
768
|
-
.lake-container ul[indent="7"] li,
|
|
769
|
-
.lake-container ul[indent="10"] li {
|
|
770
|
-
list-style-type: circle;
|
|
771
|
-
}
|
|
772
|
-
.lake-container ul[indent="2"] li,
|
|
773
|
-
.lake-container ul[indent="5"] li,
|
|
774
|
-
.lake-container ul[indent="8"] li {
|
|
775
|
-
list-style-type: square;
|
|
776
|
-
}
|
|
777
|
-
.lake-container ul[type="checklist"] li {
|
|
778
|
-
list-style: none;
|
|
779
|
-
position: relative;
|
|
780
|
-
margin-left: 0;
|
|
781
|
-
padding-left: 24px;
|
|
782
|
-
}
|
|
783
|
-
.lake-container ul[type="checklist"] li::before {
|
|
784
|
-
box-sizing: content-box;
|
|
785
|
-
content: '';
|
|
786
|
-
position: absolute;
|
|
787
|
-
top: 3px;
|
|
788
|
-
left: 0;
|
|
789
|
-
width: 16px;
|
|
790
|
-
height: 16px;
|
|
791
|
-
border-radius: 4px;
|
|
792
|
-
}
|
|
793
|
-
.lake-container ul[type="checklist"] li[value="true"]::before {
|
|
794
|
-
border: 1px solid #1890ff;
|
|
795
|
-
background-color: #1890ff;
|
|
796
|
-
}
|
|
797
|
-
.lake-container ul[type="checklist"] li[value="false"]::before {
|
|
798
|
-
border: 1px solid var(--lake-border-color);
|
|
799
|
-
background-color: #fff;
|
|
800
|
-
}
|
|
801
|
-
.lake-container ul[type="checklist"] li::after {
|
|
802
|
-
box-sizing: content-box;
|
|
803
|
-
content: '';
|
|
804
|
-
position: absolute;
|
|
805
|
-
top: 3px;
|
|
806
|
-
left: 0;
|
|
807
|
-
margin-left: 4px;
|
|
808
|
-
margin-top: 8px;
|
|
809
|
-
width: 4px;
|
|
810
|
-
height: 8px;
|
|
811
|
-
border-bottom: 2px solid #fff;
|
|
812
|
-
border-right: 2px solid #fff;
|
|
813
|
-
border-radius: 1px;
|
|
814
|
-
transform: rotate(45deg) scale(1) translate(-50%,-50%);
|
|
815
|
-
}
|
|
816
|
-
.lake-container[contenteditable="true"] ul[type="checklist"] li::before {
|
|
817
|
-
cursor: pointer;
|
|
818
|
-
}
|
|
819
|
-
.lake-container[contenteditable="true"] ul[type="checklist"] li::after {
|
|
820
|
-
cursor: pointer;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.lake-container blockquote {
|
|
824
|
-
margin: 0;
|
|
825
|
-
margin-bottom: 8px;
|
|
826
|
-
padding: 8px 12px;
|
|
827
|
-
color: var(--lake-secondary-text-color);
|
|
828
|
-
border-left: 4px solid #0505050f;
|
|
829
|
-
}
|
|
830
|
-
.lake-container blockquote[type] {
|
|
831
|
-
margin: 16px 0;
|
|
832
|
-
padding: 16px 20px;
|
|
833
|
-
color: var(--lake-text-color);
|
|
834
|
-
border: 1px solid transparent;
|
|
835
|
-
border-radius: 8px;
|
|
836
|
-
}
|
|
837
|
-
.lake-container blockquote[type="info"] {
|
|
838
|
-
background-color: #8e96aa24;
|
|
839
|
-
}
|
|
840
|
-
.lake-container blockquote[type="tip"] {
|
|
841
|
-
background-color: #646cff24;
|
|
842
|
-
}
|
|
843
|
-
.lake-container blockquote[type="warning"] {
|
|
844
|
-
background-color: #eab30824;
|
|
845
|
-
}
|
|
846
|
-
.lake-container blockquote[type="danger"] {
|
|
847
|
-
background-color: #f43f5e24;
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
.lake-toolbar {
|
|
851
|
-
box-sizing: border-box;
|
|
852
|
-
font-family: var(--lake-font-family);
|
|
853
|
-
font-size: 14px;
|
|
854
|
-
font-weight: normal;
|
|
855
|
-
line-height: normal;
|
|
856
|
-
padding: 4px;
|
|
857
|
-
display: flex;
|
|
858
|
-
flex-wrap: wrap;
|
|
859
|
-
align-items: center;
|
|
860
|
-
}
|
|
861
|
-
.lake-toolbar *,
|
|
862
|
-
.lake-toolbar ::before,
|
|
863
|
-
.lake-toolbar ::after {
|
|
864
|
-
box-sizing: border-box;
|
|
865
|
-
}
|
|
866
|
-
.lake-toolbar .lake-toolbar-divider {
|
|
867
|
-
width: 1px;
|
|
868
|
-
height: 20px;
|
|
869
|
-
margin: 0 4px;
|
|
870
|
-
border-left: 1px solid var(--lake-border-color);
|
|
871
|
-
user-select: none;
|
|
872
|
-
}
|
|
873
|
-
.lake-toolbar .lake-upload {
|
|
874
|
-
line-height: 0;
|
|
875
|
-
}
|
|
876
|
-
.lake-toolbar .lake-upload input[type="file"] {
|
|
877
|
-
display: none;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
.lake-floating-toolbar {
|
|
881
|
-
position: absolute;
|
|
882
|
-
top: 0;
|
|
883
|
-
left: 0;
|
|
884
|
-
z-index: var(--lake-popup-z-index);
|
|
885
|
-
border: 1px solid var(--lake-border-color);
|
|
886
|
-
border-radius: 5px;
|
|
887
|
-
background-color: #fff;
|
|
888
|
-
box-shadow: var(--lake-button-shadow);
|
|
889
|
-
padding: 4px;
|
|
890
|
-
display: flex;
|
|
891
|
-
align-items: center;
|
|
892
|
-
}
|
|
893
|
-
.lake-floating-toolbar .lake-toolbar-divider {
|
|
894
|
-
width: 1px;
|
|
895
|
-
height: 20px;
|
|
896
|
-
margin: 0 4px;
|
|
897
|
-
border-left: 1px solid var(--lake-border-color);
|
|
898
|
-
user-select: none;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.lake-container table {
|
|
902
|
-
display: table;
|
|
903
|
-
border-collapse: collapse;
|
|
904
|
-
border: 0;
|
|
905
|
-
margin: 20px 0;
|
|
906
|
-
overflow: visible;
|
|
907
|
-
}
|
|
908
|
-
.lake-container table tr,
|
|
909
|
-
.lake-container table tr:nth-child(n) {
|
|
910
|
-
border: 0;
|
|
911
|
-
background-color: transparent;
|
|
912
|
-
}
|
|
913
|
-
.lake-container table td {
|
|
914
|
-
font-size: var(--lake-font-size);
|
|
915
|
-
padding: 8px 16px;
|
|
916
|
-
min-width: 33px;
|
|
917
|
-
border: 1px solid var(--lake-border-color);
|
|
918
|
-
}
|
|
919
|
-
.lake-container table td p {
|
|
920
|
-
margin-bottom: 0;
|
|
921
|
-
}
|
|
922
|
-
.lake-container table td.lake-td-focused {
|
|
923
|
-
outline: var(--lake-input-outline);
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.lake-link-popup {
|
|
927
|
-
position: absolute;
|
|
928
|
-
top: 0;
|
|
929
|
-
left: 0;
|
|
930
|
-
z-index: var(--lake-popup-z-index);
|
|
931
|
-
border: 1px solid var(--lake-popup-border-color);
|
|
932
|
-
border-radius: 5px;
|
|
933
|
-
padding: 16px;
|
|
934
|
-
width: fit-content;
|
|
935
|
-
background-color: #fff;
|
|
936
|
-
box-shadow: var(--lake-popup-shadow);
|
|
937
|
-
display: none;
|
|
938
|
-
}
|
|
939
|
-
.lake-link-popup .lake-url-row {
|
|
940
|
-
display: flex;
|
|
941
|
-
align-items: center;
|
|
942
|
-
}
|
|
943
|
-
.lake-link-popup .lake-button-row {
|
|
944
|
-
padding-top: 16px;
|
|
945
|
-
display: flex;
|
|
946
|
-
align-items: center;
|
|
947
|
-
justify-content: space-between;
|
|
948
|
-
}
|
|
949
|
-
.lake-link-popup input[type="text"] {
|
|
950
|
-
width: 220px;
|
|
951
|
-
margin-right: 4px;
|
|
952
|
-
}
|
|
953
|
-
.lake-link-popup button[name="copy"] svg:first-child {
|
|
954
|
-
display: inline;
|
|
955
|
-
}
|
|
956
|
-
.lake-link-popup button[name="copy"] svg:nth-child(2) {
|
|
957
|
-
display: none;
|
|
958
|
-
fill: var(--lake-success-color);
|
|
959
|
-
}
|
|
960
|
-
.lake-link-popup button[name="copy"] svg:last-child {
|
|
961
|
-
display: none;
|
|
962
|
-
fill: var(--lake-error-color);
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
lake-box[name="hr"] {
|
|
966
|
-
margin-bottom: 8px;
|
|
967
|
-
}
|
|
968
|
-
.lake-hr {
|
|
969
|
-
height: 21px;
|
|
970
|
-
display: flex;
|
|
971
|
-
align-items: center;
|
|
972
|
-
}
|
|
973
|
-
.lake-container[contenteditable="true"] .lake-hr {
|
|
974
|
-
cursor: pointer;
|
|
975
|
-
}
|
|
976
|
-
.lake-container[contenteditable="false"] .lake-hr {
|
|
977
|
-
cursor: default;
|
|
978
|
-
}
|
|
979
|
-
.lake-container[contenteditable="true"] lake-box[name="hr"] .lake-box-hovered .lake-hr {
|
|
980
|
-
background-color: var(--lake-box-background-color);
|
|
981
|
-
}
|
|
982
|
-
lake-box[name="hr"] .lake-box-selected .lake-hr,
|
|
983
|
-
lake-box[name="hr"] .lake-box-focused .lake-hr {
|
|
984
|
-
background-color: var(--lake-selection-background-color);
|
|
985
|
-
}
|
|
986
|
-
.lake-hr hr {
|
|
987
|
-
width: 100%;
|
|
988
|
-
margin: 0;
|
|
989
|
-
padding: 0;
|
|
990
|
-
border: 0;
|
|
991
|
-
border-top: 1px solid var(--lake-border-color);
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
/* CodeMirror */
|
|
995
|
-
.cm-editor {
|
|
996
|
-
font-size: 14px;
|
|
997
|
-
border-radius: 5px;
|
|
998
|
-
background-color: var(--lake-box-background-color);
|
|
999
|
-
}
|
|
1000
|
-
.cm-editor.cm-focused {
|
|
1001
|
-
outline: none;
|
|
1002
|
-
}
|
|
1003
|
-
.cm-editor .cm-content {
|
|
1004
|
-
font-family: Consolas, Courier, monospace;
|
|
1005
|
-
margin: 16px 20px;
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
/* code block */
|
|
1009
|
-
lake-box[name="codeBlock"] {
|
|
1010
|
-
margin-bottom: 16px;
|
|
1011
|
-
}
|
|
1012
|
-
lake-box[name="codeBlock"] .lake-box-focused .lake-code-block,
|
|
1013
|
-
lake-box[name="codeBlock"] .lake-box-activated .lake-code-block {
|
|
1014
|
-
border-color: var(--lake-box-border-color);
|
|
1015
|
-
}
|
|
1016
|
-
.lake-code-block {
|
|
1017
|
-
position: relative;
|
|
1018
|
-
border: 1px solid transparent;
|
|
1019
|
-
border-radius: 5px;
|
|
1020
|
-
}
|
|
1021
|
-
.lake-code-block .lake-dropdown {
|
|
1022
|
-
position: absolute;
|
|
1023
|
-
top: 2px;
|
|
1024
|
-
inset-inline-end: 2px;
|
|
1025
|
-
display: none;
|
|
1026
|
-
}
|
|
1027
|
-
lake-box[name="codeBlock"] .lake-box-focused .lake-code-block .lake-dropdown,
|
|
1028
|
-
lake-box[name="codeBlock"] .lake-box-activated .lake-code-block .lake-dropdown {
|
|
1029
|
-
display: block;
|
|
1030
|
-
}
|
|
1031
|
-
.lake-code-block .lake-dropdown .lake-dropdown-title {
|
|
1032
|
-
margin: 0;
|
|
1033
|
-
padding-right: 4px;
|
|
1034
|
-
background-color: var(--lake-box-background-color);
|
|
1035
|
-
}
|
|
1036
|
-
.lake-code-block .lake-dropdown.lake-list-dropdown .lake-dropdown-title-hovered {
|
|
1037
|
-
background-color: var(--lake-background-active-color);
|
|
1038
|
-
}
|
|
1039
|
-
.lake-code-block .lake-dropdown .lake-dropdown-text {
|
|
1040
|
-
margin: 3px 6px;
|
|
1041
|
-
}
|
|
1042
|
-
.lake-code-block .lake-dropdown .lake-dropdown-down-icon svg {
|
|
1043
|
-
margin: 5px 2px;
|
|
1044
|
-
}
|
|
1045
|
-
.lake-code-block .lake-dropdown .lake-dropdown-menu {
|
|
1046
|
-
top: 24px;
|
|
1047
|
-
left: auto;
|
|
1048
|
-
right: 0;
|
|
1049
|
-
}
|
|
1050
|
-
.lake-code-block-error {
|
|
1051
|
-
font-size: 14px;
|
|
1052
|
-
color: var(--lake-error-color);
|
|
1053
|
-
border-radius: 5px;
|
|
1054
|
-
background-color: var(--lake-box-background-color);
|
|
1055
|
-
padding: 16px 20px;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.lake-image-placeholder {
|
|
1059
|
-
display: flex;
|
|
1060
|
-
align-items: center;
|
|
1061
|
-
justify-content: center;
|
|
1062
|
-
border: 1px solid transparent;
|
|
1063
|
-
background-color: #fafafa;
|
|
1064
|
-
border-radius: 4px;
|
|
1065
|
-
width: 100%;
|
|
1066
|
-
height: 100%;
|
|
1067
|
-
}
|
|
1068
|
-
.lake-image-placeholder svg {
|
|
1069
|
-
fill: #d9d9d9;
|
|
1070
|
-
width: 50%;
|
|
1071
|
-
max-width: 64px;
|
|
1072
|
-
height: 50%;
|
|
1073
|
-
max-height: 64px;
|
|
1074
|
-
}
|
|
1075
|
-
.lake-image {
|
|
1076
|
-
position: relative;
|
|
1077
|
-
line-height: 0;
|
|
1078
|
-
border: 1px solid transparent;
|
|
1079
|
-
border-radius: 4px;
|
|
1080
|
-
}
|
|
1081
|
-
.lake-image .lake-image-img {
|
|
1082
|
-
border: 0;
|
|
1083
|
-
border-radius: 4px;
|
|
1084
|
-
width: 100%;
|
|
1085
|
-
height: 100%;
|
|
1086
|
-
}
|
|
1087
|
-
lake-box[name="image"] .lake-box-focused .lake-image {
|
|
1088
|
-
border-color: var(--lake-box-border-focus-color);
|
|
1089
|
-
}
|
|
1090
|
-
.lake-image-caption {
|
|
1091
|
-
-webkit-user-modify: read-write-plaintext-only;
|
|
1092
|
-
position: relative;
|
|
1093
|
-
font-size: 14px;
|
|
1094
|
-
line-height: normal;
|
|
1095
|
-
text-align: start;
|
|
1096
|
-
color: var(--lake-secondary-text-color);
|
|
1097
|
-
padding-top: 2px;
|
|
1098
|
-
padding-bottom: 8px;
|
|
1099
|
-
display: none;
|
|
1100
|
-
}
|
|
1101
|
-
.lake-image-caption:focus {
|
|
1102
|
-
outline: 0;
|
|
1103
|
-
}
|
|
1104
|
-
.lake-image-caption.lake-placeholder::before {
|
|
1105
|
-
position: absolute;
|
|
1106
|
-
top: 2px;
|
|
1107
|
-
left: 0;
|
|
1108
|
-
color: var(--lake-secondary-text-color);
|
|
1109
|
-
content: attr(placeholder);
|
|
1110
|
-
pointer-events: none;
|
|
1111
|
-
}
|
|
1112
|
-
/* uploading status */
|
|
1113
|
-
.lake-image-uploading .lake-image-img {
|
|
1114
|
-
opacity: 0.5;
|
|
1115
|
-
}
|
|
1116
|
-
.lake-image .lake-progress {
|
|
1117
|
-
position: absolute;
|
|
1118
|
-
bottom: 8px;
|
|
1119
|
-
right: 8px;
|
|
1120
|
-
z-index: 1;
|
|
1121
|
-
border-radius: 4px;
|
|
1122
|
-
background-color: rgba(0, 0, 0, .4);
|
|
1123
|
-
line-height: 0;
|
|
1124
|
-
display: flex;
|
|
1125
|
-
align-items: center;
|
|
1126
|
-
padding: 0 6px;
|
|
1127
|
-
}
|
|
1128
|
-
.lake-image .lake-progress svg {
|
|
1129
|
-
fill: #fff;
|
|
1130
|
-
width: 16px;
|
|
1131
|
-
height: 16px;
|
|
1132
|
-
margin: 6px;
|
|
1133
|
-
animation: lakerotate 1s linear 0s infinite normal none;
|
|
1134
|
-
}
|
|
1135
|
-
.lake-image .lake-progress .lake-percent {
|
|
1136
|
-
font-size: 14px;
|
|
1137
|
-
color: #fff;
|
|
1138
|
-
margin: 6px;
|
|
1139
|
-
white-space: nowrap;
|
|
1140
|
-
}
|
|
1141
|
-
/* error status */
|
|
1142
|
-
.lake-image .lake-error {
|
|
1143
|
-
padding: 16px;
|
|
1144
|
-
}
|
|
1145
|
-
.lake-image.lake-image-error {
|
|
1146
|
-
border: 1px solid var(--lake-box-border-color);
|
|
1147
|
-
}
|
|
1148
|
-
.lake-image.lake-image-error ::selection {
|
|
1149
|
-
background-color: transparent;
|
|
1150
|
-
}
|
|
1151
|
-
lake-box[name="image"] .lake-box-selected .lake-image-error {
|
|
1152
|
-
background-color: var(--lake-selection-background-color);
|
|
1153
|
-
}
|
|
1154
|
-
.lake-image .lake-error-icon {
|
|
1155
|
-
line-height: 0;
|
|
1156
|
-
text-align: center;
|
|
1157
|
-
margin-bottom: 8px;
|
|
1158
|
-
}
|
|
1159
|
-
.lake-image .lake-error-icon svg {
|
|
1160
|
-
fill: var(--lake-error-color);
|
|
1161
|
-
width: 64px;
|
|
1162
|
-
height: 64px;
|
|
1163
|
-
}
|
|
1164
|
-
.lake-image .lake-error-name {
|
|
1165
|
-
color: var(--lake-error-color);
|
|
1166
|
-
line-height: normal;
|
|
1167
|
-
}
|
|
1168
|
-
/* full screen */
|
|
1169
|
-
.lake-pswp .pswp__button svg {
|
|
1170
|
-
fill: #fff;
|
|
1171
|
-
width: 24px;
|
|
1172
|
-
height: 24px;
|
|
1173
|
-
}
|
|
1174
|
-
.lake-pswp .pswp__img,
|
|
1175
|
-
.lake-pswp.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img,
|
|
1176
|
-
.lake-pswp.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
|
|
1177
|
-
cursor: pointer;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
|
|
1181
|
-
|
|
1182
|
-
.pswp {
|
|
1183
|
-
--pswp-bg: #000;
|
|
1184
|
-
--pswp-placeholder-bg: #222;
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
--pswp-root-z-index: 100000;
|
|
1188
|
-
|
|
1189
|
-
--pswp-preloader-color: rgba(79, 79, 79, 0.4);
|
|
1190
|
-
--pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
|
|
1191
|
-
|
|
1192
|
-
/* defined via js:
|
|
1193
|
-
--pswp-transition-duration: 333ms; */
|
|
1194
|
-
|
|
1195
|
-
--pswp-icon-color: #fff;
|
|
1196
|
-
--pswp-icon-color-secondary: #4f4f4f;
|
|
1197
|
-
--pswp-icon-stroke-color: #4f4f4f;
|
|
1198
|
-
--pswp-icon-stroke-width: 2px;
|
|
1199
|
-
|
|
1200
|
-
--pswp-error-text-color: var(--pswp-icon-color);
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
/*
|
|
1205
|
-
Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
|
|
1206
|
-
*/
|
|
1207
|
-
|
|
1208
|
-
.pswp {
|
|
1209
|
-
position: fixed;
|
|
1210
|
-
top: 0;
|
|
1211
|
-
left: 0;
|
|
1212
|
-
width: 100%;
|
|
1213
|
-
height: 100%;
|
|
1214
|
-
z-index: var(--pswp-root-z-index);
|
|
1215
|
-
display: none;
|
|
1216
|
-
touch-action: none;
|
|
1217
|
-
outline: 0;
|
|
1218
|
-
opacity: 0.003;
|
|
1219
|
-
contain: layout style size;
|
|
1220
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
/* Prevents focus outline on the root element,
|
|
1224
|
-
(it may be focused initially) */
|
|
1225
|
-
.pswp:focus {
|
|
1226
|
-
outline: 0;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
.pswp * {
|
|
1230
|
-
box-sizing: border-box;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
.pswp img {
|
|
1234
|
-
max-width: none;
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
.pswp--open {
|
|
1238
|
-
display: block;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
|
-
.pswp,
|
|
1242
|
-
.pswp__bg {
|
|
1243
|
-
transform: translateZ(0);
|
|
1244
|
-
will-change: opacity;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
.pswp__bg {
|
|
1248
|
-
opacity: 0.005;
|
|
1249
|
-
background: var(--pswp-bg);
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.pswp,
|
|
1253
|
-
.pswp__scroll-wrap {
|
|
1254
|
-
overflow: hidden;
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
.pswp__scroll-wrap,
|
|
1258
|
-
.pswp__bg,
|
|
1259
|
-
.pswp__container,
|
|
1260
|
-
.pswp__item,
|
|
1261
|
-
.pswp__content,
|
|
1262
|
-
.pswp__img,
|
|
1263
|
-
.pswp__zoom-wrap {
|
|
1264
|
-
position: absolute;
|
|
1265
|
-
top: 0;
|
|
1266
|
-
left: 0;
|
|
1267
|
-
width: 100%;
|
|
1268
|
-
height: 100%;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.pswp__img,
|
|
1272
|
-
.pswp__zoom-wrap {
|
|
1273
|
-
width: auto;
|
|
1274
|
-
height: auto;
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
|
|
1278
|
-
cursor: -webkit-zoom-in;
|
|
1279
|
-
cursor: -moz-zoom-in;
|
|
1280
|
-
cursor: zoom-in;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
|
|
1284
|
-
cursor: move;
|
|
1285
|
-
cursor: -webkit-grab;
|
|
1286
|
-
cursor: -moz-grab;
|
|
1287
|
-
cursor: grab;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
|
|
1291
|
-
cursor: -webkit-grabbing;
|
|
1292
|
-
cursor: -moz-grabbing;
|
|
1293
|
-
cursor: grabbing;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
/* :active to override grabbing cursor */
|
|
1297
|
-
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
|
|
1298
|
-
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
|
|
1299
|
-
.pswp__img {
|
|
1300
|
-
cursor: -webkit-zoom-out;
|
|
1301
|
-
cursor: -moz-zoom-out;
|
|
1302
|
-
cursor: zoom-out;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
/* Prevent selection and tap highlights */
|
|
1307
|
-
.pswp__container,
|
|
1308
|
-
.pswp__img,
|
|
1309
|
-
.pswp__button,
|
|
1310
|
-
.pswp__counter {
|
|
1311
|
-
-webkit-user-select: none;
|
|
1312
|
-
-moz-user-select: none;
|
|
1313
|
-
-ms-user-select: none;
|
|
1314
|
-
user-select: none;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
.pswp__item {
|
|
1318
|
-
/* z-index for fade transition */
|
|
1319
|
-
z-index: 1;
|
|
1320
|
-
overflow: hidden;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
.pswp__hidden {
|
|
1324
|
-
display: none !important;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
/* Allow to click through pswp__content element, but not its children */
|
|
1328
|
-
.pswp__content {
|
|
1329
|
-
pointer-events: none;
|
|
1330
|
-
}
|
|
1331
|
-
.pswp__content > * {
|
|
1332
|
-
pointer-events: auto;
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
/*
|
|
1337
|
-
|
|
1338
|
-
PhotoSwipe UI
|
|
1339
|
-
|
|
1340
|
-
*/
|
|
1341
|
-
|
|
1342
|
-
/*
|
|
1343
|
-
Error message appears when image is not loaded
|
|
1344
|
-
(JS option errorMsg controls markup)
|
|
1345
|
-
*/
|
|
1346
|
-
.pswp__error-msg-container {
|
|
1347
|
-
display: grid;
|
|
1348
|
-
}
|
|
1349
|
-
.pswp__error-msg {
|
|
1350
|
-
margin: auto;
|
|
1351
|
-
font-size: 1em;
|
|
1352
|
-
line-height: 1;
|
|
1353
|
-
color: var(--pswp-error-text-color);
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
/*
|
|
1357
|
-
class pswp__hide-on-close is applied to elements that
|
|
1358
|
-
should hide (for example fade out) when PhotoSwipe is closed
|
|
1359
|
-
and show (for example fade in) when PhotoSwipe is opened
|
|
1360
|
-
*/
|
|
1361
|
-
.pswp .pswp__hide-on-close {
|
|
1362
|
-
opacity: 0.005;
|
|
1363
|
-
will-change: opacity;
|
|
1364
|
-
transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
|
|
1365
|
-
z-index: 10; /* always overlap slide content */
|
|
1366
|
-
pointer-events: none; /* hidden elements should not be clickable */
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
/* class pswp--ui-visible is added when opening or closing transition starts */
|
|
1370
|
-
.pswp--ui-visible .pswp__hide-on-close {
|
|
1371
|
-
opacity: 1;
|
|
1372
|
-
pointer-events: auto;
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
/* <button> styles, including css reset */
|
|
1376
|
-
.pswp__button {
|
|
1377
|
-
position: relative;
|
|
1378
|
-
display: block;
|
|
1379
|
-
width: 50px;
|
|
1380
|
-
height: 60px;
|
|
1381
|
-
padding: 0;
|
|
1382
|
-
margin: 0;
|
|
1383
|
-
overflow: hidden;
|
|
1384
|
-
cursor: pointer;
|
|
1385
|
-
background: none;
|
|
1386
|
-
border: 0;
|
|
1387
|
-
box-shadow: none;
|
|
1388
|
-
opacity: 0.85;
|
|
1389
|
-
-webkit-appearance: none;
|
|
1390
|
-
-webkit-touch-callout: none;
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
.pswp__button:hover,
|
|
1394
|
-
.pswp__button:active,
|
|
1395
|
-
.pswp__button:focus {
|
|
1396
|
-
transition: none;
|
|
1397
|
-
padding: 0;
|
|
1398
|
-
background: none;
|
|
1399
|
-
border: 0;
|
|
1400
|
-
box-shadow: none;
|
|
1401
|
-
opacity: 1;
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
.pswp__button:disabled {
|
|
1405
|
-
opacity: 0.3;
|
|
1406
|
-
cursor: auto;
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
|
-
.pswp__icn {
|
|
1410
|
-
fill: var(--pswp-icon-color);
|
|
1411
|
-
color: var(--pswp-icon-color-secondary);
|
|
1412
|
-
}
|
|
1413
|
-
|
|
1414
|
-
.pswp__icn {
|
|
1415
|
-
position: absolute;
|
|
1416
|
-
top: 14px;
|
|
1417
|
-
left: 9px;
|
|
1418
|
-
width: 32px;
|
|
1419
|
-
height: 32px;
|
|
1420
|
-
overflow: hidden;
|
|
1421
|
-
pointer-events: none;
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.pswp__icn-shadow {
|
|
1425
|
-
stroke: var(--pswp-icon-stroke-color);
|
|
1426
|
-
stroke-width: var(--pswp-icon-stroke-width);
|
|
1427
|
-
fill: none;
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
.pswp__icn:focus {
|
|
1431
|
-
outline: 0;
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
/*
|
|
1435
|
-
div element that matches size of large image,
|
|
1436
|
-
large image loads on top of it,
|
|
1437
|
-
used when msrc is not provided
|
|
1438
|
-
*/
|
|
1439
|
-
div.pswp__img--placeholder,
|
|
1440
|
-
.pswp__img--with-bg {
|
|
1441
|
-
background: var(--pswp-placeholder-bg);
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
|
-
.pswp__top-bar {
|
|
1445
|
-
position: absolute;
|
|
1446
|
-
left: 0;
|
|
1447
|
-
top: 0;
|
|
1448
|
-
width: 100%;
|
|
1449
|
-
height: 60px;
|
|
1450
|
-
display: flex;
|
|
1451
|
-
flex-direction: row;
|
|
1452
|
-
justify-content: flex-end;
|
|
1453
|
-
z-index: 10;
|
|
1454
|
-
|
|
1455
|
-
/* allow events to pass through top bar itself */
|
|
1456
|
-
pointer-events: none !important;
|
|
1457
|
-
}
|
|
1458
|
-
.pswp__top-bar > * {
|
|
1459
|
-
pointer-events: auto;
|
|
1460
|
-
/* this makes transition significantly more smooth,
|
|
1461
|
-
even though inner elements are not animated */
|
|
1462
|
-
will-change: opacity;
|
|
1463
|
-
}
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
/*
|
|
1467
|
-
|
|
1468
|
-
Close button
|
|
1469
|
-
|
|
1470
|
-
*/
|
|
1471
|
-
.pswp__button--close {
|
|
1472
|
-
margin-right: 6px;
|
|
1473
|
-
}
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
/*
|
|
1477
|
-
|
|
1478
|
-
Arrow buttons
|
|
1479
|
-
|
|
1480
|
-
*/
|
|
1481
|
-
.pswp__button--arrow {
|
|
1482
|
-
position: absolute;
|
|
1483
|
-
top: 0;
|
|
1484
|
-
width: 75px;
|
|
1485
|
-
height: 100px;
|
|
1486
|
-
top: 50%;
|
|
1487
|
-
margin-top: -50px;
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
.pswp__button--arrow:disabled {
|
|
1491
|
-
display: none;
|
|
1492
|
-
cursor: default;
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
.pswp__button--arrow .pswp__icn {
|
|
1496
|
-
top: 50%;
|
|
1497
|
-
margin-top: -30px;
|
|
1498
|
-
width: 60px;
|
|
1499
|
-
height: 60px;
|
|
1500
|
-
background: none;
|
|
1501
|
-
border-radius: 0;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
.pswp--one-slide .pswp__button--arrow {
|
|
1505
|
-
display: none;
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
/* hide arrows on touch screens */
|
|
1509
|
-
.pswp--touch .pswp__button--arrow {
|
|
1510
|
-
visibility: hidden;
|
|
1511
|
-
}
|
|
1512
|
-
|
|
1513
|
-
/* show arrows only after mouse was used */
|
|
1514
|
-
.pswp--has_mouse .pswp__button--arrow {
|
|
1515
|
-
visibility: visible;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
.pswp__button--arrow--prev {
|
|
1519
|
-
right: auto;
|
|
1520
|
-
left: 0px;
|
|
1521
|
-
}
|
|
1522
|
-
|
|
1523
|
-
.pswp__button--arrow--next {
|
|
1524
|
-
right: 0px;
|
|
1525
|
-
}
|
|
1526
|
-
.pswp__button--arrow--next .pswp__icn {
|
|
1527
|
-
left: auto;
|
|
1528
|
-
right: 14px;
|
|
1529
|
-
/* flip horizontally */
|
|
1530
|
-
transform: scale(-1, 1);
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
/*
|
|
1534
|
-
|
|
1535
|
-
Zoom button
|
|
1536
|
-
|
|
1537
|
-
*/
|
|
1538
|
-
.pswp__button--zoom {
|
|
1539
|
-
display: none;
|
|
1540
|
-
}
|
|
1541
|
-
|
|
1542
|
-
.pswp--zoom-allowed .pswp__button--zoom {
|
|
1543
|
-
display: block;
|
|
1544
|
-
}
|
|
1545
|
-
|
|
1546
|
-
/* "+" => "-" */
|
|
1547
|
-
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
|
|
1548
|
-
display: none;
|
|
1549
|
-
}
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
/*
|
|
1553
|
-
|
|
1554
|
-
Loading indicator
|
|
1555
|
-
|
|
1556
|
-
*/
|
|
1557
|
-
.pswp__preloader {
|
|
1558
|
-
position: relative;
|
|
1559
|
-
overflow: hidden;
|
|
1560
|
-
width: 50px;
|
|
1561
|
-
height: 60px;
|
|
1562
|
-
margin-right: auto;
|
|
1563
|
-
}
|
|
1564
|
-
|
|
1565
|
-
.pswp__preloader .pswp__icn {
|
|
1566
|
-
opacity: 0;
|
|
1567
|
-
transition: opacity 0.2s linear;
|
|
1568
|
-
animation: pswp-clockwise 600ms linear infinite;
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
.pswp__preloader--active .pswp__icn {
|
|
1572
|
-
opacity: 0.85;
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
@keyframes pswp-clockwise {
|
|
1576
|
-
0% { transform: rotate(0deg); }
|
|
1577
|
-
100% { transform: rotate(360deg); }
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
/*
|
|
1582
|
-
|
|
1583
|
-
"1 of 10" counter
|
|
1584
|
-
|
|
1585
|
-
*/
|
|
1586
|
-
.pswp__counter {
|
|
1587
|
-
height: 30px;
|
|
1588
|
-
margin-top: 15px;
|
|
1589
|
-
margin-inline-start: 20px;
|
|
1590
|
-
font-size: 14px;
|
|
1591
|
-
line-height: 30px;
|
|
1592
|
-
color: var(--pswp-icon-color);
|
|
1593
|
-
text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
|
|
1594
|
-
opacity: 0.85;
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
|
-
.pswp--one-slide .pswp__counter {
|
|
1598
|
-
display: none;
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
.lake-video {
|
|
1602
|
-
position: relative;
|
|
1603
|
-
font-size: 14px;
|
|
1604
|
-
font-weight: normal;
|
|
1605
|
-
line-height: 0;
|
|
1606
|
-
border: 1px solid transparent;
|
|
1607
|
-
}
|
|
1608
|
-
lake-box[name="video"] .lake-box-hovered .lake-resizer {
|
|
1609
|
-
display: block;
|
|
1610
|
-
}
|
|
1611
|
-
.lake-video .lake-video-form {
|
|
1612
|
-
padding: 16px;
|
|
1613
|
-
line-height: normal;
|
|
1614
|
-
border: 1px solid var(--lake-box-border-color);
|
|
1615
|
-
border-radius: 4px;
|
|
1616
|
-
}
|
|
1617
|
-
.lake-video input[type="text"] {
|
|
1618
|
-
font-family: var(--lake-font-family);
|
|
1619
|
-
font-size: 14px;
|
|
1620
|
-
color: var(--lake-text-color);
|
|
1621
|
-
border-radius: 5px;
|
|
1622
|
-
border: 1px solid var(--lake-input-border-color);
|
|
1623
|
-
padding: 4px 10px;
|
|
1624
|
-
width: 100%;
|
|
1625
|
-
}
|
|
1626
|
-
.lake-video input[type="text"]:hover {
|
|
1627
|
-
border: 1px solid var(--lake-input-border-hover-color);
|
|
1628
|
-
}
|
|
1629
|
-
.lake-video input[type="text"]:focus-visible {
|
|
1630
|
-
outline: var(--lake-input-outline);
|
|
1631
|
-
outline-offset: -2px;
|
|
1632
|
-
}
|
|
1633
|
-
.lake-video .lake-row {
|
|
1634
|
-
padding-bottom: 8px;
|
|
1635
|
-
}
|
|
1636
|
-
.lake-video .lake-desc-row {
|
|
1637
|
-
padding-top: 8px;
|
|
1638
|
-
padding-bottom: 16px;
|
|
1639
|
-
color: var(--lake-secondary-text-color);
|
|
1640
|
-
}
|
|
1641
|
-
.lake-video .lake-button-row {
|
|
1642
|
-
padding-top: 16px;
|
|
1643
|
-
}
|
|
1644
|
-
.lake-video .lake-button-row button {
|
|
1645
|
-
width: 100%;
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
|
-
.lake-file {
|
|
1649
|
-
position: relative;
|
|
1650
|
-
font-size: var(--lake-font-size);
|
|
1651
|
-
font-weight: normal;
|
|
1652
|
-
line-height: 0;
|
|
1653
|
-
border: 1px solid transparent;
|
|
1654
|
-
border-radius: 4px;
|
|
1655
|
-
}
|
|
1656
|
-
.lake-container[contenteditable="true"] .lake-file {
|
|
1657
|
-
cursor: default;
|
|
1658
|
-
user-select: none;
|
|
1659
|
-
}
|
|
1660
|
-
.lake-container[contenteditable="false"] .lake-file {
|
|
1661
|
-
cursor: pointer;
|
|
1662
|
-
user-select: auto;
|
|
1663
|
-
}
|
|
1664
|
-
lake-box[name="file"] .lake-box-strip {
|
|
1665
|
-
align-self: center;
|
|
1666
|
-
}
|
|
1667
|
-
.lake-file .lake-file-info {
|
|
1668
|
-
display: flex;
|
|
1669
|
-
align-items: center;
|
|
1670
|
-
}
|
|
1671
|
-
.lake-file .lake-file-type svg {
|
|
1672
|
-
width: 16px;
|
|
1673
|
-
height: 16px;
|
|
1674
|
-
margin: 4px;
|
|
1675
|
-
}
|
|
1676
|
-
.lake-file .lake-file-name {
|
|
1677
|
-
line-height: 24px;
|
|
1678
|
-
margin-right: 6px;
|
|
1679
|
-
color: var(--lake-link-color);
|
|
1680
|
-
}
|
|
1681
|
-
lake-box[name="file"] .lake-box-hovered .lake-file {
|
|
1682
|
-
background-color: var(--lake-box-background-color);
|
|
1683
|
-
}
|
|
1684
|
-
lake-box[name="file"] .lake-box-selected .lake-file {
|
|
1685
|
-
background-color: var(--lake-selection-background-color);
|
|
1686
|
-
}
|
|
1687
|
-
lake-box[name="file"] .lake-box-focused .lake-file {
|
|
1688
|
-
background-color: var(--lake-selection-background-color);
|
|
1689
|
-
}
|
|
1690
|
-
/* uploading status */
|
|
1691
|
-
.lake-file-uploading .lake-progress {
|
|
1692
|
-
display: flex;
|
|
1693
|
-
align-items: center;
|
|
1694
|
-
margin-right: 6px;
|
|
1695
|
-
}
|
|
1696
|
-
.lake-file-uploading .lake-progress svg {
|
|
1697
|
-
width: 16px;
|
|
1698
|
-
height: 16px;
|
|
1699
|
-
margin: 4px;
|
|
1700
|
-
animation: lakerotate 1s linear 0s infinite normal none;
|
|
1701
|
-
}
|
|
1702
|
-
.lake-file-uploading .lake-progress .lake-percent {
|
|
1703
|
-
line-height: 24px;
|
|
1704
|
-
margin-left: 4px;
|
|
1705
|
-
white-space: nowrap;
|
|
1706
|
-
}
|
|
1707
|
-
/* error status */
|
|
1708
|
-
.lake-file-error .lake-file-type svg {
|
|
1709
|
-
fill: var(--lake-error-color);
|
|
1710
|
-
}
|
|
1711
|
-
.lake-file-error .lake-file-name {
|
|
1712
|
-
color: var(--lake-error-color);
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
.lake-emoji {
|
|
1716
|
-
line-height: 0;
|
|
1717
|
-
border: 1px solid transparent;
|
|
1718
|
-
border-radius: 2px;
|
|
1719
|
-
}
|
|
1720
|
-
.lake-emoji img {
|
|
1721
|
-
border: 0;
|
|
1722
|
-
border-radius: 2px;
|
|
1723
|
-
width: 32px;
|
|
1724
|
-
height: 32px;
|
|
1725
|
-
}
|
|
1726
|
-
lake-box[name="emoji"] .lake-box-focused .lake-emoji {
|
|
1727
|
-
border-color: var(--lake-selection-background-color);
|
|
1728
|
-
background-color: var(--lake-selection-background-color);
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.lake-equation {
|
|
1732
|
-
position: relative;
|
|
1733
|
-
font-weight: normal;
|
|
1734
|
-
border: 1px solid transparent;
|
|
1735
|
-
border-radius: 4px;
|
|
1736
|
-
}
|
|
1737
|
-
.lake-container[contenteditable="true"] .lake-equation {
|
|
1738
|
-
user-select: none;
|
|
1739
|
-
}
|
|
1740
|
-
lake-box[name="equation"] .lake-box-strip {
|
|
1741
|
-
align-self: center;
|
|
1742
|
-
}
|
|
1743
|
-
lake-box[name="equation"] .lake-box-selected .lake-equation {
|
|
1744
|
-
background-color: var(--lake-selection-background-color);
|
|
1745
|
-
}
|
|
1746
|
-
lake-box[name="equation"] .lake-box-focused .lake-equation {
|
|
1747
|
-
background-color: var(--lake-selection-background-color);
|
|
1748
|
-
}
|
|
1749
|
-
.lake-equation .lake-equation-view {
|
|
1750
|
-
padding: 0 6px;
|
|
1751
|
-
}
|
|
1752
|
-
.lake-equation .lake-equation-form {
|
|
1753
|
-
position: absolute;
|
|
1754
|
-
top: 28px;
|
|
1755
|
-
left: 0;
|
|
1756
|
-
z-index: 1;
|
|
1757
|
-
border: 1px solid var(--lake-border-color);
|
|
1758
|
-
border-radius: 5px;
|
|
1759
|
-
padding: 16px;
|
|
1760
|
-
width: fit-content;
|
|
1761
|
-
background-color: #fff;
|
|
1762
|
-
box-shadow: var(--lake-popup-shadow);
|
|
1763
|
-
display: none;
|
|
1764
|
-
}
|
|
1765
|
-
lake-box[name="equation"] .lake-box-focused .lake-equation-form,
|
|
1766
|
-
lake-box[name="equation"] .lake-box-activated .lake-equation-form {
|
|
1767
|
-
display: flex;
|
|
1768
|
-
}
|
|
1769
|
-
.lake-equation .lake-equation-form textarea {
|
|
1770
|
-
border: 0;
|
|
1771
|
-
font-family: Consolas, Courier, monospace;
|
|
1772
|
-
font-size: 14px;
|
|
1773
|
-
color: var(--lake-text-color);
|
|
1774
|
-
padding: 0;
|
|
1775
|
-
margin-right: 8px;
|
|
1776
|
-
width: 300px;
|
|
1777
|
-
height: 80px;
|
|
1778
|
-
resize: none;
|
|
1779
|
-
scrollbar-width: thin;
|
|
1780
|
-
}
|
|
1781
|
-
.lake-equation .lake-equation-form textarea:focus-visible {
|
|
1782
|
-
outline: 0;
|
|
1783
|
-
}
|
|
1784
|
-
.lake-equation .lake-equation-form .lake-button-row {
|
|
1785
|
-
display: flex;
|
|
1786
|
-
flex-direction: column;
|
|
1787
|
-
justify-content: space-between;
|
|
1788
|
-
align-items: flex-end;
|
|
1789
|
-
}
|
|
1790
|
-
/* error status */
|
|
1791
|
-
.lake-equation-error {
|
|
1792
|
-
padding: 0 6px;
|
|
1793
|
-
font-size: 14px;
|
|
1794
|
-
color: var(--lake-error-color);
|
|
1795
|
-
background-color: var(--lake-box-background-color);
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
.lake-mention-menu {
|
|
1799
|
-
max-height: 208px;
|
|
1800
|
-
}
|
|
1801
|
-
.lake-mention-menu .lake-mention-avatar {
|
|
1802
|
-
margin-inline-end: 8px;
|
|
1803
|
-
line-height: 0;
|
|
1804
|
-
}
|
|
1805
|
-
.lake-mention-menu .lake-mention-avatar img {
|
|
1806
|
-
border-radius: 100%;
|
|
1807
|
-
width: 32px;
|
|
1808
|
-
height: 32px;
|
|
1809
|
-
}
|
|
1810
|
-
.lake-mention-menu .lake-mention-nickname {
|
|
1811
|
-
margin-inline-end: 4px;
|
|
1812
|
-
font-weight: 500;
|
|
1813
|
-
color: var(--lake-text-color);
|
|
1814
|
-
white-space: nowrap;
|
|
1815
|
-
}
|
|
1816
|
-
.lake-mention-menu .lake-mention-name {
|
|
1817
|
-
color: #8c8c8c;
|
|
1818
|
-
}
|
|
1819
|
-
|
|
1820
|
-
.lake-mention {
|
|
1821
|
-
border: 1px solid transparent;
|
|
1822
|
-
border-radius: 2px;
|
|
1823
|
-
}
|
|
1824
|
-
.lake-container[readonly="false"] .lake-mention a:hover {
|
|
1825
|
-
color: var(--lake-link-color);
|
|
1826
|
-
text-decoration: none;
|
|
1827
|
-
}
|
|
1828
|
-
lake-box[name="mention"] .lake-box-focused .lake-mention {
|
|
1829
|
-
border-color: var(--lake-selection-background-color);
|
|
1830
|
-
background-color: var(--lake-selection-background-color);
|
|
1831
|
-
}
|
|
1832
|
-
|
|
1833
|
-
.lake-slash-menu {
|
|
1834
|
-
max-height: 330px;
|
|
1835
|
-
}
|
|
1836
|
-
.lake-slash-menu .lake-menu-item input[type="file"] {
|
|
1837
|
-
display: none;
|
|
1838
|
-
}
|
|
1839
|
-
.lake-slash-menu .lake-slash-icon {
|
|
1840
|
-
margin-inline-end: 8px;
|
|
1841
|
-
border-radius: 5px;
|
|
1842
|
-
border: 1px solid var(--lake-border-color);
|
|
1843
|
-
background-color: #fff;
|
|
1844
|
-
line-height: 0;
|
|
1845
|
-
}
|
|
1846
|
-
.lake-slash-menu .lake-slash-icon svg,
|
|
1847
|
-
.lake-slash-menu .lake-slash-icon img {
|
|
1848
|
-
width: 32px;
|
|
1849
|
-
height: 32px;
|
|
1850
|
-
margin: 6px;
|
|
1851
|
-
}
|
|
1852
|
-
.lake-slash-menu .lake-slash-text {
|
|
1853
|
-
display: flex;
|
|
1854
|
-
flex-direction: column;
|
|
1855
|
-
justify-content: center;
|
|
1856
|
-
}
|
|
1857
|
-
.lake-slash-menu .lake-slash-title {
|
|
1858
|
-
font-weight: 500;
|
|
1859
|
-
color: var(--lake-text-color);
|
|
1860
|
-
}
|
|
1861
|
-
.lake-slash-menu .lake-slash-description {
|
|
1862
|
-
color: #8c8c8c;
|
|
1863
|
-
}
|