build-dxf 0.0.19-9 → 0.0.20-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/build.d.ts +7 -5
- package/src/build.js +54 -31
- package/src/index.css +375 -515
- package/src/index3.js +742 -392
- package/src/pages/Editor.vue.d.ts +3 -1
- package/src/utils/ComponentManager/Component.d.ts +1 -0
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +9 -2
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +7 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/Editor.d.ts +7 -0
- package/src/utils/DxfSystem/plugin/Editor/index.d.ts +8 -1
- package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool.vue.d.ts +1 -0
- package/src/utils/Quadtree/LineSegment.d.ts +1 -1
- package/src/components/Editor.vue.d.ts +0 -26
- package/src/pages/Editor02.vue.d.ts +0 -4
package/src/index.css
CHANGED
|
@@ -24,8 +24,6 @@
|
|
|
24
24
|
|
|
25
25
|
@layer theme {
|
|
26
26
|
:root, :host {
|
|
27
|
-
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
28
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
29
27
|
--color-black: #000;
|
|
30
28
|
--color-white: #fff;
|
|
31
29
|
--spacing: .25rem;
|
|
@@ -33,653 +31,503 @@
|
|
|
33
31
|
--radius-lg: .5rem;
|
|
34
32
|
--default-transition-duration: .15s;
|
|
35
33
|
--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
36
|
-
--default-font-family: var(--font-sans);
|
|
37
|
-
--default-mono-font-family: var(--font-mono);
|
|
38
34
|
}
|
|
39
35
|
}
|
|
40
36
|
|
|
41
37
|
@layer base {
|
|
42
|
-
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
border: 0 solid;
|
|
38
|
+
* {
|
|
45
39
|
margin: 0;
|
|
46
40
|
padding: 0;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
::file-selector-button {
|
|
50
|
-
box-sizing: border-box;
|
|
51
|
-
border: 0 solid;
|
|
52
|
-
margin: 0;
|
|
53
|
-
padding: 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
html, :host {
|
|
57
|
-
-webkit-text-size-adjust: 100%;
|
|
58
|
-
tab-size: 4;
|
|
59
|
-
line-height: 1.5;
|
|
60
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
61
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
62
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
63
|
-
-webkit-tap-highlight-color: transparent;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
hr {
|
|
67
|
-
height: 0;
|
|
68
|
-
color: inherit;
|
|
69
|
-
border-top-width: 1px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
abbr:where([title]) {
|
|
73
|
-
-webkit-text-decoration: underline dotted;
|
|
74
|
-
text-decoration: underline dotted;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
h1, h2, h3, h4, h5, h6 {
|
|
78
|
-
font-size: inherit;
|
|
79
|
-
font-weight: inherit;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
a {
|
|
83
|
-
color: inherit;
|
|
84
|
-
-webkit-text-decoration: inherit;
|
|
85
|
-
-webkit-text-decoration: inherit;
|
|
86
|
-
-webkit-text-decoration: inherit;
|
|
87
|
-
text-decoration: inherit;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
b, strong {
|
|
91
|
-
font-weight: bolder;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
code, kbd, samp, pre {
|
|
95
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
96
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
97
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
98
|
-
font-size: 1em;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
small {
|
|
102
|
-
font-size: 80%;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
sub, sup {
|
|
106
|
-
vertical-align: baseline;
|
|
107
|
-
font-size: 75%;
|
|
108
|
-
line-height: 0;
|
|
109
|
-
position: relative;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
sub {
|
|
113
|
-
bottom: -.25em;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
sup {
|
|
117
|
-
top: -.5em;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
table {
|
|
121
|
-
text-indent: 0;
|
|
122
|
-
border-color: inherit;
|
|
123
|
-
border-collapse: collapse;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
:-moz-focusring {
|
|
127
|
-
outline: auto;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
progress {
|
|
131
|
-
vertical-align: baseline;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
summary {
|
|
135
|
-
display: list-item;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
ol, ul, menu {
|
|
139
41
|
list-style: none;
|
|
140
42
|
}
|
|
141
43
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
display: block;
|
|
44
|
+
:root {
|
|
45
|
+
--primary-color: #e56101;
|
|
145
46
|
}
|
|
146
47
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
height: auto;
|
|
48
|
+
.v-enter-active, .v-leave-active {
|
|
49
|
+
transition: opacity .25s;
|
|
150
50
|
}
|
|
151
51
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
font-feature-settings: inherit;
|
|
155
|
-
font-variation-settings: inherit;
|
|
156
|
-
letter-spacing: inherit;
|
|
157
|
-
color: inherit;
|
|
158
|
-
opacity: 1;
|
|
159
|
-
background-color: #0000;
|
|
160
|
-
border-radius: 0;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
::file-selector-button {
|
|
164
|
-
font: inherit;
|
|
165
|
-
font-feature-settings: inherit;
|
|
166
|
-
font-variation-settings: inherit;
|
|
167
|
-
letter-spacing: inherit;
|
|
168
|
-
color: inherit;
|
|
169
|
-
opacity: 1;
|
|
170
|
-
background-color: #0000;
|
|
171
|
-
border-radius: 0;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
175
|
-
font-weight: bolder;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
179
|
-
padding-inline-start: 20px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
::file-selector-button {
|
|
183
|
-
margin-inline-end: 4px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
::placeholder {
|
|
187
|
-
opacity: 1;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
@supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
|
|
191
|
-
::placeholder {
|
|
192
|
-
color: currentColor;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
196
|
-
::placeholder {
|
|
197
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
textarea {
|
|
203
|
-
resize: vertical;
|
|
52
|
+
.v-enter-from, .v-leave-to {
|
|
53
|
+
opacity: 0;
|
|
204
54
|
}
|
|
55
|
+
}
|
|
205
56
|
|
|
206
|
-
|
|
207
|
-
-webkit-appearance: none;
|
|
208
|
-
}
|
|
57
|
+
@layer components, utilities;
|
|
209
58
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
59
|
+
.pointer-events-auto {
|
|
60
|
+
pointer-events: auto;
|
|
61
|
+
}
|
|
214
62
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
63
|
+
.pointer-events-none {
|
|
64
|
+
pointer-events: none;
|
|
65
|
+
}
|
|
218
66
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
67
|
+
.visible {
|
|
68
|
+
visibility: visible;
|
|
69
|
+
}
|
|
222
70
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
71
|
+
.absolute {
|
|
72
|
+
position: absolute;
|
|
73
|
+
}
|
|
226
74
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
75
|
+
.fixed {
|
|
76
|
+
position: fixed;
|
|
77
|
+
}
|
|
230
78
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
79
|
+
.relative {
|
|
80
|
+
position: relative;
|
|
81
|
+
}
|
|
234
82
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
83
|
+
.static {
|
|
84
|
+
position: static;
|
|
85
|
+
}
|
|
238
86
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
87
|
+
.top-0 {
|
|
88
|
+
top: calc(var(--spacing) * 0);
|
|
89
|
+
}
|
|
242
90
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
91
|
+
.bottom-\[10px\] {
|
|
92
|
+
bottom: 10px;
|
|
93
|
+
}
|
|
246
94
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
95
|
+
.left-0 {
|
|
96
|
+
left: calc(var(--spacing) * 0);
|
|
97
|
+
}
|
|
250
98
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
99
|
+
.left-\[10px\] {
|
|
100
|
+
left: 10px;
|
|
101
|
+
}
|
|
254
102
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
103
|
+
.z-\[11\] {
|
|
104
|
+
z-index: 11;
|
|
105
|
+
}
|
|
258
106
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
107
|
+
.z-\[1000\] {
|
|
108
|
+
z-index: 1000;
|
|
109
|
+
}
|
|
262
110
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
111
|
+
.z-\[10000\] {
|
|
112
|
+
z-index: 10000;
|
|
113
|
+
}
|
|
266
114
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
115
|
+
.container {
|
|
116
|
+
width: 100%;
|
|
117
|
+
}
|
|
270
118
|
|
|
271
|
-
|
|
272
|
-
|
|
119
|
+
@media (min-width: 40rem) {
|
|
120
|
+
.container {
|
|
121
|
+
max-width: 40rem;
|
|
273
122
|
}
|
|
123
|
+
}
|
|
274
124
|
|
|
275
|
-
|
|
276
|
-
|
|
125
|
+
@media (min-width: 48rem) {
|
|
126
|
+
.container {
|
|
127
|
+
max-width: 48rem;
|
|
277
128
|
}
|
|
129
|
+
}
|
|
278
130
|
|
|
279
|
-
|
|
280
|
-
|
|
131
|
+
@media (min-width: 64rem) {
|
|
132
|
+
.container {
|
|
133
|
+
max-width: 64rem;
|
|
281
134
|
}
|
|
135
|
+
}
|
|
282
136
|
|
|
283
|
-
|
|
284
|
-
|
|
137
|
+
@media (min-width: 80rem) {
|
|
138
|
+
.container {
|
|
139
|
+
max-width: 80rem;
|
|
285
140
|
}
|
|
286
141
|
}
|
|
287
142
|
|
|
288
|
-
@
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
.pointer-events-auto {
|
|
292
|
-
pointer-events: auto;
|
|
143
|
+
@media (min-width: 96rem) {
|
|
144
|
+
.container {
|
|
145
|
+
max-width: 96rem;
|
|
293
146
|
}
|
|
147
|
+
}
|
|
294
148
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
149
|
+
.mt-\[5px\] {
|
|
150
|
+
margin-top: 5px;
|
|
151
|
+
}
|
|
298
152
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
153
|
+
.mt-\[10px\] {
|
|
154
|
+
margin-top: 10px;
|
|
155
|
+
}
|
|
302
156
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
157
|
+
.mr-\[10px\] {
|
|
158
|
+
margin-right: 10px;
|
|
159
|
+
}
|
|
306
160
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
161
|
+
.ml-\[1\.4em\] {
|
|
162
|
+
margin-left: 1.4em;
|
|
163
|
+
}
|
|
310
164
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
165
|
+
.ml-\[10px\] {
|
|
166
|
+
margin-left: 10px;
|
|
167
|
+
}
|
|
314
168
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
169
|
+
.box-border {
|
|
170
|
+
box-sizing: border-box;
|
|
171
|
+
}
|
|
318
172
|
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
173
|
+
.block {
|
|
174
|
+
display: block;
|
|
175
|
+
}
|
|
322
176
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
177
|
+
.flex {
|
|
178
|
+
display: flex;
|
|
179
|
+
}
|
|
326
180
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
181
|
+
.grid {
|
|
182
|
+
display: grid;
|
|
183
|
+
}
|
|
330
184
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
185
|
+
.hidden {
|
|
186
|
+
display: none;
|
|
187
|
+
}
|
|
334
188
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
189
|
+
.inline-block {
|
|
190
|
+
display: inline-block;
|
|
191
|
+
}
|
|
338
192
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
193
|
+
.table {
|
|
194
|
+
display: table;
|
|
195
|
+
}
|
|
342
196
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
197
|
+
.size-\[1\.4em\] {
|
|
198
|
+
width: 1.4em;
|
|
199
|
+
height: 1.4em;
|
|
200
|
+
}
|
|
346
201
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
202
|
+
.size-\[6px\] {
|
|
203
|
+
width: 6px;
|
|
204
|
+
height: 6px;
|
|
205
|
+
}
|
|
350
206
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}
|
|
207
|
+
.size-\[14px\] {
|
|
208
|
+
width: 14px;
|
|
209
|
+
height: 14px;
|
|
210
|
+
}
|
|
356
211
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
212
|
+
.size-\[20px\] {
|
|
213
|
+
width: 20px;
|
|
214
|
+
height: 20px;
|
|
215
|
+
}
|
|
362
216
|
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
}
|
|
367
|
-
}
|
|
217
|
+
.h-\[20px\] {
|
|
218
|
+
height: 20px;
|
|
219
|
+
}
|
|
368
220
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
}
|
|
373
|
-
}
|
|
221
|
+
.h-\[100vh\] {
|
|
222
|
+
height: 100vh;
|
|
223
|
+
}
|
|
374
224
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
}
|
|
379
|
-
}
|
|
225
|
+
.h-fit {
|
|
226
|
+
height: fit-content;
|
|
227
|
+
}
|
|
380
228
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
229
|
+
.h-full {
|
|
230
|
+
height: 100%;
|
|
231
|
+
}
|
|
384
232
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
233
|
+
.w-\[100vw\] {
|
|
234
|
+
width: 100vw;
|
|
235
|
+
}
|
|
388
236
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
237
|
+
.w-\[200px\] {
|
|
238
|
+
width: 200px;
|
|
239
|
+
}
|
|
392
240
|
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
241
|
+
.w-full {
|
|
242
|
+
width: 100%;
|
|
243
|
+
}
|
|
396
244
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
245
|
+
.max-w-\[100px\] {
|
|
246
|
+
max-width: 100px;
|
|
247
|
+
}
|
|
400
248
|
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
249
|
+
.max-w-\[260px\] {
|
|
250
|
+
max-width: 260px;
|
|
251
|
+
}
|
|
404
252
|
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
253
|
+
.min-w-\[140px\] {
|
|
254
|
+
min-width: 140px;
|
|
255
|
+
}
|
|
408
256
|
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
257
|
+
.min-w-\[150px\] {
|
|
258
|
+
min-width: 150px;
|
|
259
|
+
}
|
|
412
260
|
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
261
|
+
.flex-1 {
|
|
262
|
+
flex: 1;
|
|
263
|
+
}
|
|
416
264
|
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
265
|
+
.rotate-90 {
|
|
266
|
+
rotate: 90deg;
|
|
267
|
+
}
|
|
420
268
|
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
269
|
+
.cursor-pointer {
|
|
270
|
+
cursor: pointer;
|
|
271
|
+
}
|
|
424
272
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
273
|
+
.resize {
|
|
274
|
+
resize: both;
|
|
275
|
+
}
|
|
428
276
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
}
|
|
277
|
+
.flex-col {
|
|
278
|
+
flex-direction: column;
|
|
279
|
+
}
|
|
433
280
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
}
|
|
281
|
+
.flex-row {
|
|
282
|
+
flex-direction: row;
|
|
283
|
+
}
|
|
438
284
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
285
|
+
.flex-wrap {
|
|
286
|
+
flex-wrap: wrap;
|
|
287
|
+
}
|
|
442
288
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
289
|
+
.items-center {
|
|
290
|
+
align-items: center;
|
|
291
|
+
}
|
|
446
292
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
293
|
+
.justify-between {
|
|
294
|
+
justify-content: space-between;
|
|
295
|
+
}
|
|
450
296
|
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
297
|
+
.justify-center {
|
|
298
|
+
justify-content: center;
|
|
299
|
+
}
|
|
454
300
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
301
|
+
.gap-\[5px\] {
|
|
302
|
+
gap: 5px;
|
|
303
|
+
}
|
|
458
304
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
305
|
+
.gap-\[10px\] {
|
|
306
|
+
gap: 10px;
|
|
307
|
+
}
|
|
462
308
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
309
|
+
.gap-\[20px\] {
|
|
310
|
+
gap: 20px;
|
|
311
|
+
}
|
|
466
312
|
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
313
|
+
.overflow-hidden {
|
|
314
|
+
overflow: hidden;
|
|
315
|
+
}
|
|
470
316
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
317
|
+
.rounded-\[2px\] {
|
|
318
|
+
border-radius: 2px;
|
|
319
|
+
}
|
|
474
320
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
321
|
+
.rounded-\[6px\] {
|
|
322
|
+
border-radius: 6px;
|
|
323
|
+
}
|
|
478
324
|
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
325
|
+
.rounded-\[8px\] {
|
|
326
|
+
border-radius: 8px;
|
|
327
|
+
}
|
|
482
328
|
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
329
|
+
.rounded-\[10px\] {
|
|
330
|
+
border-radius: 10px;
|
|
331
|
+
}
|
|
486
332
|
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
333
|
+
.rounded-\[50px\] {
|
|
334
|
+
border-radius: 50px;
|
|
335
|
+
}
|
|
490
336
|
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
337
|
+
.rounded-lg {
|
|
338
|
+
border-radius: var(--radius-lg);
|
|
339
|
+
}
|
|
494
340
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
341
|
+
.border {
|
|
342
|
+
border-style: var(--tw-border-style);
|
|
343
|
+
border-width: 1px;
|
|
344
|
+
}
|
|
498
345
|
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
346
|
+
.border-t-1 {
|
|
347
|
+
border-top-style: var(--tw-border-style);
|
|
348
|
+
border-top-width: 1px;
|
|
349
|
+
}
|
|
502
350
|
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
351
|
+
.border-b-1 {
|
|
352
|
+
border-bottom-style: var(--tw-border-style);
|
|
353
|
+
border-bottom-width: 1px;
|
|
354
|
+
}
|
|
506
355
|
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
356
|
+
.border-t-\[\#eee\] {
|
|
357
|
+
border-top-color: #eee;
|
|
358
|
+
}
|
|
510
359
|
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
360
|
+
.border-b-\[\#eee\] {
|
|
361
|
+
border-bottom-color: #eee;
|
|
362
|
+
}
|
|
514
363
|
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
364
|
+
.border-b-\[rgba\(255\,255\,255\,0\.1\)\] {
|
|
365
|
+
border-bottom-color: #ffffff1a;
|
|
366
|
+
}
|
|
518
367
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
368
|
+
.\!bg-\[var\(--primary-color\)\] {
|
|
369
|
+
background-color: var(--primary-color) !important;
|
|
370
|
+
}
|
|
522
371
|
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
372
|
+
.bg-\[\#f0f0f0\] {
|
|
373
|
+
background-color: #f0f0f0;
|
|
374
|
+
}
|
|
526
375
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
376
|
+
.bg-\[rgba\(255\,255\,255\,1\)\] {
|
|
377
|
+
background-color: #fff;
|
|
378
|
+
}
|
|
530
379
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
380
|
+
.bg-\[var\(--el-color-primary\)\] {
|
|
381
|
+
background-color: var(--el-color-primary);
|
|
382
|
+
}
|
|
534
383
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
384
|
+
.bg-black {
|
|
385
|
+
background-color: var(--color-black);
|
|
386
|
+
}
|
|
538
387
|
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
388
|
+
.bg-black\/15 {
|
|
389
|
+
background-color: #00000026;
|
|
390
|
+
}
|
|
542
391
|
|
|
543
|
-
|
|
544
|
-
|
|
392
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
393
|
+
.bg-black\/15 {
|
|
394
|
+
background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
|
|
545
395
|
}
|
|
396
|
+
}
|
|
546
397
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
398
|
+
.bg-white {
|
|
399
|
+
background-color: var(--color-white);
|
|
400
|
+
}
|
|
551
401
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
}
|
|
402
|
+
.p-\[0px_5px\] {
|
|
403
|
+
padding: 0 5px;
|
|
404
|
+
}
|
|
556
405
|
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
406
|
+
.p-\[0px_10px\] {
|
|
407
|
+
padding: 0 10px;
|
|
408
|
+
}
|
|
560
409
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
410
|
+
.p-\[2px_5px\] {
|
|
411
|
+
padding: 2px 5px;
|
|
412
|
+
}
|
|
564
413
|
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
414
|
+
.p-\[4px_0px\] {
|
|
415
|
+
padding: 4px 0;
|
|
416
|
+
}
|
|
568
417
|
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
418
|
+
.p-\[5px\] {
|
|
419
|
+
padding: 5px;
|
|
420
|
+
}
|
|
572
421
|
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
422
|
+
.p-\[5px_20px\] {
|
|
423
|
+
padding: 5px 20px;
|
|
424
|
+
}
|
|
576
425
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
426
|
+
.p-\[10px\] {
|
|
427
|
+
padding: 10px;
|
|
428
|
+
}
|
|
580
429
|
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
430
|
+
.pt-\[5px\] {
|
|
431
|
+
padding-top: 5px;
|
|
432
|
+
}
|
|
584
433
|
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
}
|
|
589
|
-
}
|
|
434
|
+
.text-right {
|
|
435
|
+
text-align: right;
|
|
436
|
+
}
|
|
590
437
|
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
438
|
+
.text-start {
|
|
439
|
+
text-align: start;
|
|
440
|
+
}
|
|
594
441
|
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
442
|
+
.text-\[10px\] {
|
|
443
|
+
font-size: 10px;
|
|
444
|
+
}
|
|
598
445
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
446
|
+
.text-\[11px\] {
|
|
447
|
+
font-size: 11px;
|
|
448
|
+
}
|
|
602
449
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
450
|
+
.text-\[12px\] {
|
|
451
|
+
font-size: 12px;
|
|
452
|
+
}
|
|
606
453
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
454
|
+
.text-\[14px\] {
|
|
455
|
+
font-size: 14px;
|
|
456
|
+
}
|
|
610
457
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
458
|
+
.leading-\[1\.4em\] {
|
|
459
|
+
--tw-leading: 1.4em;
|
|
460
|
+
line-height: 1.4em;
|
|
461
|
+
}
|
|
614
462
|
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
463
|
+
.font-bold {
|
|
464
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
465
|
+
font-weight: var(--font-weight-bold);
|
|
466
|
+
}
|
|
618
467
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
468
|
+
.text-\[\#333\] {
|
|
469
|
+
color: #333;
|
|
470
|
+
}
|
|
622
471
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
472
|
+
.text-\[\#999\] {
|
|
473
|
+
color: #999;
|
|
474
|
+
}
|
|
626
475
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
476
|
+
.text-\[\#c9c9c9\] {
|
|
477
|
+
color: #c9c9c9;
|
|
478
|
+
}
|
|
630
479
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
}
|
|
480
|
+
.text-\[\#ccc\] {
|
|
481
|
+
color: #ccc;
|
|
482
|
+
}
|
|
635
483
|
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
}
|
|
484
|
+
.text-\[\#fff\] {
|
|
485
|
+
color: #fff;
|
|
486
|
+
}
|
|
640
487
|
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
488
|
+
.text-\[var\(--color-primary\)\] {
|
|
489
|
+
color: var(--color-primary);
|
|
490
|
+
}
|
|
644
491
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
492
|
+
.blur {
|
|
493
|
+
--tw-blur: blur(8px);
|
|
494
|
+
filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
|
|
495
|
+
}
|
|
648
496
|
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
497
|
+
.transition-\[border-radius\] {
|
|
498
|
+
transition-property: border-radius;
|
|
499
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
500
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
501
|
+
}
|
|
652
502
|
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
503
|
+
.transition-all {
|
|
504
|
+
transition-property: all;
|
|
505
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
506
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
507
|
+
}
|
|
656
508
|
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
509
|
+
.select-none {
|
|
510
|
+
-webkit-user-select: none;
|
|
511
|
+
user-select: none;
|
|
512
|
+
}
|
|
661
513
|
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}
|
|
514
|
+
.last-of-type\:border-b-0:last-of-type {
|
|
515
|
+
border-bottom-style: var(--tw-border-style);
|
|
516
|
+
border-bottom-width: 0;
|
|
517
|
+
}
|
|
667
518
|
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
519
|
+
@media (hover: hover) {
|
|
520
|
+
.hover\:bg-\[\#ddd\]:hover {
|
|
521
|
+
background-color: #ddd;
|
|
671
522
|
}
|
|
523
|
+
}
|
|
672
524
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
}
|
|
525
|
+
.active\:scale-\[0\.7\]:active {
|
|
526
|
+
scale: .7;
|
|
527
|
+
}
|
|
677
528
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
background-color: #ddd;
|
|
681
|
-
}
|
|
682
|
-
}
|
|
529
|
+
.active\:scale-\[0\.8\]:active {
|
|
530
|
+
scale: .8;
|
|
683
531
|
}
|
|
684
532
|
|
|
685
533
|
@property --tw-border-style {
|
|
@@ -763,3 +611,15 @@
|
|
|
763
611
|
syntax: "*";
|
|
764
612
|
inherits: false
|
|
765
613
|
}
|
|
614
|
+
|
|
615
|
+
[data-v-a5aa9d5a] {
|
|
616
|
+
font-family: 宋体;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.editorTool .el-checkbox__label {
|
|
620
|
+
font-size: 10px !important;
|
|
621
|
+
font-family: 宋体;
|
|
622
|
+
}
|
|
623
|
+
.editorTool .el-button+.el-button {
|
|
624
|
+
margin-left: 0;
|
|
625
|
+
}
|