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/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
- *, :after, :before, ::backdrop {
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
- img, svg, video, canvas, audio, iframe, embed, object {
143
- vertical-align: middle;
144
- display: block;
44
+ :root {
45
+ --primary-color: #e56101;
145
46
  }
146
47
 
147
- img, video {
148
- max-width: 100%;
149
- height: auto;
48
+ .v-enter-active, .v-leave-active {
49
+ transition: opacity .25s;
150
50
  }
151
51
 
152
- button, input, select, optgroup, textarea {
153
- font: inherit;
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
- ::-webkit-search-decoration {
207
- -webkit-appearance: none;
208
- }
57
+ @layer components, utilities;
209
58
 
210
- ::-webkit-date-and-time-value {
211
- min-height: 1lh;
212
- text-align: inherit;
213
- }
59
+ .pointer-events-auto {
60
+ pointer-events: auto;
61
+ }
214
62
 
215
- ::-webkit-datetime-edit {
216
- display: inline-flex;
217
- }
63
+ .pointer-events-none {
64
+ pointer-events: none;
65
+ }
218
66
 
219
- ::-webkit-datetime-edit-fields-wrapper {
220
- padding: 0;
221
- }
67
+ .visible {
68
+ visibility: visible;
69
+ }
222
70
 
223
- ::-webkit-datetime-edit {
224
- padding-block: 0;
225
- }
71
+ .absolute {
72
+ position: absolute;
73
+ }
226
74
 
227
- ::-webkit-datetime-edit-year-field {
228
- padding-block: 0;
229
- }
75
+ .fixed {
76
+ position: fixed;
77
+ }
230
78
 
231
- ::-webkit-datetime-edit-month-field {
232
- padding-block: 0;
233
- }
79
+ .relative {
80
+ position: relative;
81
+ }
234
82
 
235
- ::-webkit-datetime-edit-day-field {
236
- padding-block: 0;
237
- }
83
+ .static {
84
+ position: static;
85
+ }
238
86
 
239
- ::-webkit-datetime-edit-hour-field {
240
- padding-block: 0;
241
- }
87
+ .top-0 {
88
+ top: calc(var(--spacing) * 0);
89
+ }
242
90
 
243
- ::-webkit-datetime-edit-minute-field {
244
- padding-block: 0;
245
- }
91
+ .bottom-\[10px\] {
92
+ bottom: 10px;
93
+ }
246
94
 
247
- ::-webkit-datetime-edit-second-field {
248
- padding-block: 0;
249
- }
95
+ .left-0 {
96
+ left: calc(var(--spacing) * 0);
97
+ }
250
98
 
251
- ::-webkit-datetime-edit-millisecond-field {
252
- padding-block: 0;
253
- }
99
+ .left-\[10px\] {
100
+ left: 10px;
101
+ }
254
102
 
255
- ::-webkit-datetime-edit-meridiem-field {
256
- padding-block: 0;
257
- }
103
+ .z-\[11\] {
104
+ z-index: 11;
105
+ }
258
106
 
259
- ::-webkit-calendar-picker-indicator {
260
- line-height: 1;
261
- }
107
+ .z-\[1000\] {
108
+ z-index: 1000;
109
+ }
262
110
 
263
- :-moz-ui-invalid {
264
- box-shadow: none;
265
- }
111
+ .z-\[10000\] {
112
+ z-index: 10000;
113
+ }
266
114
 
267
- button, input:where([type="button"], [type="reset"], [type="submit"]) {
268
- appearance: button;
269
- }
115
+ .container {
116
+ width: 100%;
117
+ }
270
118
 
271
- ::file-selector-button {
272
- appearance: button;
119
+ @media (min-width: 40rem) {
120
+ .container {
121
+ max-width: 40rem;
273
122
  }
123
+ }
274
124
 
275
- ::-webkit-inner-spin-button {
276
- height: auto;
125
+ @media (min-width: 48rem) {
126
+ .container {
127
+ max-width: 48rem;
277
128
  }
129
+ }
278
130
 
279
- ::-webkit-outer-spin-button {
280
- height: auto;
131
+ @media (min-width: 64rem) {
132
+ .container {
133
+ max-width: 64rem;
281
134
  }
135
+ }
282
136
 
283
- [hidden]:where(:not([hidden="until-found"])) {
284
- display: none !important;
137
+ @media (min-width: 80rem) {
138
+ .container {
139
+ max-width: 80rem;
285
140
  }
286
141
  }
287
142
 
288
- @layer components;
289
-
290
- @layer utilities {
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
- .pointer-events-none {
296
- pointer-events: none;
297
- }
149
+ .mt-\[5px\] {
150
+ margin-top: 5px;
151
+ }
298
152
 
299
- .visible {
300
- visibility: visible;
301
- }
153
+ .mt-\[10px\] {
154
+ margin-top: 10px;
155
+ }
302
156
 
303
- .absolute {
304
- position: absolute;
305
- }
157
+ .mr-\[10px\] {
158
+ margin-right: 10px;
159
+ }
306
160
 
307
- .fixed {
308
- position: fixed;
309
- }
161
+ .ml-\[1\.4em\] {
162
+ margin-left: 1.4em;
163
+ }
310
164
 
311
- .relative {
312
- position: relative;
313
- }
165
+ .ml-\[10px\] {
166
+ margin-left: 10px;
167
+ }
314
168
 
315
- .static {
316
- position: static;
317
- }
169
+ .box-border {
170
+ box-sizing: border-box;
171
+ }
318
172
 
319
- .top-0 {
320
- top: calc(var(--spacing) * 0);
321
- }
173
+ .block {
174
+ display: block;
175
+ }
322
176
 
323
- .top-\[50px\] {
324
- top: 50px;
325
- }
177
+ .flex {
178
+ display: flex;
179
+ }
326
180
 
327
- .bottom-\[10px\] {
328
- bottom: 10px;
329
- }
181
+ .grid {
182
+ display: grid;
183
+ }
330
184
 
331
- .left-0 {
332
- left: calc(var(--spacing) * 0);
333
- }
185
+ .hidden {
186
+ display: none;
187
+ }
334
188
 
335
- .left-\[10px\] {
336
- left: 10px;
337
- }
189
+ .inline-block {
190
+ display: inline-block;
191
+ }
338
192
 
339
- .z-\[1000\] {
340
- z-index: 1000;
341
- }
193
+ .table {
194
+ display: table;
195
+ }
342
196
 
343
- .z-\[10000\] {
344
- z-index: 10000;
345
- }
197
+ .size-\[1\.4em\] {
198
+ width: 1.4em;
199
+ height: 1.4em;
200
+ }
346
201
 
347
- .container {
348
- width: 100%;
349
- }
202
+ .size-\[6px\] {
203
+ width: 6px;
204
+ height: 6px;
205
+ }
350
206
 
351
- @media (min-width: 40rem) {
352
- .container {
353
- max-width: 40rem;
354
- }
355
- }
207
+ .size-\[14px\] {
208
+ width: 14px;
209
+ height: 14px;
210
+ }
356
211
 
357
- @media (min-width: 48rem) {
358
- .container {
359
- max-width: 48rem;
360
- }
361
- }
212
+ .size-\[20px\] {
213
+ width: 20px;
214
+ height: 20px;
215
+ }
362
216
 
363
- @media (min-width: 64rem) {
364
- .container {
365
- max-width: 64rem;
366
- }
367
- }
217
+ .h-\[20px\] {
218
+ height: 20px;
219
+ }
368
220
 
369
- @media (min-width: 80rem) {
370
- .container {
371
- max-width: 80rem;
372
- }
373
- }
221
+ .h-\[100vh\] {
222
+ height: 100vh;
223
+ }
374
224
 
375
- @media (min-width: 96rem) {
376
- .container {
377
- max-width: 96rem;
378
- }
379
- }
225
+ .h-fit {
226
+ height: fit-content;
227
+ }
380
228
 
381
- .m-\[0px_5px\] {
382
- margin: 0 5px;
383
- }
229
+ .h-full {
230
+ height: 100%;
231
+ }
384
232
 
385
- .mt-\[5px\] {
386
- margin-top: 5px;
387
- }
233
+ .w-\[100vw\] {
234
+ width: 100vw;
235
+ }
388
236
 
389
- .mt-\[10px\] {
390
- margin-top: 10px;
391
- }
237
+ .w-\[200px\] {
238
+ width: 200px;
239
+ }
392
240
 
393
- .mr-\[10px\] {
394
- margin-right: 10px;
395
- }
241
+ .w-full {
242
+ width: 100%;
243
+ }
396
244
 
397
- .ml-\[1\.4em\] {
398
- margin-left: 1.4em;
399
- }
245
+ .max-w-\[100px\] {
246
+ max-width: 100px;
247
+ }
400
248
 
401
- .ml-\[10px\] {
402
- margin-left: 10px;
403
- }
249
+ .max-w-\[260px\] {
250
+ max-width: 260px;
251
+ }
404
252
 
405
- .box-border {
406
- box-sizing: border-box;
407
- }
253
+ .min-w-\[140px\] {
254
+ min-width: 140px;
255
+ }
408
256
 
409
- .flex {
410
- display: flex;
411
- }
257
+ .min-w-\[150px\] {
258
+ min-width: 150px;
259
+ }
412
260
 
413
- .grid {
414
- display: grid;
415
- }
261
+ .flex-1 {
262
+ flex: 1;
263
+ }
416
264
 
417
- .hidden {
418
- display: none;
419
- }
265
+ .rotate-90 {
266
+ rotate: 90deg;
267
+ }
420
268
 
421
- .inline-block {
422
- display: inline-block;
423
- }
269
+ .cursor-pointer {
270
+ cursor: pointer;
271
+ }
424
272
 
425
- .table {
426
- display: table;
427
- }
273
+ .resize {
274
+ resize: both;
275
+ }
428
276
 
429
- .size-\[1\.4em\] {
430
- width: 1.4em;
431
- height: 1.4em;
432
- }
277
+ .flex-col {
278
+ flex-direction: column;
279
+ }
433
280
 
434
- .size-\[6px\] {
435
- width: 6px;
436
- height: 6px;
437
- }
281
+ .flex-row {
282
+ flex-direction: row;
283
+ }
438
284
 
439
- .h-\[20px\] {
440
- height: 20px;
441
- }
285
+ .flex-wrap {
286
+ flex-wrap: wrap;
287
+ }
442
288
 
443
- .h-\[100vh\] {
444
- height: 100vh;
445
- }
289
+ .items-center {
290
+ align-items: center;
291
+ }
446
292
 
447
- .h-fit {
448
- height: fit-content;
449
- }
293
+ .justify-between {
294
+ justify-content: space-between;
295
+ }
450
296
 
451
- .h-full {
452
- height: 100%;
453
- }
297
+ .justify-center {
298
+ justify-content: center;
299
+ }
454
300
 
455
- .w-\[20px\] {
456
- width: 20px;
457
- }
301
+ .gap-\[5px\] {
302
+ gap: 5px;
303
+ }
458
304
 
459
- .w-\[100vw\] {
460
- width: 100vw;
461
- }
305
+ .gap-\[10px\] {
306
+ gap: 10px;
307
+ }
462
308
 
463
- .w-\[110px\] {
464
- width: 110px;
465
- }
309
+ .gap-\[20px\] {
310
+ gap: 20px;
311
+ }
466
312
 
467
- .w-\[200px\] {
468
- width: 200px;
469
- }
313
+ .overflow-hidden {
314
+ overflow: hidden;
315
+ }
470
316
 
471
- .w-full {
472
- width: 100%;
473
- }
317
+ .rounded-\[2px\] {
318
+ border-radius: 2px;
319
+ }
474
320
 
475
- .min-w-\[100px\] {
476
- min-width: 100px;
477
- }
321
+ .rounded-\[6px\] {
322
+ border-radius: 6px;
323
+ }
478
324
 
479
- .min-w-\[140px\] {
480
- min-width: 140px;
481
- }
325
+ .rounded-\[8px\] {
326
+ border-radius: 8px;
327
+ }
482
328
 
483
- .min-w-\[150px\] {
484
- min-width: 150px;
485
- }
329
+ .rounded-\[10px\] {
330
+ border-radius: 10px;
331
+ }
486
332
 
487
- .cursor-pointer {
488
- cursor: pointer;
489
- }
333
+ .rounded-\[50px\] {
334
+ border-radius: 50px;
335
+ }
490
336
 
491
- .resize {
492
- resize: both;
493
- }
337
+ .rounded-lg {
338
+ border-radius: var(--radius-lg);
339
+ }
494
340
 
495
- .flex-col {
496
- flex-direction: column;
497
- }
341
+ .border {
342
+ border-style: var(--tw-border-style);
343
+ border-width: 1px;
344
+ }
498
345
 
499
- .flex-row {
500
- flex-direction: row;
501
- }
346
+ .border-t-1 {
347
+ border-top-style: var(--tw-border-style);
348
+ border-top-width: 1px;
349
+ }
502
350
 
503
- .items-center {
504
- align-items: center;
505
- }
351
+ .border-b-1 {
352
+ border-bottom-style: var(--tw-border-style);
353
+ border-bottom-width: 1px;
354
+ }
506
355
 
507
- .justify-between {
508
- justify-content: space-between;
509
- }
356
+ .border-t-\[\#eee\] {
357
+ border-top-color: #eee;
358
+ }
510
359
 
511
- .justify-center {
512
- justify-content: center;
513
- }
360
+ .border-b-\[\#eee\] {
361
+ border-bottom-color: #eee;
362
+ }
514
363
 
515
- .gap-\[5px\] {
516
- gap: 5px;
517
- }
364
+ .border-b-\[rgba\(255\,255\,255\,0\.1\)\] {
365
+ border-bottom-color: #ffffff1a;
366
+ }
518
367
 
519
- .gap-\[10px\] {
520
- gap: 10px;
521
- }
368
+ .\!bg-\[var\(--primary-color\)\] {
369
+ background-color: var(--primary-color) !important;
370
+ }
522
371
 
523
- .overflow-hidden {
524
- overflow: hidden;
525
- }
372
+ .bg-\[\#f0f0f0\] {
373
+ background-color: #f0f0f0;
374
+ }
526
375
 
527
- .rounded-\[6px\] {
528
- border-radius: 6px;
529
- }
376
+ .bg-\[rgba\(255\,255\,255\,1\)\] {
377
+ background-color: #fff;
378
+ }
530
379
 
531
- .rounded-\[8px\] {
532
- border-radius: 8px;
533
- }
380
+ .bg-\[var\(--el-color-primary\)\] {
381
+ background-color: var(--el-color-primary);
382
+ }
534
383
 
535
- .rounded-\[10px\] {
536
- border-radius: 10px;
537
- }
384
+ .bg-black {
385
+ background-color: var(--color-black);
386
+ }
538
387
 
539
- .rounded-\[50px\] {
540
- border-radius: 50px;
541
- }
388
+ .bg-black\/15 {
389
+ background-color: #00000026;
390
+ }
542
391
 
543
- .rounded-lg {
544
- border-radius: var(--radius-lg);
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
- .border {
548
- border-style: var(--tw-border-style);
549
- border-width: 1px;
550
- }
398
+ .bg-white {
399
+ background-color: var(--color-white);
400
+ }
551
401
 
552
- .border-b-1 {
553
- border-bottom-style: var(--tw-border-style);
554
- border-bottom-width: 1px;
555
- }
402
+ .p-\[0px_5px\] {
403
+ padding: 0 5px;
404
+ }
556
405
 
557
- .border-b-\[\#eee\] {
558
- border-bottom-color: #eee;
559
- }
406
+ .p-\[0px_10px\] {
407
+ padding: 0 10px;
408
+ }
560
409
 
561
- .border-b-\[rgba\(255\,255\,255\,0\.1\)\] {
562
- border-bottom-color: #ffffff1a;
563
- }
410
+ .p-\[2px_5px\] {
411
+ padding: 2px 5px;
412
+ }
564
413
 
565
- .bg-\[\#f0f0f0\] {
566
- background-color: #f0f0f0;
567
- }
414
+ .p-\[4px_0px\] {
415
+ padding: 4px 0;
416
+ }
568
417
 
569
- .bg-\[rgba\(255\,255\,255\,1\)\] {
570
- background-color: #fff;
571
- }
418
+ .p-\[5px\] {
419
+ padding: 5px;
420
+ }
572
421
 
573
- .bg-\[var\(--el-color-primary\)\] {
574
- background-color: var(--el-color-primary);
575
- }
422
+ .p-\[5px_20px\] {
423
+ padding: 5px 20px;
424
+ }
576
425
 
577
- .bg-black {
578
- background-color: var(--color-black);
579
- }
426
+ .p-\[10px\] {
427
+ padding: 10px;
428
+ }
580
429
 
581
- .bg-black\/15 {
582
- background-color: #00000026;
583
- }
430
+ .pt-\[5px\] {
431
+ padding-top: 5px;
432
+ }
584
433
 
585
- @supports (color: color-mix(in lab, red, red)) {
586
- .bg-black\/15 {
587
- background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
588
- }
589
- }
434
+ .text-right {
435
+ text-align: right;
436
+ }
590
437
 
591
- .bg-white {
592
- background-color: var(--color-white);
593
- }
438
+ .text-start {
439
+ text-align: start;
440
+ }
594
441
 
595
- .p-\[0px_10px\] {
596
- padding: 0 10px;
597
- }
442
+ .text-\[10px\] {
443
+ font-size: 10px;
444
+ }
598
445
 
599
- .p-\[2px_0px\] {
600
- padding: 2px 0;
601
- }
446
+ .text-\[11px\] {
447
+ font-size: 11px;
448
+ }
602
449
 
603
- .p-\[5px\] {
604
- padding: 5px;
605
- }
450
+ .text-\[12px\] {
451
+ font-size: 12px;
452
+ }
606
453
 
607
- .p-\[5px_0px\] {
608
- padding: 5px 0;
609
- }
454
+ .text-\[14px\] {
455
+ font-size: 14px;
456
+ }
610
457
 
611
- .p-\[5px_20px\] {
612
- padding: 5px 20px;
613
- }
458
+ .leading-\[1\.4em\] {
459
+ --tw-leading: 1.4em;
460
+ line-height: 1.4em;
461
+ }
614
462
 
615
- .p-\[10px\] {
616
- padding: 10px;
617
- }
463
+ .font-bold {
464
+ --tw-font-weight: var(--font-weight-bold);
465
+ font-weight: var(--font-weight-bold);
466
+ }
618
467
 
619
- .text-right {
620
- text-align: right;
621
- }
468
+ .text-\[\#333\] {
469
+ color: #333;
470
+ }
622
471
 
623
- .text-\[10px\] {
624
- font-size: 10px;
625
- }
472
+ .text-\[\#999\] {
473
+ color: #999;
474
+ }
626
475
 
627
- .text-\[14px\] {
628
- font-size: 14px;
629
- }
476
+ .text-\[\#c9c9c9\] {
477
+ color: #c9c9c9;
478
+ }
630
479
 
631
- .leading-\[1\.4em\] {
632
- --tw-leading: 1.4em;
633
- line-height: 1.4em;
634
- }
480
+ .text-\[\#ccc\] {
481
+ color: #ccc;
482
+ }
635
483
 
636
- .font-bold {
637
- --tw-font-weight: var(--font-weight-bold);
638
- font-weight: var(--font-weight-bold);
639
- }
484
+ .text-\[\#fff\] {
485
+ color: #fff;
486
+ }
640
487
 
641
- .text-\[\#333\] {
642
- color: #333;
643
- }
488
+ .text-\[var\(--color-primary\)\] {
489
+ color: var(--color-primary);
490
+ }
644
491
 
645
- .text-\[\#888\] {
646
- color: #888;
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
- .text-\[\#c9c9c9\] {
650
- color: #c9c9c9;
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
- .text-\[\#fff\] {
654
- color: #fff;
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
- .blur {
658
- --tw-blur: blur(8px);
659
- 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, );
660
- }
509
+ .select-none {
510
+ -webkit-user-select: none;
511
+ user-select: none;
512
+ }
661
513
 
662
- .transition-all {
663
- transition-property: all;
664
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
665
- transition-duration: var(--tw-duration, var(--default-transition-duration));
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
- .select-none {
669
- -webkit-user-select: none;
670
- user-select: none;
519
+ @media (hover: hover) {
520
+ .hover\:bg-\[\#ddd\]:hover {
521
+ background-color: #ddd;
671
522
  }
523
+ }
672
524
 
673
- .last-of-type\:border-b-0:last-of-type {
674
- border-bottom-style: var(--tw-border-style);
675
- border-bottom-width: 0;
676
- }
525
+ .active\:scale-\[0\.7\]:active {
526
+ scale: .7;
527
+ }
677
528
 
678
- @media (hover: hover) {
679
- .hover\:bg-\[\#ddd\]:hover {
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
+ }