@flatbiz/antd 3.0.14 → 3.0.16

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/cjs/index.css ADDED
@@ -0,0 +1,742 @@
1
+ :root {
2
+ --fa-color-primary: #1677ff;
3
+ --fa-secondary: #1677ff;
4
+ --fa-warning: #ff8f1f;
5
+ --fa-danger: #ff3141;
6
+ --fa-success: #00b578;
7
+ }
8
+
9
+ .num-ff {
10
+ font-family: var(--v-font-family-number);
11
+ }
12
+ p,
13
+ ul {
14
+ margin: 0;
15
+ padding: 0;
16
+ }
17
+ .hide {
18
+ display: none;
19
+ }
20
+ .clear-fix:after,
21
+ .clear-fix::after {
22
+ display: block;
23
+ visibility: hidden;
24
+ height: 0;
25
+ font-size: 0;
26
+ content: ' ';
27
+ clear: both;
28
+ }
29
+
30
+
31
+ .table-operate {
32
+ padding: 0 5px;
33
+ }
34
+ .table-operate .ant-btn-link {
35
+ padding: 0 6px;
36
+ border-radius: 4px;
37
+ }
38
+ .table-operate .ant-btn-link:hover {
39
+ background-color: rgba(0, 0, 0, 0.03) !important;
40
+ }
41
+ .table-operate .ant-btn-link:hover span {
42
+ transform: scale(1.05);
43
+ transition: all ease-in 0.1s;
44
+ }
45
+ .table-operate .ant-btn-link .anticon + span {
46
+ margin-left: 5px;
47
+ }
48
+ .table-operate .ant-divider {
49
+ margin: 0 4px;
50
+ }
51
+ .fold-more-button .anticon-more {
52
+ transform: rotate(90deg);
53
+ }
54
+ .fold-more-button:hover .anticon-more {
55
+ transform: scale(1.3) rotate(90deg) !important;
56
+ }
57
+
58
+ .v-request-status {
59
+ position: relative;
60
+ margin: 16px 0;
61
+ }
62
+ .v-request-status .ant-empty {
63
+ margin: 8px 0;
64
+ }
65
+ .v-request-status .ant-spin {
66
+ position: absolute;
67
+ top: 50%;
68
+ left: 50%;
69
+ transform: translate(-50%, -50%);
70
+ }
71
+
72
+ .v-css-hover:hover {
73
+ position: relative;
74
+ }
75
+ .v-css-hover:hover::before {
76
+ content: '';
77
+ position: absolute;
78
+ top: 0;
79
+ left: 0;
80
+ right: 0;
81
+ bottom: 0;
82
+ background-color: var(--v-css-hover-bgcolor, #ccc);
83
+ opacity: var(--v-css-hover-opacity, 0.1);
84
+ }
85
+
86
+ .dialog-modal .ant-modal-body {
87
+ max-height: calc(100vh - 150px);
88
+ overflow: scroll;
89
+ }
90
+
91
+ .drawer-wraper .ant-drawer-header {
92
+ padding: 12px 14px;
93
+ }
94
+ .drawer-wraper .ant-drawer-body {
95
+ display: flex;
96
+ flex-direction: column;
97
+ position: relative;
98
+ }
99
+ .drawer-wraper .ant-drawer-content-wrapper {
100
+ max-width: 80%;
101
+ }
102
+ .drawer-wraper-content {
103
+ position: relative;
104
+ flex: 1;
105
+ overflow-y: auto;
106
+ overflow-x: hidden;
107
+ height: 100%;
108
+ }
109
+ .drawer-wraper-loader {
110
+ background-color: #ffffff;
111
+ position: absolute;
112
+ top: 0;
113
+ bottom: 0;
114
+ left: 0;
115
+ right: 0;
116
+ z-index: 100000;
117
+ display: flex;
118
+ justify-content: center;
119
+ align-items: center;
120
+ opacity: 1;
121
+ text-align: center;
122
+ }
123
+ .drawer-wraper-loader .loader-wrapper {
124
+ width: 100px;
125
+ height: 100px;
126
+ display: inline-flex;
127
+ flex-direction: column;
128
+ justify-content: space-around;
129
+ }
130
+ .drawer-wraper-loader .loader-inner {
131
+ width: 30px;
132
+ height: 30px;
133
+ margin: 0 auto;
134
+ text-indent: -12345px;
135
+ border-top: 2px solid rgba(0, 128, 227, 0.08);
136
+ border-right: 2px solid rgba(0, 128, 227, 0.08);
137
+ border-bottom: 2px solid rgba(0, 128, 227, 0.08);
138
+ border-left: 2px solid rgba(0, 84, 153, 0.7);
139
+ border-radius: 50%;
140
+ z-index: 100001;
141
+ animation: spinner 600ms infinite linear;
142
+ }
143
+ .drawer-wraper-loader .loader-text {
144
+ width: 100px;
145
+ height: 20px;
146
+ text-align: center;
147
+ font-size: 12px;
148
+ letter-spacing: 4px;
149
+ color: #0080e3;
150
+ }
151
+
152
+ .drawer-wrapper .ant-drawer-header {
153
+ padding: 12px 14px;
154
+ }
155
+ .drawer-wrapper .ant-drawer-body {
156
+ display: flex;
157
+ flex-direction: column;
158
+ position: relative;
159
+ padding: 0;
160
+ }
161
+ .drawer-wrapper .ant-drawer-content-wrapper {
162
+ max-width: 80%;
163
+ }
164
+ .drawer-wrapper-content {
165
+ position: relative;
166
+ flex: 1;
167
+ overflow-y: auto;
168
+ overflow-x: hidden;
169
+ height: 100%;
170
+ padding: 20px;
171
+ }
172
+ .drawer-wrapper-footer {
173
+ padding: 10px 16px;
174
+ border-top: 1px solid #f0f0f0;
175
+ }
176
+ .drawer-wrapper-loader {
177
+ background-color: #ffffff;
178
+ position: absolute;
179
+ top: 0;
180
+ bottom: 0;
181
+ left: 0;
182
+ right: 0;
183
+ z-index: 100000;
184
+ display: flex;
185
+ justify-content: center;
186
+ align-items: center;
187
+ opacity: 1;
188
+ text-align: center;
189
+ }
190
+ .drawer-wrapper-loader .loader-wrapper {
191
+ width: 100px;
192
+ height: 100px;
193
+ display: inline-flex;
194
+ flex-direction: column;
195
+ justify-content: space-around;
196
+ }
197
+ .drawer-wrapper-loader .loader-inner {
198
+ width: 30px;
199
+ height: 30px;
200
+ margin: 0 auto;
201
+ text-indent: -12345px;
202
+ border-top: 2px solid rgba(0, 128, 227, 0.08);
203
+ border-right: 2px solid rgba(0, 128, 227, 0.08);
204
+ border-bottom: 2px solid rgba(0, 128, 227, 0.08);
205
+ border-left: 2px solid rgba(0, 84, 153, 0.7);
206
+ border-radius: 50%;
207
+ z-index: 100001;
208
+ animation: spinner 600ms infinite linear;
209
+ }
210
+ .drawer-wrapper-loader .loader-text {
211
+ width: 100px;
212
+ height: 20px;
213
+ text-align: center;
214
+ font-size: 12px;
215
+ letter-spacing: 4px;
216
+ color: #0080e3;
217
+ }
218
+
219
+ .v-selector-item-icon {
220
+ margin-right: 5px;
221
+ }
222
+
223
+ .v-file-upload .ant-upload-span {
224
+ cursor: pointer;
225
+ }
226
+
227
+ .editable-table {
228
+ padding-bottom: 15px;
229
+ }
230
+ .editable-table .ant-form-item {
231
+ margin: 0 !important;
232
+ }
233
+ .editable-table .editable-text-view.ant-typography {
234
+ margin-bottom: 0;
235
+ }
236
+ .editable-input-number-form-item .ant-input-number {
237
+ width: 100%;
238
+ }
239
+
240
+ .v-editor-wrapper {
241
+ width: 100%;
242
+ height: 100%;
243
+ }
244
+
245
+ .v-file-upload .ant-upload-span {
246
+ cursor: pointer;
247
+ }
248
+
249
+ .v-flex-layout {
250
+ display: flex;
251
+ }
252
+ .v-flex-vertical {
253
+ flex-direction: column;
254
+ }
255
+
256
+ .form-item-group-card {
257
+ border: 1px solid rgba(0, 0, 0, 0.15);
258
+ padding: 10px 20px 0 20px;
259
+ border-radius: 5px;
260
+ }
261
+ .form-item-group-card-title {
262
+ color: rgba(0, 0, 0, 0.65);
263
+ font-weight: 500;
264
+ font-size: 16px;
265
+ overflow: hidden;
266
+ white-space: nowrap;
267
+ text-overflow: ellipsis;
268
+ position: relative;
269
+ margin-bottom: 15px;
270
+ }
271
+ .form-item-group-card-title-sign {
272
+ padding-left: 10px;
273
+ }
274
+ .form-item-group-card-title-sign::before {
275
+ content: '';
276
+ position: absolute;
277
+ top: 50%;
278
+ left: 0;
279
+ height: 14px;
280
+ width: 3px;
281
+ background: var(--fa-color-primary);
282
+ border-radius: 3px;
283
+ margin-top: -7px;
284
+ }
285
+
286
+ .union-before-text,
287
+ .union-after-text {
288
+ flex-shrink: 0;
289
+ align-self: flex-start;
290
+ line-height: 32px;
291
+ }
292
+ .union-before-element,
293
+ .union-after-element {
294
+ align-self: flex-start;
295
+ }
296
+ .form-item-group-horizontal-union .v-flex-layout .ant-form-item {
297
+ margin-bottom: 0;
298
+ align-self: flex-start;
299
+ }
300
+ .form-item-group-horizontal-union .v-flex-layout {
301
+ align-items: flex-start;
302
+ }
303
+
304
+ .icon-wrapper {
305
+ cursor: pointer;
306
+ display: flex;
307
+ align-items: center;
308
+ }
309
+ .icon-wrapper:hover {
310
+ transform: scale(1.1);
311
+ transition: all ease-in 0.1s;
312
+ position: relative;
313
+ }
314
+ .icon-wrapper:hover::before {
315
+ content: '';
316
+ position: absolute;
317
+ top: -6px;
318
+ left: -6px;
319
+ right: -6px;
320
+ bottom: -6px;
321
+ background-color: rgba(0, 0, 0, 0.06);
322
+ border-radius: 4px;
323
+ }
324
+ .icon-wrapper .anticon + .icon-wrapper-text {
325
+ margin-left: 3px;
326
+ }
327
+ .icon-wrapper-small {
328
+ font-size: 14px;
329
+ }
330
+ .icon-wrapper-middle {
331
+ font-size: 16px;
332
+ }
333
+ .icon-wrapper-large {
334
+ font-size: 20px;
335
+ }
336
+
337
+ .v-label-value-layout .ant-descriptions-item-label {
338
+ width: var(--v-label-value-layout-lWidth);
339
+ color: rgba(0, 0, 0, 0.45);
340
+ flex-shrink: 0;
341
+ }
342
+ .v-label-value-layout .ant-descriptions-item {
343
+ padding-bottom: 8px;
344
+ }
345
+ .v-label-value-layout .ant-descriptions-item-content {
346
+ color: rgba(0, 0, 0, 0.85);
347
+ font-weight: 400;
348
+ }
349
+ .v-label-value-layout.ant-descriptions-bordered .ant-descriptions-item-label {
350
+ padding: 8px 10px;
351
+ }
352
+ .v-label-value-layout-border {
353
+ padding: 10px 10px 2px 10px;
354
+ border: 1px solid #dedede;
355
+ margin-top: 20px;
356
+ border-radius: 5px;
357
+ }
358
+
359
+ .modal-wraper .ant-modal-body {
360
+ position: relative;
361
+ padding: 0;
362
+ }
363
+ .modal-wraper-content {
364
+ padding: 24px;
365
+ position: relative;
366
+ }
367
+ .modal-wraper-content-footer {
368
+ padding: 10px 16px;
369
+ text-align: right;
370
+ border-top: 1px solid #f0f0f0;
371
+ border-radius: 0px 0px 2px 2px;
372
+ }
373
+ .modal-wraper-loader {
374
+ background-color: #ffffff;
375
+ position: absolute;
376
+ top: 0;
377
+ bottom: 0;
378
+ left: 0;
379
+ right: 0;
380
+ z-index: 100000;
381
+ display: flex;
382
+ justify-content: center;
383
+ align-items: center;
384
+ opacity: 1;
385
+ text-align: center;
386
+ }
387
+ .modal-wraper-loader .loader-wrapper {
388
+ width: 100px;
389
+ height: 100px;
390
+ display: inline-flex;
391
+ flex-direction: column;
392
+ justify-content: space-around;
393
+ }
394
+ .modal-wraper-loader .loader-inner {
395
+ width: 30px;
396
+ height: 30px;
397
+ margin: 0 auto;
398
+ text-indent: -12345px;
399
+ border-top: 2px solid rgba(0, 128, 227, 0.08);
400
+ border-right: 2px solid rgba(0, 128, 227, 0.08);
401
+ border-bottom: 2px solid rgba(0, 128, 227, 0.08);
402
+ border-left: 2px solid rgba(0, 84, 153, 0.7);
403
+ border-radius: 50%;
404
+ z-index: 100001;
405
+ animation: spinner 600ms infinite linear;
406
+ }
407
+ .modal-wraper-loader .loader-text {
408
+ width: 100px;
409
+ height: 20px;
410
+ text-align: center;
411
+ font-size: 12px;
412
+ letter-spacing: 4px;
413
+ color: #0080e3;
414
+ }
415
+
416
+ .modal-wrapper .ant-modal-body {
417
+ position: relative;
418
+ padding: 0;
419
+ }
420
+ .modal-wrapper-content {
421
+ padding: 20px;
422
+ position: relative;
423
+ overflow: auto;
424
+ }
425
+ .modal-wrapper-footer {
426
+ text-align: right;
427
+ border-top: 1px solid #f0f0f0;
428
+ border-radius: 0px 0px 2px 2px;
429
+ padding: 10px 16px;
430
+ }
431
+ .modal-wrapper-loader {
432
+ background-color: #ffffff;
433
+ position: absolute;
434
+ top: 0;
435
+ bottom: 0;
436
+ left: 0;
437
+ right: 0;
438
+ z-index: 100000;
439
+ display: flex;
440
+ justify-content: center;
441
+ align-items: center;
442
+ opacity: 1;
443
+ text-align: center;
444
+ }
445
+ .modal-wrapper-loader .loader-wrapper {
446
+ width: 100px;
447
+ height: 100px;
448
+ display: inline-flex;
449
+ flex-direction: column;
450
+ justify-content: space-around;
451
+ }
452
+ .modal-wrapper-loader .loader-inner {
453
+ width: 30px;
454
+ height: 30px;
455
+ margin: 0 auto;
456
+ text-indent: -12345px;
457
+ border-top: 2px solid rgba(0, 128, 227, 0.08);
458
+ border-right: 2px solid rgba(0, 128, 227, 0.08);
459
+ border-bottom: 2px solid rgba(0, 128, 227, 0.08);
460
+ border-left: 2px solid rgba(0, 84, 153, 0.7);
461
+ border-radius: 50%;
462
+ z-index: 100001;
463
+ animation: spinner 600ms infinite linear;
464
+ }
465
+ .modal-wrapper-loader .loader-text {
466
+ width: 100px;
467
+ height: 20px;
468
+ text-align: center;
469
+ font-size: 12px;
470
+ letter-spacing: 4px;
471
+ color: #0080e3;
472
+ }
473
+
474
+ .page-fixed-footer {
475
+ padding: 15px 23px;
476
+ background-color: #fff;
477
+ box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.08);
478
+ z-index: 9;
479
+ }
480
+
481
+ .form-item-label-70.ant-form-item .ant-form-item-label {
482
+ width: 70px !important;
483
+ }
484
+ .form-item-label-80.ant-form-item .ant-form-item-label {
485
+ width: 80px !important;
486
+ }
487
+ .form-item-label-90.ant-form-item .ant-form-item-label {
488
+ width: 90px !important;
489
+ }
490
+ .form-item-label-100.ant-form-item .ant-form-item-label {
491
+ width: 100px !important;
492
+ }
493
+ .form-item-label-110.ant-form-item .ant-form-item-label {
494
+ width: 110px !important;
495
+ }
496
+ .form-item-label-120.ant-form-item .ant-form-item-label {
497
+ width: 120px !important;
498
+ }
499
+ .form-item-label-130.ant-form-item .ant-form-item-label {
500
+ width: 130px !important;
501
+ }
502
+ .form-item-label-140.ant-form-item .ant-form-item-label {
503
+ width: 140px !important;
504
+ }
505
+ .form-item-label-150.ant-form-item .ant-form-item-label {
506
+ width: 150px !important;
507
+ }
508
+ .form-item-label-160.ant-form-item .ant-form-item-label {
509
+ width: 160px !important;
510
+ }
511
+ .form-item-label-170.ant-form-item .ant-form-item-label {
512
+ width: 170px !important;
513
+ }
514
+ .form-item-label-180.ant-form-item .ant-form-item-label {
515
+ width: 180px !important;
516
+ }
517
+ .form-item-label-190.ant-form-item .ant-form-item-label {
518
+ width: 190px !important;
519
+ }
520
+ .form-item-label-200.ant-form-item .ant-form-item-label {
521
+ width: 200px !important;
522
+ }
523
+ .form-item-label-auto.ant-form-item .ant-form-item-label {
524
+ width: auto !important;
525
+ }
526
+ .form-item-label-align-left .ant-form-item-label {
527
+ text-align: left;
528
+ }
529
+ .form-item-label-align-right .ant-form-item-label {
530
+ text-align: right;
531
+ }
532
+ .form-label-70 .ant-form-item-label {
533
+ width: 70px !important;
534
+ }
535
+ .form-label-80 .ant-form-item-label {
536
+ width: 80px !important;
537
+ }
538
+ .form-label-90 .ant-form-item-label {
539
+ width: 90px !important;
540
+ }
541
+ .form-label-100 .ant-form-item-label {
542
+ width: 100px !important;
543
+ }
544
+ .form-label-110 .ant-form-item-label {
545
+ width: 110px !important;
546
+ }
547
+ .form-label-120 .ant-form-item-label {
548
+ width: 120px !important;
549
+ }
550
+ .form-label-130 .ant-form-item-label {
551
+ width: 130px !important;
552
+ }
553
+ .form-label-140 .ant-form-item-label {
554
+ width: 140px !important;
555
+ }
556
+ .form-label-150 .ant-form-item-label {
557
+ width: 150px !important;
558
+ }
559
+ .form-label-160 .ant-form-item-label {
560
+ width: 160px !important;
561
+ }
562
+ .form-label-170 .ant-form-item-label {
563
+ width: 170px !important;
564
+ }
565
+ .form-label-180 .ant-form-item-label {
566
+ width: 180px !important;
567
+ }
568
+ .form-label-190 .ant-form-item-label {
569
+ width: 190px !important;
570
+ }
571
+ .form-label-200 .ant-form-item-label {
572
+ width: 200px !important;
573
+ }
574
+ .form-label-auto .ant-form-item-label {
575
+ width: auto !important;
576
+ }
577
+ .form-label-align-left .ant-form-item-label {
578
+ text-align: left;
579
+ }
580
+ .form-label-align-right .ant-form-item-label {
581
+ text-align: right;
582
+ }
583
+
584
+ .simple-layout {
585
+ background-color: #fff;
586
+ padding: 15px;
587
+ }
588
+ .simple-layout .ant-form {
589
+ margin-bottom: -15px;
590
+ }
591
+ .simple-layout .ant-form-item {
592
+ margin: 0 0 15px;
593
+ }
594
+ .simple-layout .ant-form-item-label {
595
+ width: 82px;
596
+ }
597
+ .simple-layout .ant-form-item-label.ant-col-auto {
598
+ width: auto;
599
+ }
600
+ .simple-layout .ant-table-thead > tr > th {
601
+ background: #f6f6f6;
602
+ }
603
+ .simple-layout .ant-descriptions-item {
604
+ padding-bottom: 10px;
605
+ }
606
+ .simple-layout .ant-descriptions-item-label {
607
+ color: #999;
608
+ }
609
+ .simple-layout .ant-table-pagination.ant-pagination {
610
+ margin: 16px 0 0 0;
611
+ }
612
+ .simple-layout .simple-layout-content > .ant-row:nth-last-child(1) {
613
+ margin-bottom: 0px;
614
+ }
615
+ .simple-layout .simple-layout-content > .ant-row:nth-last-child(1) .ant-upload-list {
616
+ padding-bottom: 15px;
617
+ }
618
+ .simple-layout .simple-layout-content > .ant-descriptions:not(.ant-descriptions-bordered):nth-last-child(1) {
619
+ margin-bottom: -10px;
620
+ }
621
+ .simple-layout .v-tree-wrapper-tree {
622
+ padding: 5px 0 0 0;
623
+ }
624
+ .simple-layout-title-sign {
625
+ padding-left: 10px;
626
+ }
627
+ .simple-layout-title-sign::before {
628
+ content: '';
629
+ position: absolute;
630
+ top: 50%;
631
+ left: 0;
632
+ height: 14px;
633
+ width: 3px;
634
+ background: var(--fa-color-primary);
635
+ border-radius: 3px;
636
+ margin-top: -7px;
637
+ }
638
+ .simple-layout-title {
639
+ color: rgba(0, 0, 0, 0.85);
640
+ font-weight: 500;
641
+ font-size: 16px;
642
+ overflow: hidden;
643
+ white-space: nowrap;
644
+ text-overflow: ellipsis;
645
+ position: relative;
646
+ }
647
+ .simple-layout-title + .simple-layout-content {
648
+ margin-top: 10px;
649
+ }
650
+ .simple-layout-desc {
651
+ font-size: 12px;
652
+ color: rgba(0, 0, 0, 0.55);
653
+ }
654
+ .simple-layout-desc + .simple-layout-content {
655
+ margin-top: 10px;
656
+ }
657
+ .simple-layout + .simple-layout {
658
+ margin-top: 10px;
659
+ }
660
+ .simple-layout .simple-layout:first-child {
661
+ padding: 0 0 15px 0;
662
+ }
663
+ .simple-layout + .ant-divider {
664
+ margin: 0 0 15px 0;
665
+ }
666
+ .simple-layout-formlabel-left .ant-form-item-label {
667
+ text-align: left;
668
+ }
669
+ .simple-layout-tight.simple-layout {
670
+ margin-top: 0;
671
+ padding: 0 0 15px 0;
672
+ }
673
+ .simple-layout-title-extra-space {
674
+ width: 100%;
675
+ justify-content: space-between;
676
+ }
677
+
678
+ .tree-selector-wrapper-empty {
679
+ margin: 8px 0;
680
+ }
681
+
682
+ .v-tree-wrapper {
683
+ position: relative;
684
+ display: flex;
685
+ flex-direction: column;
686
+ overflow: hidden;
687
+ height: 100%;
688
+ }
689
+ .v-tree-wrapper-loading {
690
+ position: absolute;
691
+ z-index: 9;
692
+ top: 50%;
693
+ left: 50%;
694
+ }
695
+ .v-tree-wrapper-search {
696
+ padding: 0 16px 0 16px;
697
+ }
698
+ .v-tree-wrapper-tree {
699
+ position: relative;
700
+ margin-left: -8px;
701
+ flex: 1;
702
+ overflow: auto;
703
+ padding: 0 16px 16px 16px;
704
+ }
705
+ .v-tree-wrapper-tree .ant-tree-title {
706
+ position: relative;
707
+ flex: 1;
708
+ display: flex;
709
+ align-items: center;
710
+ }
711
+ .v-tree-wrapper-tree .tree-item-title {
712
+ flex: 1;
713
+ margin-right: 5px;
714
+ }
715
+ .v-tree-wrapper-tree .anticon-more {
716
+ font-weight: bold;
717
+ display: none;
718
+ }
719
+ .v-tree-wrapper-tree .ant-tree-node-selected .anticon-more {
720
+ display: block;
721
+ }
722
+ .v-tree-wrapper-tree .ant-tree-node-content-wrapper {
723
+ display: flex;
724
+ }
725
+ .tree-wrapper-empty {
726
+ position: relative;
727
+ }
728
+ .tree-wrapper-empty .ant-empty {
729
+ margin: 8px 0;
730
+ }
731
+ .tree-wrapper-empty .ant-spin {
732
+ position: absolute;
733
+ top: 50%;
734
+ left: 50%;
735
+ transform: translate(-50%, -50%);
736
+ }
737
+ .site-tree-search-value {
738
+ color: red;
739
+ }
740
+ .v-tree-item-disabled {
741
+ opacity: 0.5;
742
+ }