mce 0.17.0 → 0.17.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 +37 -22
- package/dist/composables/layer.d.ts +2 -2
- package/dist/composables/layout.d.ts +4 -4
- package/dist/crdt/YDoc.d.ts +1 -2
- package/dist/index.css +378 -378
- package/dist/index.js +770 -854
- package/dist/locale/en.d.ts +2 -2
- package/dist/locale/zh-Hans.d.ts +2 -2
- package/dist/nodes/Doc.d.ts +3 -3
- package/dist/plugins/doc.d.ts +17 -3
- package/dist/plugins/edit.d.ts +3 -0
- package/dist/typed-plugins.d.ts +4 -9
- package/dist/utils/index.d.ts +0 -1
- package/package.json +2 -7
- package/dist/mixins/3.view.d.ts +0 -9
- package/dist/plugins/copyAs.d.ts +0 -11
- package/dist/plugins/gif.d.ts +0 -12
- package/dist/plugins/new.d.ts +0 -12
- package/dist/plugins/open.d.ts +0 -12
- package/dist/utils/random.d.ts +0 -3
- /package/dist/mixins/{2.export.d.ts → exporter.d.ts} +0 -0
- /package/dist/mixins/{1.hotkey.d.ts → hotkey.d.ts} +0 -0
- /package/dist/mixins/{2.load.d.ts → loader.d.ts} +0 -0
- /package/dist/mixins/{snap.d.ts → snapper.d.ts} +0 -0
package/dist/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
.m-icon {
|
|
2
2
|
align-items: center;
|
|
3
3
|
display: inline-flex;
|
|
4
4
|
font-feature-settings: "liga";
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
letter-spacing: normal;
|
|
8
8
|
line-height: 1;
|
|
9
9
|
position: relative;
|
|
10
|
-
opacity: var(--
|
|
10
|
+
opacity: var(--m-icon-opacity, 1);
|
|
11
11
|
text-indent: 0;
|
|
12
12
|
text-align: center;
|
|
13
13
|
-webkit-user-select: none;
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
width: 1em;
|
|
17
17
|
min-width: 1em;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
.m-icon__svg {
|
|
20
20
|
fill: currentColor;
|
|
21
21
|
width: 100%;
|
|
22
22
|
height: 100%;
|
|
23
|
-
}.
|
|
23
|
+
}.m-frame {
|
|
24
24
|
position: absolute;
|
|
25
25
|
}
|
|
26
|
-
.
|
|
26
|
+
.m-frame--outline {
|
|
27
27
|
outline: 1px solid rgba(0, 0, 0, 0.168627451);
|
|
28
28
|
}
|
|
29
|
-
.
|
|
29
|
+
.m-frame--lock {
|
|
30
30
|
pointer-events: none;
|
|
31
31
|
}
|
|
32
|
-
.
|
|
32
|
+
.m-frame--hover .m-frame__name > div, .m-frame--selected .m-frame__name > div {
|
|
33
33
|
opacity: 1;
|
|
34
34
|
}
|
|
35
|
-
.
|
|
35
|
+
.m-frame__name {
|
|
36
36
|
position: absolute;
|
|
37
37
|
top: 0;
|
|
38
38
|
left: 0;
|
|
@@ -44,18 +44,18 @@
|
|
|
44
44
|
user-select: none;
|
|
45
45
|
max-width: 100%;
|
|
46
46
|
}
|
|
47
|
-
.
|
|
47
|
+
.m-frame__name > div {
|
|
48
48
|
position: relative;
|
|
49
49
|
min-width: 28px;
|
|
50
50
|
box-sizing: content-box;
|
|
51
|
-
color: rgb(var(--
|
|
51
|
+
color: rgb(var(--m-theme-on-surface));
|
|
52
52
|
opacity: 0.5;
|
|
53
53
|
max-width: 100%;
|
|
54
54
|
white-space: nowrap;
|
|
55
55
|
overflow: hidden;
|
|
56
56
|
text-overflow: ellipsis;
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
.m-frame__name > input {
|
|
59
59
|
position: absolute;
|
|
60
60
|
left: 0;
|
|
61
61
|
top: 0;
|
|
@@ -63,23 +63,23 @@
|
|
|
63
63
|
width: 100%;
|
|
64
64
|
height: 100%;
|
|
65
65
|
border: none;
|
|
66
|
-
outline: 1px solid rgb(var(--
|
|
66
|
+
outline: 1px solid rgb(var(--m-theme-primary));
|
|
67
67
|
cursor: default;
|
|
68
68
|
font-size: inherit;
|
|
69
69
|
font-weight: inherit;
|
|
70
70
|
border-radius: 2px;
|
|
71
|
-
}.
|
|
71
|
+
}.m-frames {
|
|
72
72
|
position: absolute;
|
|
73
73
|
left: 0;
|
|
74
74
|
top: 0;
|
|
75
75
|
right: 0;
|
|
76
76
|
bottom: 0;
|
|
77
|
-
}.
|
|
77
|
+
}.m-hover {
|
|
78
78
|
position: absolute;
|
|
79
79
|
border-style: solid;
|
|
80
80
|
border-width: 2px;
|
|
81
|
-
color: rgba(var(--
|
|
82
|
-
}.
|
|
81
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
82
|
+
}.m-btn {
|
|
83
83
|
padding: 4px;
|
|
84
84
|
border-radius: 4px;
|
|
85
85
|
font-size: 0.75rem;
|
|
@@ -88,18 +88,18 @@
|
|
|
88
88
|
justify-content: center;
|
|
89
89
|
cursor: pointer;
|
|
90
90
|
}
|
|
91
|
-
.
|
|
92
|
-
color: rgb(var(--
|
|
93
|
-
background: rgb(var(--
|
|
91
|
+
.m-btn:hover {
|
|
92
|
+
color: rgb(var(--m-theme-on-background));
|
|
93
|
+
background: rgb(var(--m-theme-background));
|
|
94
94
|
}
|
|
95
|
-
.
|
|
95
|
+
.m-btn--icon {
|
|
96
96
|
height: 24px;
|
|
97
97
|
width: 24px;
|
|
98
98
|
}
|
|
99
|
-
.
|
|
100
|
-
color: rgb(var(--
|
|
101
|
-
background: rgb(var(--
|
|
102
|
-
}.
|
|
99
|
+
.m-btn.m-btn--active {
|
|
100
|
+
color: rgb(var(--m-theme-on-primary));
|
|
101
|
+
background: rgb(var(--m-theme-primary));
|
|
102
|
+
}.m-layer {
|
|
103
103
|
position: relative;
|
|
104
104
|
flex: none;
|
|
105
105
|
display: flex;
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
min-width: max-content;
|
|
112
112
|
border-radius: 4px;
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.m-layer__underlay, .m-layer__overlay {
|
|
115
115
|
position: absolute;
|
|
116
116
|
left: 12px;
|
|
117
117
|
right: 0;
|
|
@@ -120,78 +120,78 @@
|
|
|
120
120
|
pointer-events: none;
|
|
121
121
|
border-radius: inherit;
|
|
122
122
|
}
|
|
123
|
-
.
|
|
123
|
+
.m-layer__underlay {
|
|
124
124
|
background-color: var(--underlay-color, transparent);
|
|
125
125
|
}
|
|
126
|
-
.
|
|
126
|
+
.m-layer__overlay {
|
|
127
127
|
background-color: var(--overlay-color, transparent);
|
|
128
128
|
}
|
|
129
|
-
.
|
|
129
|
+
.m-layer--root {
|
|
130
130
|
font-weight: bold;
|
|
131
131
|
}
|
|
132
|
-
.
|
|
132
|
+
.m-layer--root .m-layer__thumbnail {
|
|
133
133
|
display: none;
|
|
134
134
|
}
|
|
135
|
-
.
|
|
136
|
-
--overlay-color: rgba(var(--
|
|
135
|
+
.m-layer--hover {
|
|
136
|
+
--overlay-color: rgba(var(--m-theme-on-background), var(--m-hover-opacity));
|
|
137
137
|
}
|
|
138
|
-
.
|
|
139
|
-
--underlay-color: rgba(var(--
|
|
138
|
+
.m-layer--active {
|
|
139
|
+
--underlay-color: rgba(var(--m-theme-primary), calc(var(--m-activated-opacity) * 2));
|
|
140
140
|
}
|
|
141
|
-
.
|
|
142
|
-
--overlay-color: rgba(var(--
|
|
141
|
+
.m-layer--active:hover {
|
|
142
|
+
--overlay-color: rgba(var(--m-theme-primary), calc(var(--m-hover-opacity) * 2));
|
|
143
143
|
}
|
|
144
|
-
.
|
|
144
|
+
.m-layer--active .m-layer__underlay {
|
|
145
145
|
top: 0;
|
|
146
146
|
bottom: 0;
|
|
147
147
|
border-radius: 0;
|
|
148
148
|
}
|
|
149
|
-
.
|
|
149
|
+
.m-layer--active:not(.m-layer--active + .m-layer--active) .m-layer__underlay {
|
|
150
150
|
border-top-left-radius: 4px;
|
|
151
151
|
border-top-right-radius: 4px;
|
|
152
152
|
top: 4px;
|
|
153
153
|
}
|
|
154
|
-
.
|
|
154
|
+
.m-layer--active:not(:has(+ .m-layer--active)) .m-layer__underlay {
|
|
155
155
|
border-bottom-left-radius: 4px;
|
|
156
156
|
border-bottom-right-radius: 4px;
|
|
157
157
|
bottom: 4px;
|
|
158
158
|
}
|
|
159
|
-
.
|
|
160
|
-
--underlay-color: rgba(var(--
|
|
159
|
+
.m-layer--selected {
|
|
160
|
+
--underlay-color: rgba(var(--m-theme-primary), calc(var(--m-activated-opacity) * 3));
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
.m-layer--open .m-layer__prepend .m-icon {
|
|
163
163
|
transform: rotate(90deg);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.m-layer__arrow {
|
|
166
166
|
margin-left: 2px;
|
|
167
167
|
opacity: 0.6;
|
|
168
168
|
}
|
|
169
|
-
.
|
|
169
|
+
.m-layer__prepend {
|
|
170
170
|
display: flex;
|
|
171
171
|
align-items: center;
|
|
172
172
|
width: 16px;
|
|
173
173
|
height: 100%;
|
|
174
174
|
flex: none;
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.m-layer--dropping .m-layer__content:after {
|
|
177
177
|
content: "";
|
|
178
178
|
position: absolute;
|
|
179
179
|
left: 0;
|
|
180
180
|
right: 0;
|
|
181
181
|
bottom: 0;
|
|
182
182
|
height: 2px;
|
|
183
|
-
background-color: rgb(var(--
|
|
183
|
+
background-color: rgb(var(--m-theme-on-background));
|
|
184
184
|
pointer-events: none;
|
|
185
185
|
border-radius: inherit;
|
|
186
186
|
}
|
|
187
|
-
.
|
|
187
|
+
.m-layer__content {
|
|
188
188
|
position: relative;
|
|
189
189
|
flex: 1;
|
|
190
190
|
display: flex;
|
|
191
191
|
align-items: center;
|
|
192
192
|
height: 100%;
|
|
193
193
|
}
|
|
194
|
-
.
|
|
194
|
+
.m-layer__thumbnail {
|
|
195
195
|
display: flex;
|
|
196
196
|
align-items: center;
|
|
197
197
|
width: 12px;
|
|
@@ -200,12 +200,12 @@
|
|
|
200
200
|
overflow: hidden;
|
|
201
201
|
margin-right: 4px;
|
|
202
202
|
}
|
|
203
|
-
.
|
|
203
|
+
.m-layer__name {
|
|
204
204
|
position: relative;
|
|
205
205
|
flex: 1;
|
|
206
206
|
overscroll-behavior: none;
|
|
207
207
|
}
|
|
208
|
-
.
|
|
208
|
+
.m-layer__input {
|
|
209
209
|
position: absolute;
|
|
210
210
|
left: 0;
|
|
211
211
|
top: 0;
|
|
@@ -213,12 +213,12 @@
|
|
|
213
213
|
width: 100%;
|
|
214
214
|
height: 100%;
|
|
215
215
|
border: none;
|
|
216
|
-
outline: 1px solid rgb(var(--
|
|
216
|
+
outline: 1px solid rgb(var(--m-theme-primary));
|
|
217
217
|
font-size: inherit;
|
|
218
218
|
font-weight: inherit;
|
|
219
219
|
border-radius: 2px;
|
|
220
220
|
}
|
|
221
|
-
.
|
|
221
|
+
.m-layer__action {
|
|
222
222
|
position: sticky;
|
|
223
223
|
right: 0;
|
|
224
224
|
flex: none;
|
|
@@ -228,46 +228,46 @@
|
|
|
228
228
|
background-color: transparent;
|
|
229
229
|
backdrop-filter: none;
|
|
230
230
|
}
|
|
231
|
-
.
|
|
231
|
+
.m-layer__action .m-layer__btn {
|
|
232
232
|
opacity: 0;
|
|
233
233
|
}
|
|
234
|
-
.
|
|
234
|
+
.m-layer__action--hover .m-layer__btn {
|
|
235
235
|
opacity: 1;
|
|
236
236
|
}
|
|
237
|
-
.
|
|
237
|
+
.m-layer__action--show {
|
|
238
238
|
background-color: var(--overlay-color, transparent);
|
|
239
239
|
backdrop-filter: blur(8px);
|
|
240
240
|
}
|
|
241
|
-
.
|
|
241
|
+
.m-layer__btn--show {
|
|
242
242
|
opacity: 1 !important;
|
|
243
243
|
}
|
|
244
|
-
.
|
|
244
|
+
.m-layer__btn + .m-layer__btn {
|
|
245
245
|
margin-left: -4px;
|
|
246
|
-
}.
|
|
246
|
+
}.m-layers {
|
|
247
247
|
position: relative;
|
|
248
248
|
width: 100%;
|
|
249
249
|
height: 100%;
|
|
250
250
|
min-width: auto;
|
|
251
251
|
overflow: auto;
|
|
252
|
-
background-color: rgb(var(--
|
|
252
|
+
background-color: rgb(var(--m-theme-surface));
|
|
253
253
|
padding-right: 8px;
|
|
254
254
|
}
|
|
255
|
-
.
|
|
255
|
+
.m-layers__wrapper {
|
|
256
256
|
width: max-content;
|
|
257
257
|
min-width: 100%;
|
|
258
258
|
}
|
|
259
|
-
.
|
|
259
|
+
.m-layers .m-layer__prepend {
|
|
260
260
|
opacity: 0;
|
|
261
261
|
}
|
|
262
|
-
.
|
|
262
|
+
.m-layers .m-layer--root:hover .m-layer__prepend {
|
|
263
263
|
opacity: 1;
|
|
264
264
|
}
|
|
265
|
-
.
|
|
265
|
+
.m-layers:hover .m-layer:not(.m-layer--root) .m-layer__prepend {
|
|
266
266
|
opacity: 1;
|
|
267
267
|
}
|
|
268
|
-
.
|
|
268
|
+
.m-layers .m-layer {
|
|
269
269
|
scroll-margin: 8px;
|
|
270
|
-
}.
|
|
270
|
+
}.m-made-with {
|
|
271
271
|
pointer-events: auto !important;
|
|
272
272
|
position: absolute;
|
|
273
273
|
right: 18px;
|
|
@@ -284,42 +284,42 @@
|
|
|
284
284
|
font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
285
285
|
text-decoration: none;
|
|
286
286
|
}
|
|
287
|
-
.
|
|
287
|
+
.m-made-with div:last-child {
|
|
288
288
|
font-weight: bold;
|
|
289
289
|
letter-spacing: 1px;
|
|
290
|
-
}.
|
|
290
|
+
}.m-manage-memory {
|
|
291
291
|
padding: 12px;
|
|
292
292
|
font-size: 12px;
|
|
293
293
|
display: flex;
|
|
294
294
|
align-items: center;
|
|
295
295
|
justify-content: space-between;
|
|
296
|
-
}.
|
|
296
|
+
}.m-overlay {
|
|
297
297
|
position: absolute;
|
|
298
298
|
display: flex;
|
|
299
299
|
inset: 0;
|
|
300
300
|
pointer-events: none;
|
|
301
301
|
}
|
|
302
|
-
.
|
|
302
|
+
.m-overlay-content > * {
|
|
303
303
|
pointer-events: auto;
|
|
304
|
-
}.
|
|
304
|
+
}.m-menu {
|
|
305
305
|
user-select: none;
|
|
306
306
|
}
|
|
307
|
-
.
|
|
307
|
+
.m-list {
|
|
308
308
|
display: flex;
|
|
309
309
|
flex-direction: column;
|
|
310
|
-
background-color: rgb(var(--
|
|
311
|
-
color: rgb(var(--
|
|
312
|
-
box-shadow: var(--
|
|
310
|
+
background-color: rgb(var(--m-theme-on-surface));
|
|
311
|
+
color: rgb(var(--m-theme-surface));
|
|
312
|
+
box-shadow: var(--m-shadow);
|
|
313
313
|
padding: 8px;
|
|
314
314
|
border-radius: 8px;
|
|
315
315
|
gap: 2px;
|
|
316
316
|
max-height: inherit;
|
|
317
317
|
overflow-y: auto;
|
|
318
318
|
}
|
|
319
|
-
.
|
|
320
|
-
border-bottom: 1px solid rgba(var(--
|
|
319
|
+
.m-list__divider {
|
|
320
|
+
border-bottom: 1px solid rgba(var(--m-theme-surface), 0.12);
|
|
321
321
|
}
|
|
322
|
-
.
|
|
322
|
+
.m-list-item {
|
|
323
323
|
display: flex;
|
|
324
324
|
width: 100%;
|
|
325
325
|
padding: 4px 8px;
|
|
@@ -328,16 +328,16 @@
|
|
|
328
328
|
align-items: center;
|
|
329
329
|
gap: 12px;
|
|
330
330
|
}
|
|
331
|
-
.
|
|
332
|
-
background-color: rgba(var(--
|
|
333
|
-
color: rgba(var(--
|
|
331
|
+
.m-list-item--opened, .m-list-item:hover {
|
|
332
|
+
background-color: rgba(var(--m-theme-primary), 1);
|
|
333
|
+
color: rgba(var(--m-theme-on-primary), 1);
|
|
334
334
|
}
|
|
335
|
-
.
|
|
335
|
+
.m-list-item--disabled {
|
|
336
336
|
pointer-events: none;
|
|
337
337
|
user-select: none;
|
|
338
338
|
opacity: 0.4;
|
|
339
339
|
}
|
|
340
|
-
.
|
|
340
|
+
.m-list-item__prepend, .m-list-item__checked {
|
|
341
341
|
width: 12px;
|
|
342
342
|
height: 12px;
|
|
343
343
|
display: flex;
|
|
@@ -345,21 +345,21 @@
|
|
|
345
345
|
justify-content: center;
|
|
346
346
|
font-size: 0.875rem;
|
|
347
347
|
}
|
|
348
|
-
.
|
|
348
|
+
.m-list-item__title {
|
|
349
349
|
flex: 1;
|
|
350
350
|
display: flex;
|
|
351
351
|
align-items: center;
|
|
352
352
|
font-size: 0.75rem;
|
|
353
353
|
white-space: nowrap;
|
|
354
354
|
}
|
|
355
|
-
.
|
|
355
|
+
.m-list-item__kbd {
|
|
356
356
|
font-size: 0.75rem;
|
|
357
357
|
white-space: nowrap;
|
|
358
358
|
letter-spacing: 0.08em;
|
|
359
359
|
margin-left: 24px;
|
|
360
360
|
opacity: 0.3;
|
|
361
361
|
}
|
|
362
|
-
.
|
|
362
|
+
.m-list-item__append {
|
|
363
363
|
width: 12px;
|
|
364
364
|
height: 12px;
|
|
365
365
|
display: flex;
|
|
@@ -367,16 +367,16 @@
|
|
|
367
367
|
justify-content: center;
|
|
368
368
|
font-size: 0.75rem;
|
|
369
369
|
margin-right: -6px;
|
|
370
|
-
}.
|
|
370
|
+
}.m-context-menu {
|
|
371
371
|
pointer-events: auto;
|
|
372
372
|
left: 0;
|
|
373
373
|
top: 0;
|
|
374
374
|
width: 100%;
|
|
375
375
|
height: 100%;
|
|
376
376
|
}
|
|
377
|
-
.
|
|
377
|
+
.m-context-menu .m-overlay-content {
|
|
378
378
|
max-height: var(--max-height);
|
|
379
|
-
}.
|
|
379
|
+
}.m-creator {
|
|
380
380
|
position: relative;
|
|
381
381
|
width: 100%;
|
|
382
382
|
height: 100%;
|
|
@@ -384,13 +384,13 @@
|
|
|
384
384
|
flex-direction: column;
|
|
385
385
|
overflow: hidden;
|
|
386
386
|
}
|
|
387
|
-
.
|
|
387
|
+
.m-creator__tree {
|
|
388
388
|
flex: 1;
|
|
389
389
|
padding: 8px;
|
|
390
390
|
width: 100%;
|
|
391
391
|
overflow: auto;
|
|
392
392
|
}
|
|
393
|
-
.
|
|
393
|
+
.m-creator__node {
|
|
394
394
|
position: relative;
|
|
395
395
|
flex: none;
|
|
396
396
|
display: flex;
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
min-width: max-content;
|
|
403
403
|
border-radius: 4px;
|
|
404
404
|
}
|
|
405
|
-
.
|
|
405
|
+
.m-creator__node:before {
|
|
406
406
|
content: "";
|
|
407
407
|
position: absolute;
|
|
408
408
|
left: 0;
|
|
@@ -413,7 +413,7 @@
|
|
|
413
413
|
pointer-events: none;
|
|
414
414
|
border-radius: inherit;
|
|
415
415
|
}
|
|
416
|
-
.
|
|
416
|
+
.m-creator__node:after {
|
|
417
417
|
content: "";
|
|
418
418
|
position: absolute;
|
|
419
419
|
left: 0;
|
|
@@ -424,26 +424,26 @@
|
|
|
424
424
|
pointer-events: none;
|
|
425
425
|
border-radius: inherit;
|
|
426
426
|
}
|
|
427
|
-
.
|
|
428
|
-
--overlay-color: rgba(var(--
|
|
427
|
+
.m-creator__node:hover {
|
|
428
|
+
--overlay-color: rgba(var(--m-theme-on-background), var(--m-hover-opacity));
|
|
429
429
|
}
|
|
430
|
-
.
|
|
431
|
-
--underlay-color: rgba(var(--
|
|
430
|
+
.m-creator__node--active {
|
|
431
|
+
--underlay-color: rgba(var(--m-theme-primary), calc(var(--m-activated-opacity) * 3));
|
|
432
432
|
}
|
|
433
|
-
.
|
|
434
|
-
--overlay-color: rgba(var(--
|
|
433
|
+
.m-creator__node--active:hover {
|
|
434
|
+
--overlay-color: rgba(var(--m-theme-primary), var(--m-hover-opacity));
|
|
435
435
|
}
|
|
436
|
-
.
|
|
436
|
+
.m-creator__actions {
|
|
437
437
|
display: flex;
|
|
438
438
|
align-items: center;
|
|
439
439
|
justify-content: space-evenly;
|
|
440
440
|
height: 24px;
|
|
441
441
|
padding: 8px;
|
|
442
442
|
flex-basis: max-content;
|
|
443
|
-
border-top: 1px solid rgba(var(--
|
|
444
|
-
}.
|
|
445
|
-
background: rgb(var(--
|
|
446
|
-
color: rgb(var(--
|
|
443
|
+
border-top: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
444
|
+
}.m-tooltip .m-overlay-content {
|
|
445
|
+
background: rgb(var(--m-theme-surface-variant));
|
|
446
|
+
color: rgb(var(--m-theme-on-surface-variant));
|
|
447
447
|
border-radius: 4px;
|
|
448
448
|
font-size: 0.75rem;
|
|
449
449
|
line-height: 1;
|
|
@@ -454,13 +454,13 @@
|
|
|
454
454
|
opacity: 1;
|
|
455
455
|
transition-property: opacity, transform;
|
|
456
456
|
overflow-wrap: break-word;
|
|
457
|
-
box-shadow: var(--
|
|
457
|
+
box-shadow: var(--m-shadow);
|
|
458
458
|
}
|
|
459
|
-
.
|
|
459
|
+
.m-tooltip__content {
|
|
460
460
|
display: flex;
|
|
461
461
|
align-items: center;
|
|
462
462
|
}
|
|
463
|
-
.
|
|
463
|
+
.m-tooltip__arrow {
|
|
464
464
|
position: absolute;
|
|
465
465
|
width: 0;
|
|
466
466
|
height: 0;
|
|
@@ -469,87 +469,87 @@
|
|
|
469
469
|
border-width: 6px;
|
|
470
470
|
z-index: 15;
|
|
471
471
|
}
|
|
472
|
-
.
|
|
472
|
+
.m-tooltip--side-left .m-tooltip__arrow {
|
|
473
473
|
right: 0;
|
|
474
474
|
top: 50%;
|
|
475
475
|
transform: translate(100%, -50%);
|
|
476
476
|
border-right: none;
|
|
477
|
-
border-left-color: rgb(var(--
|
|
477
|
+
border-left-color: rgb(var(--m-theme-surface-variant));
|
|
478
478
|
}
|
|
479
|
-
.
|
|
479
|
+
.m-tooltip--side-left.m-tooltip--align-start .m-tooltip__arrow {
|
|
480
480
|
top: 25%;
|
|
481
481
|
}
|
|
482
|
-
.
|
|
482
|
+
.m-tooltip--side-left.m-tooltip--align-end .m-tooltip__arrow {
|
|
483
483
|
top: 75%;
|
|
484
484
|
}
|
|
485
|
-
.
|
|
485
|
+
.m-tooltip--side-top .m-tooltip__arrow {
|
|
486
486
|
left: 50%;
|
|
487
487
|
bottom: 0;
|
|
488
488
|
transform: translate(-50%, 100%);
|
|
489
489
|
border-bottom: none;
|
|
490
|
-
border-top-color: rgb(var(--
|
|
490
|
+
border-top-color: rgb(var(--m-theme-surface-variant));
|
|
491
491
|
}
|
|
492
|
-
.
|
|
492
|
+
.m-tooltip--side-top.m-tooltip--align-start .m-tooltip__arrow {
|
|
493
493
|
left: 25%;
|
|
494
494
|
}
|
|
495
|
-
.
|
|
495
|
+
.m-tooltip--side-top.m-tooltip--align-end .m-tooltip__arrow {
|
|
496
496
|
left: 75%;
|
|
497
497
|
}
|
|
498
|
-
.
|
|
498
|
+
.m-tooltip--side-right .m-tooltip__arrow {
|
|
499
499
|
left: 0;
|
|
500
500
|
top: 50%;
|
|
501
501
|
transform: translate(-100%, -50%);
|
|
502
502
|
border-left: none;
|
|
503
|
-
border-right-color: rgb(var(--
|
|
503
|
+
border-right-color: rgb(var(--m-theme-surface-variant));
|
|
504
504
|
}
|
|
505
|
-
.
|
|
505
|
+
.m-tooltip--side-right.m-tooltip--align-start .m-tooltip__arrow {
|
|
506
506
|
top: 25%;
|
|
507
507
|
}
|
|
508
|
-
.
|
|
508
|
+
.m-tooltip--side-right.m-tooltip--align-end .m-tooltip__arrow {
|
|
509
509
|
top: 75%;
|
|
510
510
|
}
|
|
511
|
-
.
|
|
511
|
+
.m-tooltip--side-bottom .m-tooltip__arrow {
|
|
512
512
|
left: 50%;
|
|
513
513
|
top: 0;
|
|
514
514
|
transform: translate(-50%, -100%);
|
|
515
515
|
border-top: none;
|
|
516
|
-
border-bottom-color: rgb(var(--
|
|
516
|
+
border-bottom-color: rgb(var(--m-theme-surface-variant));
|
|
517
517
|
}
|
|
518
|
-
.
|
|
518
|
+
.m-tooltip--side-bottom.m-tooltip--align-start .m-tooltip__arrow {
|
|
519
519
|
left: 25%;
|
|
520
520
|
}
|
|
521
|
-
.
|
|
521
|
+
.m-tooltip--side-bottom.m-tooltip--align-end .m-tooltip__arrow {
|
|
522
522
|
left: 75%;
|
|
523
523
|
}
|
|
524
|
-
.
|
|
524
|
+
.m-tooltip__kbd {
|
|
525
525
|
font-size: 0.75rem;
|
|
526
526
|
white-space: nowrap;
|
|
527
527
|
letter-spacing: 0.08em;
|
|
528
528
|
margin-left: 16px;
|
|
529
529
|
opacity: 0.3;
|
|
530
|
-
}.
|
|
530
|
+
}.m-ruler {
|
|
531
531
|
position: absolute;
|
|
532
532
|
left: 0;
|
|
533
533
|
top: 0;
|
|
534
534
|
width: 100%;
|
|
535
535
|
height: 100%;
|
|
536
|
-
--text-color: rgba(var(--
|
|
537
|
-
--border-color: rgba(var(--
|
|
536
|
+
--text-color: rgba(var(--m-theme-on-background), var(--m-low-emphasis-opacity));
|
|
537
|
+
--border-color: rgba(var(--m-border-color), var(--m-border-opacity));
|
|
538
538
|
cursor: pointer;
|
|
539
539
|
}
|
|
540
|
-
.
|
|
540
|
+
.m-ruler--vertical {
|
|
541
541
|
width: var(--size);
|
|
542
542
|
}
|
|
543
|
-
.
|
|
543
|
+
.m-ruler--horizontal {
|
|
544
544
|
height: var(--size);
|
|
545
545
|
}
|
|
546
|
-
.
|
|
546
|
+
.m-ruler__canvas {
|
|
547
547
|
display: block;
|
|
548
548
|
pointer-events: auto;
|
|
549
|
-
background-color: rgb(var(--
|
|
550
|
-
backdrop-filter: blur(var(--
|
|
549
|
+
background-color: rgb(var(--m-theme-surface));
|
|
550
|
+
backdrop-filter: blur(var(--m-blur));
|
|
551
551
|
}
|
|
552
|
-
.
|
|
552
|
+
.m-ruler-refline {
|
|
553
553
|
position: absolute;
|
|
554
554
|
pointer-events: auto !important;
|
|
555
555
|
width: 10px;
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
justify-content: center;
|
|
559
559
|
align-items: center;
|
|
560
560
|
}
|
|
561
|
-
.
|
|
561
|
+
.m-ruler-refline:before {
|
|
562
562
|
content: "";
|
|
563
563
|
display: block;
|
|
564
564
|
border-style: dashed;
|
|
@@ -567,75 +567,75 @@
|
|
|
567
567
|
width: 100%;
|
|
568
568
|
height: 100%;
|
|
569
569
|
}
|
|
570
|
-
.
|
|
570
|
+
.m-ruler-refline--vertical {
|
|
571
571
|
transform: translateY(-50%);
|
|
572
572
|
cursor: ns-resize;
|
|
573
573
|
}
|
|
574
|
-
.
|
|
574
|
+
.m-ruler-refline--vertical.m-ruler-refline:before {
|
|
575
575
|
height: 0;
|
|
576
576
|
border-top-width: 1px;
|
|
577
577
|
}
|
|
578
|
-
.
|
|
578
|
+
.m-ruler-refline--horizontal {
|
|
579
579
|
transform: translateX(-50%);
|
|
580
580
|
cursor: ew-resize;
|
|
581
581
|
}
|
|
582
|
-
.
|
|
582
|
+
.m-ruler-refline--horizontal.m-ruler-refline:before {
|
|
583
583
|
width: 0;
|
|
584
584
|
border-left-width: 1px;
|
|
585
585
|
}
|
|
586
|
-
.
|
|
587
|
-
opacity: var(--
|
|
586
|
+
.m-ruler-refline--temp {
|
|
587
|
+
opacity: var(--m-low-emphasis-opacity);
|
|
588
588
|
pointer-events: none !important;
|
|
589
589
|
}
|
|
590
|
-
.
|
|
590
|
+
.m-ruler-refline--locked {
|
|
591
591
|
cursor: not-allowed;
|
|
592
|
-
}.
|
|
592
|
+
}.m-rulers {
|
|
593
593
|
position: absolute;
|
|
594
594
|
left: 0;
|
|
595
595
|
top: 0;
|
|
596
596
|
right: 0;
|
|
597
597
|
bottom: 0;
|
|
598
598
|
}
|
|
599
|
-
.
|
|
599
|
+
.m-rulers__left-top {
|
|
600
600
|
position: absolute;
|
|
601
601
|
left: 0;
|
|
602
602
|
top: 0;
|
|
603
603
|
width: 16px;
|
|
604
604
|
height: 16px;
|
|
605
|
-
border: 1px solid rgba(var(--
|
|
605
|
+
border: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
606
606
|
border-top-width: 0;
|
|
607
607
|
border-left-width: 0;
|
|
608
|
-
background-color: rgb(var(--
|
|
609
|
-
}.
|
|
608
|
+
background-color: rgb(var(--m-theme-surface));
|
|
609
|
+
}.m-scrollbar {
|
|
610
610
|
position: absolute;
|
|
611
611
|
display: flex;
|
|
612
612
|
pointer-events: auto !important;
|
|
613
613
|
}
|
|
614
|
-
.
|
|
614
|
+
.m-scrollbar--vertical {
|
|
615
615
|
right: 0;
|
|
616
616
|
flex-direction: column;
|
|
617
617
|
}
|
|
618
|
-
.
|
|
618
|
+
.m-scrollbar--horizontal {
|
|
619
619
|
bottom: 0;
|
|
620
620
|
}
|
|
621
|
-
.
|
|
621
|
+
.m-scrollbar__track {
|
|
622
622
|
flex: 1;
|
|
623
623
|
}
|
|
624
|
-
.
|
|
624
|
+
.m-scrollbar__thumb {
|
|
625
625
|
position: absolute;
|
|
626
626
|
border-radius: calc(infinity * 1px);
|
|
627
|
-
background-color: rgba(var(--
|
|
628
|
-
backdrop-filter: blur(var(--
|
|
627
|
+
background-color: rgba(var(--m-theme-on-background), var(--m-low-emphasis-opacity));
|
|
628
|
+
backdrop-filter: blur(var(--m-blur));
|
|
629
629
|
}
|
|
630
|
-
.
|
|
631
|
-
background-color: rgba(var(--
|
|
632
|
-
}.
|
|
630
|
+
.m-scrollbar__thumb--active, .m-scrollbar__thumb:hover {
|
|
631
|
+
background-color: rgba(var(--m-theme-on-background), var(--m-medium-emphasis-opacity));
|
|
632
|
+
}.m-scrollbars {
|
|
633
633
|
position: absolute;
|
|
634
634
|
left: 0;
|
|
635
635
|
top: 0;
|
|
636
636
|
right: 0;
|
|
637
637
|
bottom: 0;
|
|
638
|
-
}.
|
|
638
|
+
}.m-scroll-to-selection {
|
|
639
639
|
pointer-events: auto !important;
|
|
640
640
|
position: absolute;
|
|
641
641
|
left: 50%;
|
|
@@ -644,19 +644,19 @@
|
|
|
644
644
|
display: flex;
|
|
645
645
|
align-items: center;
|
|
646
646
|
gap: 4px;
|
|
647
|
-
color: rgba(var(--
|
|
648
|
-
background-color: rgba(var(--
|
|
647
|
+
color: rgba(var(--m-theme-surface), 1);
|
|
648
|
+
background-color: rgba(var(--m-theme-on-background), var(--m-medium-emphasis-opacity));
|
|
649
649
|
transform: translateX(-50%);
|
|
650
|
-
backdrop-filter: blur(var(--
|
|
650
|
+
backdrop-filter: blur(var(--m-blur));
|
|
651
651
|
border-radius: 8px;
|
|
652
652
|
font-size: 0.875rem;
|
|
653
653
|
cursor: pointer;
|
|
654
654
|
white-space: nowrap;
|
|
655
|
-
}.
|
|
655
|
+
}.m-transform {
|
|
656
656
|
left: 0;
|
|
657
657
|
top: 0;
|
|
658
658
|
}
|
|
659
|
-
.
|
|
659
|
+
.m-transform__svg {
|
|
660
660
|
position: absolute;
|
|
661
661
|
left: 0;
|
|
662
662
|
top: 0;
|
|
@@ -664,70 +664,70 @@
|
|
|
664
664
|
height: 100%;
|
|
665
665
|
overflow: visible;
|
|
666
666
|
pointer-events: none;
|
|
667
|
-
color: rgb(var(--
|
|
667
|
+
color: rgb(var(--m-theme-primary));
|
|
668
668
|
stroke: currentColor;
|
|
669
669
|
}
|
|
670
|
-
.
|
|
670
|
+
.m-transform__diagonal {
|
|
671
671
|
stroke-width: 1px;
|
|
672
672
|
stroke-dasharray: 2px;
|
|
673
673
|
visibility: hidden;
|
|
674
674
|
}
|
|
675
|
-
.
|
|
675
|
+
.m-transform__rect {
|
|
676
676
|
stroke-width: 1px;
|
|
677
677
|
}
|
|
678
|
-
.
|
|
678
|
+
.m-transform__handle {
|
|
679
679
|
fill: white;
|
|
680
680
|
stroke-width: 1px;
|
|
681
681
|
}
|
|
682
|
-
.
|
|
682
|
+
.m-transform__handle-rect {
|
|
683
683
|
stroke-width: 1px;
|
|
684
684
|
fill: transparent;
|
|
685
685
|
stroke: transparent;
|
|
686
686
|
}
|
|
687
|
-
.
|
|
687
|
+
.m-transform__rotator {
|
|
688
688
|
fill: white;
|
|
689
689
|
stroke-width: 0.5px;
|
|
690
690
|
stroke: currentColor;
|
|
691
691
|
}
|
|
692
|
-
.
|
|
692
|
+
.m-transform__tip {
|
|
693
693
|
position: absolute;
|
|
694
694
|
bottom: 0;
|
|
695
695
|
left: 50%;
|
|
696
696
|
transform: translate(-50%, calc(100% + 8px));
|
|
697
|
-
background-color: rgb(var(--
|
|
698
|
-
color: rgb(var(--
|
|
697
|
+
background-color: rgb(var(--m-theme-primary));
|
|
698
|
+
color: rgb(var(--m-theme-on-primary));
|
|
699
699
|
font-size: 0.75rem;
|
|
700
700
|
padding: 2px 4px;
|
|
701
701
|
border-radius: 3px;
|
|
702
702
|
text-wrap: nowrap;
|
|
703
703
|
}
|
|
704
|
-
.
|
|
704
|
+
.m-transform--dashed .m-transform__rect {
|
|
705
705
|
stroke-dasharray: 4px;
|
|
706
706
|
}
|
|
707
|
-
.
|
|
707
|
+
.m-transform--resizing .m-transform__diagonal {
|
|
708
708
|
visibility: visible;
|
|
709
709
|
}
|
|
710
|
-
.
|
|
711
|
-
.
|
|
712
|
-
.
|
|
713
|
-
.
|
|
710
|
+
.m-transform--moving .m-transform__handle,
|
|
711
|
+
.m-transform--moving .m-transform__handle-rect,
|
|
712
|
+
.m-transform--moving .m-transform__rotator,
|
|
713
|
+
.m-transform--moving .m-transform__tip {
|
|
714
714
|
visibility: hidden;
|
|
715
715
|
}
|
|
716
|
-
.
|
|
716
|
+
.m-transform--moving .m-transform__rect {
|
|
717
717
|
opacity: 0.4;
|
|
718
718
|
stroke-width: 0.5px;
|
|
719
719
|
}
|
|
720
|
-
.
|
|
720
|
+
.m-transform--moving .m-transform__svg-slot {
|
|
721
721
|
opacity: 0.4;
|
|
722
722
|
stroke-width: 0.5px;
|
|
723
723
|
}
|
|
724
|
-
.
|
|
725
|
-
.
|
|
726
|
-
.
|
|
727
|
-
.
|
|
728
|
-
.
|
|
724
|
+
.m-transform--ui-hide .m-transform__handle,
|
|
725
|
+
.m-transform--ui-hide .m-transform__handle-rect,
|
|
726
|
+
.m-transform--ui-hide .m-transform__rect,
|
|
727
|
+
.m-transform--ui-hide .m-transform__rotator,
|
|
728
|
+
.m-transform--ui-hide .m-transform__tip {
|
|
729
729
|
visibility: hidden;
|
|
730
|
-
}.
|
|
730
|
+
}.m-cropper {
|
|
731
731
|
pointer-events: auto;
|
|
732
732
|
position: absolute;
|
|
733
733
|
left: 0;
|
|
@@ -735,63 +735,63 @@
|
|
|
735
735
|
width: 100%;
|
|
736
736
|
height: 100%;
|
|
737
737
|
}
|
|
738
|
-
.
|
|
738
|
+
.m-cropper__source {
|
|
739
739
|
position: absolute;
|
|
740
740
|
width: 100%;
|
|
741
741
|
height: 100%;
|
|
742
742
|
transform-origin: top left;
|
|
743
743
|
}
|
|
744
|
-
.
|
|
744
|
+
.m-cropper__source canvas {
|
|
745
745
|
position: absolute;
|
|
746
746
|
width: 100%;
|
|
747
747
|
height: 100%;
|
|
748
748
|
}
|
|
749
|
-
.
|
|
749
|
+
.m-cropper__transform {
|
|
750
750
|
position: absolute;
|
|
751
|
-
color: rgba(var(--
|
|
751
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
752
752
|
opacity: 0.5;
|
|
753
753
|
}
|
|
754
|
-
.
|
|
754
|
+
.m-cropper__transform_rect {
|
|
755
755
|
width: 100%;
|
|
756
756
|
height: 100%;
|
|
757
|
-
}.
|
|
757
|
+
}.m-selection {
|
|
758
758
|
position: absolute;
|
|
759
759
|
left: 0;
|
|
760
760
|
right: 0;
|
|
761
761
|
top: 0;
|
|
762
762
|
bottom: 0;
|
|
763
763
|
}
|
|
764
|
-
.
|
|
764
|
+
.m-selection__slot {
|
|
765
765
|
position: absolute;
|
|
766
766
|
}
|
|
767
|
-
.
|
|
767
|
+
.m-selection__parent {
|
|
768
768
|
position: absolute;
|
|
769
769
|
pointer-events: none;
|
|
770
770
|
border-width: 1px;
|
|
771
771
|
border-style: dashed;
|
|
772
|
-
color: rgba(var(--
|
|
772
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
773
773
|
opacity: 0.5;
|
|
774
774
|
border-color: currentColor;
|
|
775
775
|
}
|
|
776
|
-
.
|
|
776
|
+
.m-selection__marquee {
|
|
777
777
|
position: absolute;
|
|
778
778
|
border-width: 1px;
|
|
779
779
|
border-style: solid;
|
|
780
|
-
color: rgba(var(--
|
|
781
|
-
background-color: rgba(var(--
|
|
780
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
781
|
+
background-color: rgba(var(--m-theme-primary), 0.1);
|
|
782
782
|
border-color: currentcolor;
|
|
783
783
|
}
|
|
784
|
-
.
|
|
784
|
+
.m-selection__transform {
|
|
785
785
|
position: absolute;
|
|
786
|
-
color: rgba(var(--
|
|
786
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
787
787
|
}
|
|
788
|
-
.
|
|
788
|
+
.m-selection__node {
|
|
789
789
|
position: absolute;
|
|
790
790
|
border-width: 1px;
|
|
791
791
|
border-style: solid;
|
|
792
|
-
color: rgba(var(--
|
|
792
|
+
color: rgba(var(--m-theme-primary), 1);
|
|
793
793
|
border-color: currentcolor;
|
|
794
|
-
}.
|
|
794
|
+
}.m-smart-guides {
|
|
795
795
|
position: absolute;
|
|
796
796
|
overflow: hidden;
|
|
797
797
|
left: 0;
|
|
@@ -799,45 +799,45 @@
|
|
|
799
799
|
top: 0;
|
|
800
800
|
bottom: 0;
|
|
801
801
|
}
|
|
802
|
-
.
|
|
802
|
+
.m-smart-guides__alignment {
|
|
803
803
|
position: absolute;
|
|
804
|
-
background-color: rgb(var(--
|
|
804
|
+
background-color: rgb(var(--m-theme-secondary));
|
|
805
805
|
height: 1px;
|
|
806
806
|
width: 1px;
|
|
807
807
|
}
|
|
808
|
-
.
|
|
808
|
+
.m-smart-guides__area {
|
|
809
809
|
position: absolute;
|
|
810
810
|
display: flex;
|
|
811
811
|
align-items: center;
|
|
812
812
|
justify-content: center;
|
|
813
|
-
background-color: rgba(var(--
|
|
813
|
+
background-color: rgba(var(--m-theme-secondary), 0.2);
|
|
814
814
|
}
|
|
815
|
-
.
|
|
815
|
+
.m-smart-guides__area:before {
|
|
816
816
|
content: "";
|
|
817
|
-
background: rgb(var(--
|
|
817
|
+
background: rgb(var(--m-theme-primary));
|
|
818
818
|
height: 1px;
|
|
819
819
|
width: 100%;
|
|
820
820
|
}
|
|
821
|
-
.
|
|
821
|
+
.m-smart-guides__area:after {
|
|
822
822
|
position: absolute;
|
|
823
823
|
content: "";
|
|
824
824
|
height: 5px;
|
|
825
825
|
width: 100%;
|
|
826
|
-
border-left: 1px solid rgb(var(--
|
|
827
|
-
border-right: 1px solid rgb(var(--
|
|
826
|
+
border-left: 1px solid rgb(var(--m-theme-primary));
|
|
827
|
+
border-right: 1px solid rgb(var(--m-theme-primary));
|
|
828
828
|
}
|
|
829
|
-
.
|
|
829
|
+
.m-smart-guides__area--vertical:before {
|
|
830
830
|
height: 100%;
|
|
831
831
|
width: 1px;
|
|
832
832
|
}
|
|
833
|
-
.
|
|
833
|
+
.m-smart-guides__area--vertical:after {
|
|
834
834
|
height: 100%;
|
|
835
835
|
width: 5px;
|
|
836
836
|
border-left: none;
|
|
837
837
|
border-right: none;
|
|
838
|
-
border-top: 1px solid rgb(var(--
|
|
839
|
-
border-bottom: 1px solid rgb(var(--
|
|
840
|
-
}.
|
|
838
|
+
border-top: 1px solid rgb(var(--m-theme-primary));
|
|
839
|
+
border-bottom: 1px solid rgb(var(--m-theme-primary));
|
|
840
|
+
}.m-smart-selection {
|
|
841
841
|
position: absolute;
|
|
842
842
|
overflow: hidden;
|
|
843
843
|
left: 0;
|
|
@@ -845,31 +845,31 @@
|
|
|
845
845
|
top: 0;
|
|
846
846
|
bottom: 0;
|
|
847
847
|
}
|
|
848
|
-
.
|
|
848
|
+
.m-smart-selection__node {
|
|
849
849
|
position: absolute;
|
|
850
850
|
display: flex;
|
|
851
851
|
align-items: center;
|
|
852
852
|
justify-content: center;
|
|
853
853
|
}
|
|
854
|
-
.
|
|
855
|
-
background: rgb(var(--
|
|
854
|
+
.m-smart-selection__node--active .m-smart-selection__ring {
|
|
855
|
+
background: rgb(var(--m-theme-primary));
|
|
856
856
|
}
|
|
857
|
-
.
|
|
857
|
+
.m-smart-selection__ghost {
|
|
858
858
|
position: absolute;
|
|
859
|
-
border: 1px solid rgb(var(--
|
|
859
|
+
border: 1px solid rgb(var(--m-theme-primary));
|
|
860
860
|
}
|
|
861
|
-
.
|
|
861
|
+
.m-smart-selection__ring {
|
|
862
862
|
width: 1px;
|
|
863
863
|
height: 1px;
|
|
864
864
|
border-radius: 100%;
|
|
865
|
-
border: 1px solid rgb(var(--
|
|
866
|
-
outline: 1px solid rgb(var(--
|
|
865
|
+
border: 1px solid rgb(var(--m-theme-secondary));
|
|
866
|
+
outline: 1px solid rgb(var(--m-theme-on-secondary));
|
|
867
867
|
pointer-events: auto;
|
|
868
868
|
}
|
|
869
|
-
.
|
|
870
|
-
background: rgb(var(--
|
|
869
|
+
.m-smart-selection__ring:hover {
|
|
870
|
+
background: rgb(var(--m-theme-secondary));
|
|
871
871
|
}
|
|
872
|
-
.
|
|
872
|
+
.m-smart-selection__spacing {
|
|
873
873
|
position: absolute;
|
|
874
874
|
left: 0;
|
|
875
875
|
top: 0;
|
|
@@ -878,7 +878,7 @@
|
|
|
878
878
|
align-items: center;
|
|
879
879
|
justify-content: center;
|
|
880
880
|
}
|
|
881
|
-
.
|
|
881
|
+
.m-smart-selection__spacing-line {
|
|
882
882
|
height: 10px;
|
|
883
883
|
width: 10px;
|
|
884
884
|
pointer-events: auto;
|
|
@@ -886,86 +886,86 @@
|
|
|
886
886
|
align-items: center;
|
|
887
887
|
justify-content: center;
|
|
888
888
|
}
|
|
889
|
-
.
|
|
889
|
+
.m-smart-selection__spacing-line:before {
|
|
890
890
|
content: "";
|
|
891
891
|
display: block;
|
|
892
892
|
width: 100%;
|
|
893
893
|
height: 100%;
|
|
894
|
-
background-color: rgb(var(--
|
|
894
|
+
background-color: rgb(var(--m-theme-secondary));
|
|
895
895
|
}
|
|
896
|
-
.
|
|
896
|
+
.m-smart-selection--hover .m-smart-selection__ring {
|
|
897
897
|
width: 10px;
|
|
898
898
|
height: 10px;
|
|
899
899
|
}
|
|
900
|
-
.
|
|
900
|
+
.m-smart-selection--hover .m-smart-selection__spacing {
|
|
901
901
|
visibility: visible;
|
|
902
902
|
}
|
|
903
|
-
.
|
|
903
|
+
.m-smart-selection--vertical .m-smart-selection__spacing-line {
|
|
904
904
|
height: 6px;
|
|
905
905
|
cursor: row-resize;
|
|
906
906
|
}
|
|
907
|
-
.
|
|
907
|
+
.m-smart-selection--vertical .m-smart-selection__spacing-line:before {
|
|
908
908
|
height: 1px;
|
|
909
909
|
}
|
|
910
|
-
.
|
|
910
|
+
.m-smart-selection--horizontal .m-smart-selection__spacing-line {
|
|
911
911
|
width: 6px;
|
|
912
912
|
cursor: col-resize;
|
|
913
913
|
}
|
|
914
|
-
.
|
|
914
|
+
.m-smart-selection--horizontal .m-smart-selection__spacing-line:before {
|
|
915
915
|
width: 1px;
|
|
916
916
|
}
|
|
917
|
-
.
|
|
917
|
+
.m-smart-selection--ring .m-smart-selection__spacing {
|
|
918
918
|
visibility: hidden;
|
|
919
919
|
}
|
|
920
|
-
.
|
|
920
|
+
.m-smart-selection--spacing .m-smart-selection__spacing {
|
|
921
921
|
visibility: visible;
|
|
922
|
-
background-color: rgb(var(--
|
|
922
|
+
background-color: rgb(var(--m-theme-secondary));
|
|
923
923
|
opacity: 0.3;
|
|
924
924
|
}
|
|
925
|
-
.
|
|
925
|
+
.m-smart-selection--spacing .m-smart-selection__spacing-line {
|
|
926
926
|
visibility: hidden;
|
|
927
|
-
}.progress-indicator[data-v-
|
|
927
|
+
}.m-progress-indicator[data-v-cc8ac0cb] {
|
|
928
928
|
display: flex;
|
|
929
929
|
align-items: center;
|
|
930
930
|
gap: 12px;
|
|
931
931
|
}
|
|
932
|
-
.progress-indicator__status[data-v-
|
|
932
|
+
.m-progress-indicator__status[data-v-cc8ac0cb] {
|
|
933
933
|
font-size: 0.75rem;
|
|
934
|
-
color: rgb(var(--
|
|
934
|
+
color: rgb(var(--m-theme-on-surface));
|
|
935
935
|
}
|
|
936
|
-
.progress-indicator__bar[data-v-
|
|
936
|
+
.m-progress-indicator__bar[data-v-cc8ac0cb] {
|
|
937
937
|
position: relative;
|
|
938
938
|
width: 100px;
|
|
939
939
|
height: 6px;
|
|
940
|
-
background-color: rgb(var(--
|
|
940
|
+
background-color: rgb(var(--m-theme-background));
|
|
941
941
|
border-radius: 4px;
|
|
942
942
|
overflow: hidden;
|
|
943
943
|
}
|
|
944
|
-
.progress-indicator__bar-fill[data-v-
|
|
944
|
+
.m-progress-indicator__bar-fill[data-v-cc8ac0cb] {
|
|
945
945
|
position: absolute;
|
|
946
946
|
top: 0;
|
|
947
947
|
left: 0;
|
|
948
948
|
height: 100%;
|
|
949
|
-
background-color: rgb(var(--
|
|
949
|
+
background-color: rgb(var(--m-theme-primary));
|
|
950
950
|
transition: width 0.3s ease;
|
|
951
951
|
}
|
|
952
|
-
.progress-indicator__bar-indeterminate[data-v-
|
|
952
|
+
.m-progress-indicator__bar-indeterminate[data-v-cc8ac0cb] {
|
|
953
953
|
position: absolute;
|
|
954
954
|
top: 0;
|
|
955
955
|
left: -30%;
|
|
956
956
|
width: 30%;
|
|
957
957
|
height: 100%;
|
|
958
958
|
background-color: #3b82f6;
|
|
959
|
-
animation: indeterminate-slide-
|
|
959
|
+
animation: indeterminate-slide-cc8ac0cb 1.5s linear infinite;
|
|
960
960
|
}
|
|
961
|
-
@keyframes indeterminate-slide-
|
|
961
|
+
@keyframes indeterminate-slide-cc8ac0cb {
|
|
962
962
|
0% {
|
|
963
963
|
left: -30%;
|
|
964
964
|
}
|
|
965
965
|
100% {
|
|
966
966
|
left: 100%;
|
|
967
967
|
}
|
|
968
|
-
}.
|
|
968
|
+
}.m-statusbar[data-v-12c3be94] {
|
|
969
969
|
user-select: none;
|
|
970
970
|
position: relative;
|
|
971
971
|
display: flex;
|
|
@@ -976,36 +976,36 @@
|
|
|
976
976
|
width: 100%;
|
|
977
977
|
height: 100%;
|
|
978
978
|
padding: 0 8px;
|
|
979
|
-
background-color: rgba(var(--
|
|
980
|
-
color: rgba(var(--
|
|
979
|
+
background-color: rgba(var(--m-theme-surface), 1);
|
|
980
|
+
color: rgba(var(--m-theme-on-surface), 1);
|
|
981
981
|
font-weight: bold;
|
|
982
982
|
white-space: nowrap;
|
|
983
983
|
overflow-x: auto;
|
|
984
984
|
}
|
|
985
|
-
.
|
|
985
|
+
.m-statusbar__main[data-v-12c3be94] {
|
|
986
986
|
flex: 1;
|
|
987
987
|
display: flex;
|
|
988
988
|
align-items: center;
|
|
989
989
|
gap: 4px;
|
|
990
990
|
height: 100%;
|
|
991
991
|
}
|
|
992
|
-
.
|
|
992
|
+
.m-statusbar__item[data-v-12c3be94] {
|
|
993
993
|
display: flex;
|
|
994
994
|
align-items: center;
|
|
995
995
|
gap: 4px;
|
|
996
996
|
}
|
|
997
|
-
.
|
|
997
|
+
.m-statusbar__item > svg[data-v-12c3be94] {
|
|
998
998
|
width: 1em;
|
|
999
999
|
height: 1em;
|
|
1000
1000
|
}
|
|
1001
|
-
.
|
|
1001
|
+
.m-statusbar__divider[data-v-12c3be94] {
|
|
1002
1002
|
width: 0;
|
|
1003
1003
|
height: 60%;
|
|
1004
|
-
border-right: 1px solid rgba(var(--
|
|
1004
|
+
border-right: 1px solid rgba(var(--m-theme-on-surface), 0.1);
|
|
1005
1005
|
margin: 0 8px;
|
|
1006
1006
|
}
|
|
1007
|
-
.
|
|
1008
|
-
outline: 1px solid rgba(var(--
|
|
1007
|
+
.m-statusbar__kbd[data-v-12c3be94] {
|
|
1008
|
+
outline: 1px solid rgba(var(--m-theme-on-surface), 0.1);
|
|
1009
1009
|
border-radius: 4px;
|
|
1010
1010
|
display: flex;
|
|
1011
1011
|
align-items: center;
|
|
@@ -1013,16 +1013,16 @@
|
|
|
1013
1013
|
font-size: 0.75rem;
|
|
1014
1014
|
padding: 0 2px;
|
|
1015
1015
|
font-family: system-ui, -apple-system, sans-serif;
|
|
1016
|
-
}.
|
|
1016
|
+
}.m-payhead {
|
|
1017
1017
|
bottom: 0;
|
|
1018
1018
|
left: -5px;
|
|
1019
1019
|
position: absolute;
|
|
1020
1020
|
top: 0;
|
|
1021
1021
|
width: 10px;
|
|
1022
|
-
color: rgb(var(--
|
|
1022
|
+
color: rgb(var(--m-theme-on-surface));
|
|
1023
1023
|
cursor: col-resize;
|
|
1024
1024
|
}
|
|
1025
|
-
.
|
|
1025
|
+
.m-payhead__header {
|
|
1026
1026
|
position: relative;
|
|
1027
1027
|
background-color: transparent;
|
|
1028
1028
|
border: 2px solid currentColor;
|
|
@@ -1035,7 +1035,7 @@
|
|
|
1035
1035
|
top: 0;
|
|
1036
1036
|
width: 10px;
|
|
1037
1037
|
}
|
|
1038
|
-
.
|
|
1038
|
+
.m-payhead__header:after {
|
|
1039
1039
|
box-sizing: content-box;
|
|
1040
1040
|
content: "";
|
|
1041
1041
|
background-color: transparent;
|
|
@@ -1049,7 +1049,7 @@
|
|
|
1049
1049
|
transform: rotate(45deg) translate(2.8px, 2px);
|
|
1050
1050
|
width: 5px;
|
|
1051
1051
|
}
|
|
1052
|
-
.
|
|
1052
|
+
.m-payhead__main {
|
|
1053
1053
|
background-color: currentColor;
|
|
1054
1054
|
bottom: 0;
|
|
1055
1055
|
left: 4px;
|
|
@@ -1057,7 +1057,7 @@
|
|
|
1057
1057
|
top: 16px;
|
|
1058
1058
|
transform: translateX(0.5px);
|
|
1059
1059
|
width: 1px;
|
|
1060
|
-
}.
|
|
1060
|
+
}.m-segment {
|
|
1061
1061
|
display: flex;
|
|
1062
1062
|
font-size: 0.75rem;
|
|
1063
1063
|
align-items: center;
|
|
@@ -1070,20 +1070,20 @@
|
|
|
1070
1070
|
border-radius: 2px;
|
|
1071
1071
|
background-color: #cc9641;
|
|
1072
1072
|
}
|
|
1073
|
-
.
|
|
1074
|
-
outline: 1px solid rgb(var(--
|
|
1073
|
+
.m-segment--active {
|
|
1074
|
+
outline: 1px solid rgb(var(--m-theme-on-surface));
|
|
1075
1075
|
}
|
|
1076
|
-
.
|
|
1076
|
+
.m-segment__animation {
|
|
1077
1077
|
position: absolute;
|
|
1078
1078
|
bottom: 2px;
|
|
1079
1079
|
}
|
|
1080
|
-
.
|
|
1080
|
+
.m-segment__animation--in {
|
|
1081
1081
|
width: 0;
|
|
1082
1082
|
left: 4px;
|
|
1083
1083
|
background-color: white;
|
|
1084
1084
|
height: 2px;
|
|
1085
1085
|
}
|
|
1086
|
-
.
|
|
1086
|
+
.m-segment__animation--in:after {
|
|
1087
1087
|
border-color: transparent transparent transparent white;
|
|
1088
1088
|
border-style: solid;
|
|
1089
1089
|
border-width: 5px 0 0 6px;
|
|
@@ -1095,13 +1095,13 @@
|
|
|
1095
1095
|
position: absolute;
|
|
1096
1096
|
width: 0;
|
|
1097
1097
|
}
|
|
1098
|
-
.
|
|
1098
|
+
.m-segment__animation--out {
|
|
1099
1099
|
width: 0;
|
|
1100
1100
|
right: 4px;
|
|
1101
1101
|
background-color: white;
|
|
1102
1102
|
height: 2px;
|
|
1103
1103
|
}
|
|
1104
|
-
.
|
|
1104
|
+
.m-segment__animation--out:before {
|
|
1105
1105
|
border-color: transparent white transparent transparent;
|
|
1106
1106
|
border-style: solid;
|
|
1107
1107
|
border-width: 5px 6px 0 0;
|
|
@@ -1113,12 +1113,12 @@
|
|
|
1113
1113
|
right: 100%;
|
|
1114
1114
|
width: 0;
|
|
1115
1115
|
}
|
|
1116
|
-
.
|
|
1116
|
+
.m-segment__animation--stay {
|
|
1117
1117
|
left: 0;
|
|
1118
1118
|
background-color: white;
|
|
1119
1119
|
height: 2px;
|
|
1120
1120
|
}
|
|
1121
|
-
.
|
|
1121
|
+
.m-segment__animation--stay:before {
|
|
1122
1122
|
border-color: transparent white transparent transparent;
|
|
1123
1123
|
border-style: solid;
|
|
1124
1124
|
border-width: 5px 6px 0 0;
|
|
@@ -1130,7 +1130,7 @@
|
|
|
1130
1130
|
right: 100%;
|
|
1131
1131
|
width: 0;
|
|
1132
1132
|
}
|
|
1133
|
-
.
|
|
1133
|
+
.m-segment__animation--stay:after {
|
|
1134
1134
|
border-color: transparent transparent transparent white;
|
|
1135
1135
|
border-style: solid;
|
|
1136
1136
|
border-width: 5px 0 0 6px;
|
|
@@ -1142,9 +1142,9 @@
|
|
|
1142
1142
|
position: absolute;
|
|
1143
1143
|
width: 0;
|
|
1144
1144
|
}
|
|
1145
|
-
.
|
|
1145
|
+
.m-segment__edge {
|
|
1146
1146
|
align-items: center;
|
|
1147
|
-
background-color: rgb(var(--
|
|
1147
|
+
background-color: rgb(var(--m-theme-on-surface));
|
|
1148
1148
|
bottom: 0;
|
|
1149
1149
|
content: "";
|
|
1150
1150
|
display: flex;
|
|
@@ -1155,31 +1155,31 @@
|
|
|
1155
1155
|
width: 4px;
|
|
1156
1156
|
cursor: col-resize;
|
|
1157
1157
|
}
|
|
1158
|
-
.
|
|
1159
|
-
background-color: rgb(var(--
|
|
1158
|
+
.m-segment__edge:before {
|
|
1159
|
+
background-color: rgb(var(--m-theme-surface));
|
|
1160
1160
|
content: "";
|
|
1161
1161
|
display: block;
|
|
1162
1162
|
height: 10px;
|
|
1163
1163
|
width: 2px;
|
|
1164
1164
|
}
|
|
1165
|
-
.
|
|
1165
|
+
.m-segment__edge--front {
|
|
1166
1166
|
border-bottom-left-radius: 2px;
|
|
1167
1167
|
border-top-left-radius: 2px;
|
|
1168
1168
|
left: 0;
|
|
1169
1169
|
}
|
|
1170
|
-
.
|
|
1170
|
+
.m-segment__edge--end {
|
|
1171
1171
|
border-bottom-right-radius: 2px;
|
|
1172
1172
|
border-top-right-radius: 2px;
|
|
1173
1173
|
right: 0;
|
|
1174
1174
|
}
|
|
1175
|
-
.
|
|
1175
|
+
.m-segment__node {
|
|
1176
1176
|
border-radius: 2px;
|
|
1177
1177
|
padding: 2px 8px;
|
|
1178
1178
|
white-space: nowrap;
|
|
1179
1179
|
overflow: hidden;
|
|
1180
1180
|
text-overflow: ellipsis;
|
|
1181
1181
|
}
|
|
1182
|
-
.
|
|
1182
|
+
.m-segment__block {
|
|
1183
1183
|
position: absolute;
|
|
1184
1184
|
left: 0;
|
|
1185
1185
|
top: 0;
|
|
@@ -1187,51 +1187,51 @@
|
|
|
1187
1187
|
padding: 0 8px;
|
|
1188
1188
|
text-wrap: nowrap;
|
|
1189
1189
|
overflow: visible;
|
|
1190
|
-
border-bottom: 1px solid rgb(var(--
|
|
1191
|
-
}.
|
|
1190
|
+
border-bottom: 1px solid rgb(var(--m-theme-surface));
|
|
1191
|
+
}.m-track {
|
|
1192
1192
|
position: relative;
|
|
1193
1193
|
display: flex;
|
|
1194
1194
|
height: 22px;
|
|
1195
|
-
background-color: rgb(var(--
|
|
1196
|
-
}.
|
|
1195
|
+
background-color: rgb(var(--m-theme-background));
|
|
1196
|
+
}.m-trackhead {
|
|
1197
1197
|
display: flex;
|
|
1198
1198
|
height: 22px;
|
|
1199
1199
|
min-height: 22px;
|
|
1200
1200
|
align-items: center;
|
|
1201
|
-
color: rgba(var(--
|
|
1201
|
+
color: rgba(var(--m-theme-on-surface), 0.6);
|
|
1202
1202
|
font-size: 0.75rem;
|
|
1203
1203
|
width: 100%;
|
|
1204
1204
|
white-space: nowrap;
|
|
1205
1205
|
overflow: hidden;
|
|
1206
1206
|
text-overflow: ellipsis;
|
|
1207
|
-
}.
|
|
1207
|
+
}.m-timeline {
|
|
1208
1208
|
position: relative;
|
|
1209
|
-
color: rgb(var(--
|
|
1210
|
-
background-color: rgb(var(--
|
|
1209
|
+
color: rgb(var(--m-theme-on-surface));
|
|
1210
|
+
background-color: rgb(var(--m-theme-surface));
|
|
1211
1211
|
display: flex;
|
|
1212
1212
|
flex-direction: column;
|
|
1213
1213
|
width: 100%;
|
|
1214
1214
|
height: 100%;
|
|
1215
1215
|
}
|
|
1216
|
-
.
|
|
1216
|
+
.m-timeline__toolbar {
|
|
1217
1217
|
display: flex;
|
|
1218
1218
|
align-items: center;
|
|
1219
1219
|
height: 24px;
|
|
1220
|
-
border-bottom: 1px solid rgba(var(--
|
|
1220
|
+
border-bottom: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1221
1221
|
}
|
|
1222
|
-
.
|
|
1222
|
+
.m-timeline__play {
|
|
1223
1223
|
position: absolute;
|
|
1224
1224
|
left: 50%;
|
|
1225
1225
|
transform: translateX(-50%);
|
|
1226
1226
|
cursor: pointer;
|
|
1227
1227
|
}
|
|
1228
|
-
.
|
|
1228
|
+
.m-timeline__main {
|
|
1229
1229
|
position: relative;
|
|
1230
1230
|
display: flex;
|
|
1231
1231
|
min-height: 0;
|
|
1232
1232
|
flex: 1;
|
|
1233
1233
|
}
|
|
1234
|
-
.
|
|
1234
|
+
.m-timeline__left {
|
|
1235
1235
|
display: flex;
|
|
1236
1236
|
flex-direction: column-reverse;
|
|
1237
1237
|
align-items: center;
|
|
@@ -1240,34 +1240,34 @@
|
|
|
1240
1240
|
padding-top: 24px;
|
|
1241
1241
|
overflow: hidden;
|
|
1242
1242
|
}
|
|
1243
|
-
.
|
|
1243
|
+
.m-timeline__left-wrapper {
|
|
1244
1244
|
position: relative;
|
|
1245
1245
|
height: 100%;
|
|
1246
1246
|
width: 100%;
|
|
1247
1247
|
padding: 0 0 0 4px;
|
|
1248
1248
|
}
|
|
1249
|
-
.
|
|
1249
|
+
.m-timeline__right {
|
|
1250
1250
|
position: relative;
|
|
1251
1251
|
display: flex;
|
|
1252
1252
|
min-width: 0;
|
|
1253
1253
|
flex: 1;
|
|
1254
1254
|
overflow: hidden;
|
|
1255
1255
|
flex-direction: column;
|
|
1256
|
-
border-left: 1px solid rgba(var(--
|
|
1256
|
+
border-left: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1257
1257
|
padding-left: 48px;
|
|
1258
1258
|
}
|
|
1259
|
-
.
|
|
1259
|
+
.m-timeline__right-wrapper {
|
|
1260
1260
|
position: relative;
|
|
1261
1261
|
height: 100%;
|
|
1262
1262
|
width: 100%;
|
|
1263
1263
|
}
|
|
1264
|
-
.
|
|
1264
|
+
.m-timeline__ruler {
|
|
1265
1265
|
position: relative;
|
|
1266
1266
|
width: 100%;
|
|
1267
1267
|
height: 24px;
|
|
1268
1268
|
min-height: 24px;
|
|
1269
1269
|
}
|
|
1270
|
-
.
|
|
1270
|
+
.m-timeline__track {
|
|
1271
1271
|
position: relative;
|
|
1272
1272
|
display: flex;
|
|
1273
1273
|
flex-direction: column-reverse;
|
|
@@ -1277,10 +1277,10 @@
|
|
|
1277
1277
|
height: max-content;
|
|
1278
1278
|
min-height: 100%;
|
|
1279
1279
|
overflow: hidden;
|
|
1280
|
-
}.
|
|
1280
|
+
}.m-drawing {
|
|
1281
1281
|
position: absolute;
|
|
1282
1282
|
}
|
|
1283
|
-
.
|
|
1283
|
+
.m-drawing__tip {
|
|
1284
1284
|
margin: 4px;
|
|
1285
1285
|
border: 1px solid rgba(0, 0, 0, 0.168627451);
|
|
1286
1286
|
border-radius: 4px;
|
|
@@ -1291,8 +1291,8 @@
|
|
|
1291
1291
|
white-space: nowrap;
|
|
1292
1292
|
overflow: hidden;
|
|
1293
1293
|
text-overflow: ellipsis;
|
|
1294
|
-
background-color: rgba(var(--
|
|
1295
|
-
}.
|
|
1294
|
+
background-color: rgba(var(--m-theme-surface), 1);
|
|
1295
|
+
}.m-toolbelt {
|
|
1296
1296
|
pointer-events: auto !important;
|
|
1297
1297
|
position: absolute;
|
|
1298
1298
|
left: 50%;
|
|
@@ -1301,39 +1301,39 @@
|
|
|
1301
1301
|
display: flex;
|
|
1302
1302
|
align-items: center;
|
|
1303
1303
|
gap: 12px;
|
|
1304
|
-
box-shadow: var(--
|
|
1305
|
-
background: rgb(var(--
|
|
1304
|
+
box-shadow: var(--m-shadow);
|
|
1305
|
+
background: rgb(var(--m-theme-surface));
|
|
1306
1306
|
padding: 8px;
|
|
1307
1307
|
border-radius: 12px;
|
|
1308
1308
|
height: 48px;
|
|
1309
1309
|
cursor: default;
|
|
1310
1310
|
}
|
|
1311
|
-
.
|
|
1311
|
+
.m-toolbelt__kbd {
|
|
1312
1312
|
font-size: 0.75rem;
|
|
1313
1313
|
white-space: nowrap;
|
|
1314
1314
|
letter-spacing: 0.08em;
|
|
1315
1315
|
margin-left: 16px;
|
|
1316
1316
|
opacity: 0.3;
|
|
1317
1317
|
}
|
|
1318
|
-
.
|
|
1318
|
+
.m-toolbelt__group {
|
|
1319
1319
|
display: flex;
|
|
1320
1320
|
align-items: center;
|
|
1321
1321
|
height: 100%;
|
|
1322
1322
|
}
|
|
1323
|
-
.
|
|
1323
|
+
.m-toolbelt__btn {
|
|
1324
1324
|
font-size: 24px;
|
|
1325
1325
|
width: 100%;
|
|
1326
1326
|
height: 100%;
|
|
1327
1327
|
}
|
|
1328
|
-
.
|
|
1328
|
+
.m-toolbelt__icon {
|
|
1329
1329
|
font-size: 1rem;
|
|
1330
1330
|
}
|
|
1331
|
-
.
|
|
1331
|
+
.m-toolbelt__arrow {
|
|
1332
1332
|
width: 16px;
|
|
1333
1333
|
height: 100%;
|
|
1334
1334
|
font-size: 0.75rem;
|
|
1335
1335
|
border-radius: 4px;
|
|
1336
|
-
}.
|
|
1336
|
+
}.m-text-editor {
|
|
1337
1337
|
position: absolute;
|
|
1338
1338
|
width: 0;
|
|
1339
1339
|
height: 0;
|
|
@@ -1341,81 +1341,81 @@
|
|
|
1341
1341
|
top: 0;
|
|
1342
1342
|
overflow: visible;
|
|
1343
1343
|
}
|
|
1344
|
-
.
|
|
1344
|
+
.m-text-editor__wrapper {
|
|
1345
1345
|
position: absolute;
|
|
1346
1346
|
}
|
|
1347
|
-
.
|
|
1347
|
+
.m-text-editor__editor {
|
|
1348
1348
|
pointer-events: auto !important;
|
|
1349
1349
|
cursor: move;
|
|
1350
|
-
}.
|
|
1350
|
+
}.m-floatbar .m-overlay-content {
|
|
1351
1351
|
overflow: visible;
|
|
1352
|
-
}.
|
|
1352
|
+
}.m-float-panel {
|
|
1353
1353
|
position: absolute;
|
|
1354
1354
|
pointer-events: auto !important;
|
|
1355
1355
|
z-index: 2000;
|
|
1356
1356
|
}
|
|
1357
|
-
.
|
|
1357
|
+
.m-float-panel__card {
|
|
1358
1358
|
display: flex;
|
|
1359
1359
|
flex-direction: column;
|
|
1360
1360
|
width: 100%;
|
|
1361
1361
|
height: 100%;
|
|
1362
1362
|
border-radius: 12px;
|
|
1363
|
-
background-color: rgb(var(--
|
|
1364
|
-
box-shadow: var(--
|
|
1363
|
+
background-color: rgb(var(--m-theme-surface));
|
|
1364
|
+
box-shadow: var(--m-shadow);
|
|
1365
1365
|
overflow: hidden;
|
|
1366
1366
|
}
|
|
1367
|
-
.
|
|
1367
|
+
.m-float-panel__title {
|
|
1368
1368
|
display: flex;
|
|
1369
1369
|
justify-content: space-between;
|
|
1370
1370
|
align-items: center;
|
|
1371
1371
|
padding: 8px;
|
|
1372
1372
|
font-size: 0.75rem;
|
|
1373
1373
|
font-weight: bold;
|
|
1374
|
-
border-bottom: 1px solid rgba(var(--
|
|
1374
|
+
border-bottom: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1375
1375
|
}
|
|
1376
|
-
.
|
|
1376
|
+
.m-float-panel__content {
|
|
1377
1377
|
position: relative;
|
|
1378
1378
|
width: 100%;
|
|
1379
1379
|
height: 100%;
|
|
1380
1380
|
overflow-y: auto;
|
|
1381
|
-
}.
|
|
1382
|
-
--
|
|
1381
|
+
}.m-layout {
|
|
1382
|
+
--m-scrollbar-offset: 0px;
|
|
1383
1383
|
display: flex;
|
|
1384
1384
|
flex: 1 1 auto;
|
|
1385
1385
|
}
|
|
1386
|
-
.
|
|
1387
|
-
--
|
|
1386
|
+
.m-layout--full-height {
|
|
1387
|
+
--m-scrollbar-offset: inherit;
|
|
1388
1388
|
height: 100%;
|
|
1389
|
-
}.
|
|
1389
|
+
}.m-layout-item {
|
|
1390
1390
|
position: absolute;
|
|
1391
1391
|
}
|
|
1392
|
-
.
|
|
1392
|
+
.m-layout-item--absolute {
|
|
1393
1393
|
position: absolute;
|
|
1394
1394
|
}
|
|
1395
|
-
.
|
|
1396
|
-
border-right: 1px solid rgba(var(--
|
|
1395
|
+
.m-layout-item--left {
|
|
1396
|
+
border-right: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1397
1397
|
}
|
|
1398
|
-
.
|
|
1399
|
-
border-bottom: 1px solid rgba(var(--
|
|
1398
|
+
.m-layout-item--top {
|
|
1399
|
+
border-bottom: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1400
1400
|
}
|
|
1401
|
-
.
|
|
1402
|
-
border-left: 1px solid rgba(var(--
|
|
1401
|
+
.m-layout-item--right {
|
|
1402
|
+
border-left: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1403
1403
|
}
|
|
1404
|
-
.
|
|
1405
|
-
border-top: 1px solid rgba(var(--
|
|
1406
|
-
}.
|
|
1404
|
+
.m-layout-item--bottom {
|
|
1405
|
+
border-top: 1px solid rgba(var(--m-border-color), var(--m-border-opacity));
|
|
1406
|
+
}.m-main {
|
|
1407
1407
|
flex: 1 0 auto;
|
|
1408
1408
|
max-width: 100%;
|
|
1409
|
-
padding-left: var(--
|
|
1410
|
-
padding-right: var(--
|
|
1411
|
-
padding-top: var(--
|
|
1412
|
-
padding-bottom: var(--
|
|
1409
|
+
padding-left: var(--m-layout-left);
|
|
1410
|
+
padding-right: var(--m-layout-right);
|
|
1411
|
+
padding-top: var(--m-layout-top);
|
|
1412
|
+
padding-bottom: var(--m-layout-bottom);
|
|
1413
1413
|
}
|
|
1414
|
-
.
|
|
1414
|
+
.m-main__scroller {
|
|
1415
1415
|
max-width: 100%;
|
|
1416
1416
|
position: relative;
|
|
1417
1417
|
}
|
|
1418
|
-
.
|
|
1418
|
+
.m-main--scrollable {
|
|
1419
1419
|
display: flex;
|
|
1420
1420
|
position: absolute;
|
|
1421
1421
|
top: 0;
|
|
@@ -1423,71 +1423,71 @@
|
|
|
1423
1423
|
width: 100%;
|
|
1424
1424
|
height: 100%;
|
|
1425
1425
|
}
|
|
1426
|
-
.
|
|
1426
|
+
.m-main--scrollable > .v-main__scroller {
|
|
1427
1427
|
flex: 1 1 auto;
|
|
1428
1428
|
overflow-y: auto;
|
|
1429
1429
|
--v-layout-left: 0px;
|
|
1430
1430
|
--v-layout-right: 0px;
|
|
1431
1431
|
--v-layout-top: 0px;
|
|
1432
1432
|
--v-layout-bottom: 0px;
|
|
1433
|
-
}.
|
|
1434
|
-
--
|
|
1435
|
-
--
|
|
1436
|
-
--
|
|
1437
|
-
--
|
|
1438
|
-
--
|
|
1439
|
-
--
|
|
1440
|
-
--
|
|
1441
|
-
--
|
|
1442
|
-
--
|
|
1443
|
-
--
|
|
1444
|
-
--
|
|
1445
|
-
--
|
|
1446
|
-
--
|
|
1447
|
-
--
|
|
1448
|
-
--
|
|
1449
|
-
--
|
|
1450
|
-
--
|
|
1451
|
-
--
|
|
1452
|
-
--
|
|
1433
|
+
}.m-editor {
|
|
1434
|
+
--m-theme-primary: 69, 151, 248;
|
|
1435
|
+
--m-theme-on-primary: 255, 255, 255;
|
|
1436
|
+
--m-theme-secondary: 244, 36, 253;
|
|
1437
|
+
--m-theme-on-secondary: 255, 255, 255;
|
|
1438
|
+
--m-theme-surface: 255, 255, 255;
|
|
1439
|
+
--m-theme-on-surface: 30, 30, 30;
|
|
1440
|
+
--m-theme-surface-variant: 35, 37, 41;
|
|
1441
|
+
--m-theme-on-surface-variant: 255, 255, 255;
|
|
1442
|
+
--m-theme-background: 240, 242, 245;
|
|
1443
|
+
--m-theme-on-background: 56, 56, 56;
|
|
1444
|
+
--m-border-color: 0, 0, 0;
|
|
1445
|
+
--m-border-opacity: .08;
|
|
1446
|
+
--m-high-emphasis-opacity: 1;
|
|
1447
|
+
--m-medium-emphasis-opacity: 0.5;
|
|
1448
|
+
--m-low-emphasis-opacity: 0.3;
|
|
1449
|
+
--m-hover-opacity: 0.04;
|
|
1450
|
+
--m-activated-opacity: 0.06;
|
|
1451
|
+
--m-shadow: 0 8px 32px 2px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.2);
|
|
1452
|
+
--m-blur: 8px;
|
|
1453
1453
|
position: relative;
|
|
1454
1454
|
width: 100%;
|
|
1455
1455
|
height: 100%;
|
|
1456
1456
|
flex-direction: column;
|
|
1457
|
-
background-color: rgb(var(--
|
|
1458
|
-
color: rgb(var(--
|
|
1457
|
+
background-color: rgb(var(--m-theme-surface));
|
|
1458
|
+
color: rgb(var(--m-theme-on-surface));
|
|
1459
1459
|
overflow: hidden;
|
|
1460
1460
|
user-select: none;
|
|
1461
1461
|
cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij48aW1hZ2UgeGxpbms6aHJlZj0iZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFFQUFBQUJBQ0FZQUFBQ3FhWEhlQUFBR0JVbEVRVlI0QWV5WXowOGtSUlRIZXhhRlVTRUVRamlRRUFnbitBK01ISmlERi84SkU0OWNTRkQ1RlRETUhFQVE5S3pSZytGSE5pSGVKRkZqQW5PQnJLekdZRlRRRzRSQUVHRloxdDBaRk1YdnAzZHIwcGxNTTkzTDdzeDAwNlJlcXZyVnE2cjMvYjczdW91NVpkM3d2NGlBRzU0QWxsc0d4RVFNYzA1QmgyZ3FQQTJBVGpRQVJGY2w1WXVTYWttTmhCNTVRV1Btc05NdytBMndCZ1dnZUFaNHpkblpXZkx5OGpLVHpXYS9QVGs1U1oyZW5xWmsrSkxFRUFJWjJMTk82bUEyQUJqUEFRS282dVBqNC9HNnVycGhKbXBxYXJvYkdob0c2K3ZyaDBUSS9hT2pJNGg0UlhPR0RBZ2pLOWlMUFRRVm5JYlRlSXZqakNFZzN0allPSUF5bFVwWnNWak1vdWNaYVdwcWVsZEVIR2N5bWE5RlZFcTZseVdRRWNnU0FiVDh0eHRSSkpweHBmOWROT2wwbXM1S0pwTTVJZ3daOFhqOE5ZZ1NHZmNPRHcrVGxJbU1JU091M3BEQi9wQXJWV1UySE1Rem5FUWdvZnJpNHNMV0p4SUo1bklDRVVnczlqZ3JEQm5OemMzdlVDWWk0MVFsa3RTQ3dKU0lEVlFPMHlBQXViVzB0UFE1aXA2ZUhycUNBaEZJTFBhWURHTVV0Qkp4RW5CcFFQVDI5djU0Y0hEd014bUFHTDFiN3lUQ1pJV1BFbkhidGlSNlF3RGdrZjkwNnIrU2kxZ3N4ck0xUGo2dVIyOE5JaEN0dFYrY2hvd0NKVkxvWGVIdGtHZHM1U1FBOEJmYS94L0orY0xDd3J4Nnkwc0dZSmN2RUlFWU1zejhreEk1MFZma202MnRyZGVsNTRYSnU4ZjRJbFhwbXZOUUNDRDZmK3Y0ODRHQmdZMzkvZjFmTkg1cUVsaUxPSWt3V1VHSmRIWjJmcm01dVZsV0V2SUp5R1dBSE0vT3pjMHRxdmRWQnRpN0NVUWd6cXpvNk9nWWtUMmZUajdCdklUMStQeGEvczVPQXFoNU1zQXVBUmxtUjBaRzdQc0FaWUJJOTh4YU9wMjI5NnF0clgxVkE2N1hYTUx3cDZRa2NLRE96elhLZ0N5Z0RMTFNadmthcUw5MkdaZzlJSEoxZGRWQzBHMXZiMytpbnVpWDVUMlFUNEF6Q3lBZ016OC92eUFIcmF2dUJNd1hFc0FpZ0hVS091eDFhZHJzNnVyNlZPT1NSbDNuNVpvYkFTWUx6b2VHaHU3eU1zUnBKTGZTWllDTkV5eGpkQWhMZG5kM2Z4c2RIWDEvWW1MaVBYMGUrNldqNUNnOXNvOEFTRlc2bGs4QUorT0lJY0RPQXIyMGJNZUszUW1TeWFTZDJvQkYyR3huWitmM3djSEJENGVIaHovUVBtKzJ0YldOVDA1TzNoa2JHMXZYL0FOSlJuSXVLUXNKaFFnQUxNNUFBbzVsRnhjWDUrU2c1L2ZBOHZMeVYvcU1maVRBYjdXM3Q2ZG1abWJ1VEU5UHIybVBJNGNjYTN3cStVdkNPV1FDNU91eGRLMFFBWnlPSXhDQVU5d0o3REpnSXBGSTBCVVVreUZyYTJzL3pjN09ic2pvUkFMb1EvVk9RY2ZjZmVrZlNpQUEwaUZmajZWcnhRZ3dYNE9Nbnp2QjFOU1VFL3dmZ29NQStrK05UZVRQTkFZOFpRYlJGVVVBa2NBaEhDTTZSZThFMUw4QVdTc3JLMStvcDdidnFTZktBS1luM1lrNGM2UzlxWDB5amJNNFUwdEsyOXd5QUM5TUdaZ3M4SFFuaU1mamtBWkloQ2pUQTVob0E1cUlReXAyQU9jY3ppdUxYRVVBRWNGQkhNWHBLKzhFcHY0M05qYStGNUpIRWdEVEF4ckFFTWxlN01uZWlNeksyN3dRUUlyaXZLYzdRWDkvUDlkbkFDT3NZejFScmdqQStYUmZSUUMyT0E0QWdOaFpvRStiRGNSRUhDTlQvK3ZyNjdmMWpDMlJaaDNyRWFrcnN4VWpBTENrTEdDSTZKVjNncXFxS213TkFZd3JHandoS1VZQU5vQ0FBS0thMVFVbjl6c0JrZWRlWUxKQjlmK0RGb1NXQUlCUkJvL01yMFVBNTY0djBCYnAzOWZYOTUzR1pBcUVrUUZra0ZUbGE4Vk85cElCZ0FDTW5RSGE4S0grUVJMZTlkdDdlM3UvNnRuaVgrYnU3dTdQTk9hdER3SFlzb2Jza2JweW14Y0M4QjRnZ0FJY0lCOEk4TWV0cmExdjY2WDRSa3RMUzUrTStPYno2U05Mc0dXTjFKWGR2Qkpnc2dBQ0FNbU5qcHNlVjF1RW14NDY1ckNoQkVKSkFKSGxZc1B0RGdLNDVpS015UUN5ZzNjRjZROXBsUjErZWVjMUEyUnFFVkVpQzBDQVFnS2dpVHc5MFNmOXNjR1dOUlV2ZmdnQURNQUFDQWxrQXFBaGc3RkovY0JFSDBCK0NXQ05JWUZ5Z0FpQTAwTk1vTUFENW1rSVlCMUNqZWNMK2tESmRRZ0lGRkEzWnlNQzNKaTVLZm9vQTI1S3BOMXdSaG5neHN4TjBZY3VBL3dHTGlMQUwyTmhzNDh5SUd3UjlZc255Z0MvaklYTlBzcUFzRVhVTDU0b0Evd3lGamI3S0FQQ0ZsRy9lS0lNOE10WTJPeWpEQWg2Uksvci8vOEFBQUQvLzltR1FIRUFBQUFHU1VSQlZBTUFFTFdobi9KQ0EzY0FBQUFBU1VWT1JLNUNZSUk9IiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiLz48L3N2Zz4=) 4 4, auto;
|
|
1462
1462
|
}
|
|
1463
|
-
.
|
|
1463
|
+
.m-editor--hand {
|
|
1464
1464
|
cursor: grab;
|
|
1465
1465
|
}
|
|
1466
|
-
.
|
|
1466
|
+
.m-editor--grabbing {
|
|
1467
1467
|
cursor: grabbing;
|
|
1468
1468
|
}
|
|
1469
|
-
.
|
|
1469
|
+
.m-editor--drawing {
|
|
1470
1470
|
cursor: crosshair;
|
|
1471
1471
|
}
|
|
1472
|
-
.
|
|
1472
|
+
.m-editor--drawing-tool-pencil {
|
|
1473
1473
|
cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij48aW1hZ2UgeGxpbms6aHJlZj0iZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFFQUFBQUJBQ0FZQUFBQ3FhWEhlQUFBRjIwbEVRVlI0QWV5Wlcyc2tSUmlHZXp6TlNFaitRa2l1Y3BPcklJYUVrQWxtL29NSWFuNUJiZ0tpNURpYmcvOUJCQVVEQmc4b2lCZENJQWZJUVFrSzNnUXZjcE9BaDNnZWRZMmJkYlB2MDB3dHZaUHQ2YXFlVHJxejAwTzlWSFhYVjFYZis5WlgxZDAxVDNodC9zc0ZhUE1BOFBJSXlDT2d6UlhJbDBDYkIwQytDZVpMSUY4Q2JhNUF2Z1F5RkFBRitjS0VQS244YWVHWk9paHpqenBzZER1NVJLZko5UmEvSi95QUpLUkxSMGRIbFZxdFZnV1UxVzFKb0E0YmJIV1pURXEwczVndVFlb3B0UzBlSGg2T241MmRmZEhiMi90NVoyZm42NEF5OTZqRFJzQ1dOaXE2cDhZV2FRc0FFUWlWRGc0T0tuMTlmWjhWaThYaHpjMU5yMXF0K3NCaDdsR0hqYTZKQnRyUVZwZXRwVFFGZ0FCRVNudDdlK01EQXdPZlFBWGlZMk5qM3NMQ2dvOUNvZkJBQ0d5d2xWMWlJcVFsd0FQeTI5dmJsY0hCd1k5RnlpZTZJT0tVeStXeVo4cmtDT1BwaHkxdFZFeEVoRFFFZUlqOHlNakloeUx6RUhrSWIyeHNlUFB6ODQ4VWdUWkppWERkQWxpUmh6aWlBTW9JUXBuY1JBSWk3T3pzak91K2lZUllYR0kxMHFCeGtqTjVNMGlZQ0VORFF4OXBUM2hCZGtXQi9jU1pqM01ERFJRbnhTWnZCZ3NUb2IrLy96WFpFQVc4TURuemNXNmd3VnhUeStUTmdJMGk4TGpzNk9oNGZuMTlmVXcyc1Y2VXJscUFTUEp5M0lNSXVRMFFvVnd1KzZaYlcxdCszdFBUTTZJQ0FyQU1DaXBicDZzVUlKSThteHBrRUlCbnY2M1h0QW5hbnArZk14WkxnTnlKazVOeGNOQ0lNbzR3R3lVZVYrelkyRmYxZGdkcHl1VE1Kbzg3Q05tS0VPeUQ5dlMxdjcvL2pYTEdkT2JqM0VBRFJTVWNzU0p2T3JJVklVZ2VBV2wvZW5yNjdjVEV4TmVVNHlCcEFaekpHNmVqUkdna2IyWi9kWFgxUGZWeFYvaGZ1Q2M0cFNRRmlFM2VlQndtUWhqNTVlWGwyYW1wcVMvVi9qL2hYSEFXSVNrQldpWXY1LzNVS0VJWWVTMkJXek16TTVEL1J3My9GZTRJUk1LRmN1dVVoQUNKa1RkZUIwVVFVZjgydVFuN3VibTVKUW16cjRxYThKZHdXMENBU3hHZyswMVRxd0lrVHQ1NHk1UEJsSVBrWjJkbmx4Y1hGL2RVOTRmd3AvQzNjQ2F3Qks1MUQ3Z3k4cHBkRDlJaTVlZG01aUcvdExSa3lDTUFFY0Rzc3djUS90Y21RSnJrZjVjd0FQS3NmMlkvRm5uMUUrdXZzYXlRTjZFUGVkWStmSnpodWdjOFZ1UlJ5MFVBYlAwM1BBNGltcjNlMHJFTExOWThJUThJKzBSbTN2Z0hLVk51bG1NSCtTSUhFQnhFWUJ6bU9IVzJDT3Nqc09GQkhDUk9IaDhoUnQ0TWZGNFMrbnh1UGxzL2dMaDBobWQyNm1ZZE5kYWxUUjUvYkFUQXhwLzlrNU9UTnppQTRNdnRVWThwT3JSRkZzampLK1RJbXdFYlg0Q3VycTRoRE0xQkJDTGMxSm1IQjRBY2VSZ0lmMnc0YkNoS2dPY3doRGo1VFNjUEI4aVJod0VCV1A5K0JJUVoyZDdQU3RnSC9iVVJBQnNqUXJDdFV6bUw1Q0VBT2ZKbU1GR0FDTTNzUXV1eVNoNkhvd1NBdkVHVUxmMWRRcGJKNDJ3c1VqUzBRUnJrYmZ3SzJ0Z0l3QW1MRHc0Z2FXeSsxU0hJZFNONFQrQ1kyend0eU0wVDQ3cmU4QnA5Q3J1T0VzQW5yc1o4Wjk4ckZBcGNlMFlBaU9tZTF3aklJNExhaFgzUDgyb0xydVQxbG5GdDRTTEEzYlcxdFhmcG1ObUVQT1V3SUJKSFc5aGl3ekdXRGpOMlZZWTRTSjI4ZkxFNkQyRDIrZWErTXprNStkWHU3dTc3TklUWXhjV0ZGd2JJSThMeDhmRjNFdXVXanJFeVJ4NGVOaEhBWVFNQ2NPeDBlM2g0K0czOTIvT0IvcEQ4bEE3Q0FQSHA2ZWszdTd1N3A3Vlg3TWp1TnlFek15OWYvR1FqQUJIQWdTTkhUM3lMMTBaSFI5K3FWQ3J2YU8yL0tMd3N2Q3BNMVBHSzhwY2d2ckt5QXZGZk5SSkFnT0FoSnFJaXJxclRTMUVDNEprUmdBaEFBQTRqSWZTTEtuK3Vnekl3MXlZL3JkY2I4c0V6dk5USnl6ZnJQUUJuT1hmbkJKYk5DMEtRL0VtZC9DaDhYOGNQeWdIM3FFTVViSm41ekpHWHIxWUNZQmVNQW9nZ1FqQVNJQm9FRWNKNng0YW9RVGdpS0JOaER5RURteVdBTGMvL29BajhGUVV4L3BWQkRNQXNBOHFBT29oalMvUVFSZlJCZjVtQnJRQTRiRVJnRmlIRWpMSXhRcklSM0tjZU8rd2hUbnY2eVJSY0JBZzZEaGxJTWFzQWtnWmNBK3F4QzdiTFhEbXVBSmtqRXRlaFhJQzR5ajB1N1c1OEJMUTZFZmNCQUFELy83YmpxNjRBQUFBR1NVUkJWQU1BTUpYNHJsQ2FESTRBQUFBQVNVVk9SSzVDWUlJPSIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIi8+PC9zdmc+) 8 24, auto;
|
|
1474
1474
|
}
|
|
1475
|
-
.
|
|
1475
|
+
.m-editor--drawing-tool-pen {
|
|
1476
1476
|
cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij48aW1hZ2UgeGxpbms6aHJlZj0iZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFFQUFBQUJBQ0FZQUFBQ3FhWEhlQUFBSmRFbEVRVlI0QWV5WlMyeFZWUlNHejZrZ0JVSjRoUEFJanhBU0VoSkN3a0NOK0lCTEFJR3hUdFNKRTRkZ1JDdFdvYjBGQnpoaWJnSWl3a0FuQ2tnQ0RZUkNERGFvQTJPMXBqTVNIcTJsRHdxMXBVLy9iOU5WZGsvUGZmYmVpOVNTdmJwZmE2Kzkvbit0dmMvaDNMTGdmLzV2aW9Bc0V5Q1VIbVE5bzNxYUovUVoxOURUV1RJNUQzQkFBdnBaUVN5WHpCd1Iyc2dNOVptYnJocGRiTEpPM2Y5K3dkbFVYZ0tDZVFlK3FhbHBhMjl2NzRYaDRlRXVwTFcxdGJxdHJhMjZvYUZobXd4QVNwU01wNElRQU1yL2NRWHdSQk1RNVFLYlhMTm16UTh6WnN4NDJUUVhMbHo0NFlJRkN5cldyVnQzUm9SMDl2VDBuSmRlVFh0N2U0MUkyU0c5V1NNU0pRYTdxZmJWa3RLV09FZDg4RFB2M0xsVEJWamNxcW1wQ2JaczJSS0VZUmpRUnVycTZwZ0t5c3ZMWDBKdi92ejVIOFdSMHRqWStKb1VMVk00TW9pUndaNmFMbjJKRW9BampMbkkzNzU5KzhDU0pVdjI0aFpnazhsa1lJQnBJMFlJTlRxSTZmaWtyRjI3OXF3eTVaNHlwWllza1UweWhPeDRva1FBVnI2TUZnaHdaMTZSMzc5MDZkTDNtUUVVWUdsZnZudzVRT2dqaVVTQzRRRFE5QkhJQ01QUVpRdHJFYWVrUDVBeVgxa2lNanAwWkpLZG5aMUpEWk1aUGhFYUtrMkpFa0RmUlgvMjdObXY0QUxPQTRvMmN1WEtsU0NSU0FUVjFkVk9JRU5neHBDQ0h1S1RFb2JobUtQRFBFZG03dHk1KzFwYVdxclZKeU40b2hBQWprYW9zYUlYQU5zbWJNakdqb0E1YythOHdJU0I5K3NhM1FYTStlS1RBaUVJNUxBT01WM2FTQmcrdWtjWVg3Um8wUWZTYnlNajFPZFk0QU8rNEpPR2lsZWlCTkFuQWtRaUlJSnNuVWdrWExSeG5ENTFIQW5NK1dMcnlCWUJEQkRXbWc3dE1IeE1CQm1oYktqU2ZNbElBTEQyY3dXMjZjTThFWENwem93UkFSQ2Nab3c2R3hMUTlRVWJSZ1EybUtNMlcyU0Q3cDhER29jRWdvRlA2aGFuUkkwYkNXVkt4OS9Za2loU0Y1SUU3RUVFQW5qNjFFWUNUNTZyVjY5dTFUaVpXRlFTb2dSb1QxY2d3alhpL3FSeVBFNDMwMWdxV3hzMmJLalEybGtTZXpxazlVbDZlWlVvQWNPeWdneWRPblhxaE5ydTdGTmJkR2dqcVJ4bkxsZUoyaUxidUlSdjNManhzV3dWTkF0a2IwenhDUUE0TWlTTndXblRwZzJxVGx1aWprZEpTcnM0TXVuYk1qc3JWNjdjSXpYL0hhSGdXUkFsd0lIWHBnTzdkKy8rVmZXNGk1QXhYM3pIL1hQczYyVGJ4aGE2WkFCQysvVHAwNXRWRnkwTFVoRkE5UHVibTV0LzErWTVrNER6Q0crRVNCZytmaXZFWGpxQlJPWXRDelp0MnZTZStpVWhRUHNFZGdRRzFPa3ZLeXVqcjJibVF2VE1lVUFqa0lDd21wcDVHMmNzVHJERE9QclU4K2JOZSs3Y3VYT3ZxczJqbVVkMFFZK0Jud0hhSTdBalFBWU1uRHg1OG1zR3pTbUxDbU54Z3A0OU5wa0hNRytEOXR4bkRtQ1o3S0RIZW5TcHU3dTdlUklnQlg4a1Jna2c0cEJBQmd4TW56NmRHaCt5Rm5NYThENGh0Q0VEY09nZ3FZeWk0OCt0WDcvK1JmVXRBNkkrYXlyL0VqVm1CTGdNMkxObnp5K1lOb2ZTT1kyZVJkYkFNeFlWaUdETWRHbEhaZk5tN3IzQWZYTmdidkhpeGMrckp2b2NBWHd1MkRIQW1HeVBsakVFYURUcmkxQzZXWlZzeWZTTkRRME5BZGpQQVBxK1N0N3RLQUVZTWhKSS81d3VRaFlqRmtIYStZaVJaR3QxaHdDWU84QklvRy9URTZyakNPQU80QWdnNHk1Q3ZnZWsydEdBcDB0dk8wWlJrTDVOMDZGRzlML0VEUjBkSGNla1UzQVM0Z2p3TTJEY1JZaERjaVMyR0NoMGtEZ2xJOGQwNDNTWTR4NWh6aDZiUEE2N3VycSswWmlSRU9lN3BuTXJjVWFNQURLZ1h4Zmh6NWpFS1dxQUliVGp4SGZjd0tMSEdnT0RMYnNNbVlzVDVuMWJySitqanpRWEwxNU1TSitqd0tVWTU3K21zeTl4Qm53QzNEMFFmU05NZHd4OHh3RVFocUg3RkpZTGVIUGZ0MlY3cmw2OW1rOTFaQUZQaE5CMDg2M2pDTUNXM1FNUTBCZDlJU0lhS0tVU2N4d0NUSWVvOHg2QTBMYnhYT3Urdmo0aUR3SFVxZnpQMm13cUEyU0JPd0t5MUZkUlVUSDZQb0R6RUlCb0xtV0JCRVEzdVBzVWxnOXdqcENSaUMwMkd4d2N4R2VMZnRFem9GK2I5a2tlNmpOVmcrckFITEdVWnF3WTRvT0hQUGFvcjY4L3BSOWR2cUNkcldUU2c4MDRIY3NBZHdTazBHc2ZTTWdBUkdPamIycTBDeWxSOE95bkgybisyTGh4NDNIdFExRElUbnhFTkpSL1NVVUFGcmtISU9DaE9qMDZCdGYxbmU1YnRkMXZBRGhWVjFmbmZ2eGdyRkFTQi83V3JWdU55NVl0cTlRZTNaSmVDVm1KYi9pb2J2NGxHd0xZckVkYlBOQ0x6cGMzYjk3OFUrMHhKT0EwWkRBK0VjRk9NcGwwSmtoN1NOWitmeTFmdnZ4VERYWkpIa2ora1JBVXl3SjE4eS9wQ0NDOTJNUUlnUDM3SzFhc3FDUWliR24zQVU1ekp3Q0E4WHlFdGRoaHJROWUrKzNYMkwwUnVhK2FZT0FUR1lDUEdzcS9wQ01BcTZRWUc1RjJFRUFVN2hFUklrT0V1T1hOY2Vvd2ZQUkRCNEN5elFwMFdjdUdFZkQ4UHRDcGNRUVN5QUI4NFI3QXQ1SVJBT05HQU01MEtqS2Y2SzNzZXpubm5neFJJZ0JFVm9SaDZGNkV3dkFSTWVqNzRvTm5EYVF5Zi9Ub1VWNTczVjdxVXdQZW9rOW1UaGk4N0FhWk1nQWRtSVp4bURjU09qVFJzWDM3OXE4dVhicjBuZHF1Y0NTTUNCK01tOVFmeGdDc3BpdTBHYU5EemZxUjlrSDFyNmtOY0FUd25IMENRVVlXQkx6c1owVUFtOEU0SkJBQnppRk90Y3RBMjdadDI0NkZZZmpXaFFzWHpxanZDa0FRMGhsQ0VOcE1DcGg3ZktZQ3IzV0hOUGVUZE5uRDByNG80TFZIVmdTZ0J3a3dUd1RHa1NDRnRwMDdkeDRYRVcvWDF0YWVQbi8rL0ZuOXFOR2s4ZEZDYXZza1FBU1QxQUpOTTZpcXF2cnM0TUdEOWVvWWVNZzI4QVFCUHpSZHVKTE5FYkRkMkJ3U2VBVDVKTFJKb1hWRTd1N1lzZVBZcmwyN1RxeGF0YXBHaEx3amVYZnYzcjFITk84K3J3TTRrVWk0Tm9UNDRBOGRPZ1I0amhjRWNPRUNudjNZbDZPSW1ZSktMZ1N3TVNRUWlXZ21HQWwvUzhtWHUrcTNIVGx5NUhwbFplWG5hcnNMRStCSVFrUXdSdVFGbnJRdktYajJ6cFVBMWhnSjNBblJpeEhBRU5BaVJhUjVwRzQ5ZlBqd05XWERtL2JrMEhqQW8xVG52VWJndWZBQWp4QjVMbHRzRnkzeTdJL2tRd0RyZkJKSVVZNEVOelhPazc0QUlTc2dCQms5SW5weWNHbStMakxlMEtOMG40N0VqektJTG10WWp4MERUN1pwdW5nbFh3TE1JNGdnU2h3Skk0TG9jWGtCaGxzY1lEd3hqQWd5eEJmR21VZTNwT0FCTVZFQ3NJRkFCTkhpV0VUSkFCUmtrQmxFbW13d0FtZ3o5a1RBNDNpaENNQ1dDV1J3WXhzaGxoaytFWllWa0FJNVpBMTZaQlByekZiT2RhNExpa0ZBMUFmSUFCaVp3VjBCV01oQWFEUEdIRG9sQlkranBTQ0FmY2dLd0FFU3NFUWJvYzJ4WVJ5aTBDMnBsSW9BQXdVUkNHQk42TnQ4eWV0U0UxQnlnSmsybkNJZ0UwT1RmWDRxQXlaN2hEUGhtOHFBVEF4Tjl2bXBESmpzRWM2RWJ5b0RNakUwMmVlbk11QnBqL0JFL2Y4WEFBRC8vemM3eStFQUFBQUdTVVJCVkFNQUg2M2h2WjBON3dnQUFBQUFTVVZPUks1Q1lJST0iIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIvPjwvc3ZnPg==) 4 4, auto;
|
|
1477
1477
|
}
|
|
1478
|
-
.
|
|
1478
|
+
.m-editor * {
|
|
1479
1479
|
box-sizing: border-box;
|
|
1480
1480
|
}
|
|
1481
|
-
.
|
|
1481
|
+
.m-editor__drawboard {
|
|
1482
1482
|
position: relative;
|
|
1483
1483
|
width: 100%;
|
|
1484
1484
|
height: 100%;
|
|
1485
1485
|
overflow: hidden;
|
|
1486
1486
|
}
|
|
1487
|
-
.
|
|
1487
|
+
.m-editor__drawboard > * {
|
|
1488
1488
|
pointer-events: none;
|
|
1489
1489
|
}
|
|
1490
|
-
.
|
|
1490
|
+
.m-editor__canvas {
|
|
1491
1491
|
position: absolute;
|
|
1492
1492
|
left: 0;
|
|
1493
1493
|
top: 0;
|
|
@@ -1495,13 +1495,13 @@
|
|
|
1495
1495
|
height: 100%;
|
|
1496
1496
|
display: block;
|
|
1497
1497
|
}
|
|
1498
|
-
.
|
|
1498
|
+
.m-overlay-container {
|
|
1499
1499
|
position: absolute;
|
|
1500
1500
|
left: 0;
|
|
1501
1501
|
top: 0;
|
|
1502
1502
|
width: 100%;
|
|
1503
1503
|
height: 100%;
|
|
1504
1504
|
pointer-events: none;
|
|
1505
|
-
}.
|
|
1506
|
-
box-shadow: var(--
|
|
1505
|
+
}.m-dialog > * {
|
|
1506
|
+
box-shadow: var(--m-shadow);
|
|
1507
1507
|
}
|